OW2 Consortium jonas

Rev

Rev 22291 | Rev 22297 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
19401 benoitf 1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
4
  - JOnAS: Java(TM) Open Application Server
5
  - Copyright (C) 2010 Bull S.A.S.
6
  - Contact: jonas-team@ow2.org
7
  -
8
  - This library is free software; you can redistribute it and/or
9
  - modify it under the terms of the GNU Lesser General Public
10
  - License as published by the Free Software Foundation; either
11
  - version 2.1 of the License, or any later version.
12
  -
13
  - This library is distributed in the hope that it will be useful,
14
  - but WITHOUT ANY WARRANTY; without even the implied warranty of
15
  - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16
  - Lesser General Public License for more details.
17
  -
18
  - You should have received a copy of the GNU Lesser General Public
19
  - License along with this library; if not, write to the Free Software
20
  - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
21
  - USA
22
  -
23
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
24
  - $Id: pom.xml 22293 2012-03-22 17:14:21Z benoitf $
25
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
26
-->
27
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
28
  <modelVersion>4.0.0</modelVersion>
29
  <parent>
30
    <groupId>org.ow2.jonas.admin</groupId>
31
    <artifactId>jonasadmin-kerneos-modules-audit</artifactId>
22293 benoitf 32
    <version>1.0.7-SNAPSHOT</version>
19401 benoitf 33
  </parent>
34
  <name>JOnAS Admin Kerneos :: Modules :: Audit :: Client</name>
35
  <groupId>org.ow2.jonas.admin</groupId>
36
  <artifactId>jonasadmin-kerneos-modules-audit-client</artifactId>
37
  <packaging>swf</packaging>
38
 
39
  <dependencies>
40
    <dependency>
41
      <groupId>com.adobe.cairngorm</groupId>
42
      <artifactId>cairngorm-bin</artifactId>
43
      <version>${cairngorm.version}</version>
44
      <type>swc</type>
45
      <classifier>kerneos</classifier>
46
    </dependency>
47
    <dependency>
48
      <groupId>org.ow2.jasmine.kerneos</groupId>
49
      <artifactId>kerneos-common-client</artifactId>
50
      <version>${kerneos.version}</version>
51
      <type>swc</type>
52
    </dependency>
53
    <dependency>
54
      <groupId>org.ow2.jasmine.kerneos</groupId>
55
      <artifactId>kerneos-api</artifactId>
56
      <version>${kerneos.version}</version>
57
      <type>swc</type>
58
    </dependency>
59
    <!-- Flex -->
60
    <dependency>
61
      <groupId>com.adobe.flex.framework</groupId>
62
      <artifactId>flex-framework</artifactId>
63
      <version>${flex.version}</version>
64
      <type>pom</type>
65
    </dependency>
66
    <dependency>
67
      <groupId>com.adobe.flex.sdk</groupId>
68
      <artifactId>datavisualization</artifactId>
69
      <version>${flex.version}</version>
70
      <type>swc</type>
71
    </dependency>
72
    <dependency>
73
      <groupId>com.adobe.flex.sdk</groupId>
74
      <artifactId>datavisualization</artifactId>
75
      <version>${flex.version}</version>
76
      <type>rb.swc</type>
77
    </dependency>
78
    <dependency>
79
      <groupId>com.adobe.flex.sdk</groupId>
80
      <artifactId>datavisualization</artifactId>
81
      <version>${flex.version}</version>
82
      <classifier>en_US</classifier>
83
      <type>rb.swc</type>
84
    </dependency>
85
    <dependency>
86
      <groupId>com.adobe.flex.sdk</groupId>
87
      <artifactId>datavisualization</artifactId>
88
      <version>${flex.version}</version>
89
      <classifier>fr_FR</classifier>
90
      <type>rb.swc</type>
91
    </dependency>
19729 benoitf 92
    <dependency>
93
      <groupId>org.un.cava.birdeye.ravis</groupId>
94
      <artifactId>libRaVis</artifactId>
95
      <version>${ravis.version}</version>
96
      <type>swc</type>
97
    </dependency>
19401 benoitf 98
  </dependencies>
99
  <build>
100
    <sourceDirectory>src/main/flex</sourceDirectory>
101
    <plugins>
102
      <plugin>
103
        <groupId>org.sonatype.flexmojos</groupId>
104
        <artifactId>flexmojos-maven-plugin</artifactId>
105
        <extensions>true</extensions>
106
        <configuration>
107
          <resourceBundlePath>${project.build.directory}/../src/main/locales/{locale}</resourceBundlePath>
108
          <compiledLocales>
109
            <locale>en_US</locale>
110
            <locale>fr_FR</locale>
111
          </compiledLocales>
112
          <mergeResourceBundle>true</mergeResourceBundle>
113
          <contextRoot>moduleContextRoot</contextRoot>
114
          <sourceFile>audit.mxml</sourceFile>
115
          <optimize>false</optimize>
116
          <!-- <debug>true</debug> -->
117
        </configuration>
118
      </plugin>
119
    </plugins>
120
    <finalName>audit</finalName>
121
  </build>
122
</project>