/[schmitzm]/trunk/schmitzm-core/pom.xml
ViewVC logotype

Annotation of /trunk/schmitzm-core/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1490 - (hide annotations)
Sat Feb 5 11:22:41 2011 UTC (14 years ago) by alfonx
File MIME type: text/xml
File size: 4307 byte(s)


1 alfonx 1386 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4    
5     <groupId>de.schmitzm</groupId>
6     <artifactId>schmitzm-core</artifactId>
7 alfonx 1440 <version>2.5-SNAPSHOT</version>
8 alfonx 1386 <packaging>jar</packaging>
9    
10     <parent>
11     <groupId>de.schmitzm</groupId>
12     <artifactId>schmitzm-parent</artifactId>
13 alfonx 1440 <version>2.5-SNAPSHOT</version>
14 alfonx 1386 <relativePath>../schmitzm-parent/pom.xml</relativePath>
15     </parent>
16    
17     <name>schmitzm-core</name>
18     <url>http://maven.apache.org</url>
19    
20     <dependencies>
21 alfonx 1406 <dependency>
22     <groupId>javax.media</groupId>
23     <artifactId>jai_core</artifactId>
24     <version>1.1.3</version>
25     <type>jar</type>
26     <scope>compile</scope>
27     </dependency>
28    
29     <dependency>
30     <groupId>javax.jnlp</groupId>
31     <artifactId>jnlp</artifactId>
32     <version>1.6</version>
33     <type>jar</type>
34     <scope>compile</scope>
35     </dependency>
36    
37     <dependency>
38     <groupId>javax.mail</groupId>
39     <artifactId>mail</artifactId>
40     <version>1.4.1</version>
41     <type>jar</type>
42     <scope>compile</scope>
43     </dependency>
44    
45     <dependency>
46 alfonx 1490 <!-- NOT USE 2.0.1 for now... -->
47 alfonx 1406 <groupId>commons-io</groupId>
48     <artifactId>commons-io</artifactId>
49 alfonx 1490 <version>1.4</version>
50 alfonx 1406 <type>jar</type>
51     <scope>compile</scope>
52     </dependency>
53    
54     <dependency>
55     <groupId>com.miglayout</groupId>
56     <artifactId>miglayout</artifactId>
57     <version>3.7.3</version>
58     <classifier>swing</classifier>
59     <scope>compile</scope>
60     </dependency>
61    
62     <dependency>
63     <groupId>net.jini</groupId>
64     <artifactId>jini-ext</artifactId>
65     <version>2.1</version>
66     <type>jar</type>
67     <scope>compile</scope>
68     </dependency>
69    
70     <dependency>
71     <groupId>org.jdom</groupId>
72     <artifactId>jdom</artifactId>
73     <version>1.1</version>
74     </dependency>
75    
76     <dependency>
77     <groupId>commons-cli</groupId>
78     <artifactId>commons-cli</artifactId>
79     <version>1.2</version>
80     <type>jar</type>
81     <scope>compile</scope>
82     </dependency>
83    
84 alfonx 1409 <!--
85 alfonx 1406 <dependency>
86     <groupId>net.sourceforge.jexcelapi</groupId>
87     <artifactId>jxl</artifactId>
88     <version>2.6.12</version>
89     <scope>test</scope>
90     </dependency>
91    
92     <dependency>
93     <groupId>org.apache.poi</groupId>
94     <artifactId>poi</artifactId>
95     <version>3.7</version>
96     <type>jar</type>
97     <scope>test</scope>
98     </dependency>
99 alfonx 1409 -->
100 alfonx 1406 <dependency>
101 alfonx 1466 <!-- Kommt in version 2.3 von gt-swing und sonst verwirren die zwei versionene den gp export -->
102 alfonx 1406 <groupId>commons-lang</groupId>
103     <artifactId>commons-lang</artifactId>
104 alfonx 1466 <version>2.3</version>
105     <!-- <version>2.4</version>-->
106 alfonx 1406 <type>jar</type>
107     <scope>compile</scope>
108     </dependency>
109 alfonx 1386 </dependencies>
110 alfonx 1406
111     <build>
112     <plugins>
113     <plugin>
114     <groupId>org.apache.maven.plugins</groupId>
115     <artifactId>maven-compiler-plugin</artifactId>
116     <version>2.2</version>
117     <configuration>
118     <source>1.6</source>
119     <target>1.6</target>
120     <excludes>
121     <exclude>**/.svn</exclude> ???
122     </excludes>
123     </configuration>
124     </plugin>
125     </plugins>
126    
127     </build>
128 alfonx 1447
129    
130     <profiles>
131     <profile>
132     <id>resourceOperationRemove</id>
133     <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
134     the build will remove any lines in the resource bundes that are tagged with
135     REMOVEME_ -->
136     <build>
137     <plugins>
138     <plugin>
139     <groupId>org.codehaus.mojo</groupId>
140     <artifactId>exec-maven-plugin</artifactId>
141     <version>1.2</version>
142     <executions>
143     <execution>
144     <phase>generate-sources</phase>
145     <goals>
146     <goal>java</goal>
147     </goals>
148     <configuration>
149     <mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
150     <arguments>
151 alfonx 1452 <argument>-s</argument>
152     <argument>${basedir}/src/main/resources</argument>
153 alfonx 1447 <argument>-b</argument>
154 mojays 1454 <argument>de.schmitzm.swing.resource.locales.SwingResourceBundle;de.schmitzm.lang.resource.locales.LangResourceBundle;de.schmitzm.net.mail.resource.locales.MailResourceBundle;de.schmitzm.data.resource.locales.DataResourceBundle
155 alfonx 1447 </argument>
156     </arguments>
157     </configuration>
158     </execution>
159     </executions>
160     </plugin>
161     </plugins>
162     </build>
163     </profile>
164     </profiles>
165    
166 alfonx 1406
167 alfonx 1386 </project>

Properties

Name Value
svn:eol-style native
svn:keywords Id URL
svn:mime-type text/xml

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26