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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2230 - (hide annotations)
Thu Feb 14 17:43:14 2013 UTC (12 years ago) by alfonx
File MIME type: text/xml
File size: 5366 byte(s)
Java 1.7 wird über env.JAVA_HOME für schmitzm in der schmitz-parent definiert.
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 keeb 2050 <version>2.8-SNAPSHOT</version>
8 alfonx 1386 <packaging>jar</packaging>
9    
10     <parent>
11     <groupId>de.schmitzm</groupId>
12     <artifactId>schmitzm-parent</artifactId>
13 keeb 2050 <version>2.8-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 2156
22 alfonx 1406 <dependency>
23 alfonx 2156 <groupId>com.eaio.stringsearch</groupId>
24     <artifactId>stringsearch</artifactId>
25     <version>2</version>
26     </dependency>
27    
28     <dependency>
29 alfonx 1406 <groupId>javax.media</groupId>
30     <artifactId>jai_core</artifactId>
31     <version>1.1.3</version>
32     <type>jar</type>
33     <scope>compile</scope>
34     </dependency>
35 alfonx 1782
36 alfonx 1406 <dependency>
37     <groupId>javax.jnlp</groupId>
38     <artifactId>jnlp</artifactId>
39     <version>1.6</version>
40     <type>jar</type>
41     <scope>compile</scope>
42     </dependency>
43    
44     <dependency>
45     <groupId>javax.mail</groupId>
46     <artifactId>mail</artifactId>
47     <version>1.4.1</version>
48     <type>jar</type>
49     <scope>compile</scope>
50     </dependency>
51    
52     <dependency>
53 alfonx 1782 <!-- NOT USE 2.0.1 for now... -->
54 alfonx 1406 <groupId>commons-io</groupId>
55     <artifactId>commons-io</artifactId>
56 alfonx 1490 <version>1.4</version>
57 alfonx 1406 <type>jar</type>
58     <scope>compile</scope>
59     </dependency>
60    
61     <dependency>
62     <groupId>com.miglayout</groupId>
63     <artifactId>miglayout</artifactId>
64 alfonx 1782 <version>3.7.4</version>
65 alfonx 1406 <classifier>swing</classifier>
66     <scope>compile</scope>
67     </dependency>
68 alfonx 1782
69 alfonx 2025 <!-- <dependency> -->
70     <!-- <groupId>org.supercsv</groupId> -->
71     <!-- <artifactId>supercsv</artifactId> -->
72     <!-- <version>1.52</version> -->
73     <!-- </dependency> -->
74 alfonx 1824
75 mojays 1605 <dependency>
76     <groupId>com.toedter</groupId>
77     <artifactId>jcalendar</artifactId>
78     <version>1.3.3</version>
79     <type>jar</type>
80     <scope>compile</scope>
81     </dependency>
82 alfonx 2025
83 alfonx 1406 <dependency>
84     <groupId>net.jini</groupId>
85     <artifactId>jini-ext</artifactId>
86     <version>2.1</version>
87     <type>jar</type>
88     <scope>compile</scope>
89     </dependency>
90    
91     <dependency>
92     <groupId>org.jdom</groupId>
93     <artifactId>jdom</artifactId>
94     <version>1.1</version>
95     </dependency>
96    
97     <dependency>
98     <groupId>commons-cli</groupId>
99     <artifactId>commons-cli</artifactId>
100     <version>1.2</version>
101     <type>jar</type>
102     <scope>compile</scope>
103     </dependency>
104    
105     <dependency>
106 alfonx 1782 <!-- Kommt in version 2.3 von gt-swing und sonst verwirren die zwei versionene
107     den gp export -->
108 alfonx 1406 <groupId>commons-lang</groupId>
109     <artifactId>commons-lang</artifactId>
110 alfonx 1466 <version>2.3</version>
111 alfonx 1782 <!-- <version>2.4</version> -->
112 alfonx 1406 <type>jar</type>
113     <scope>compile</scope>
114     </dependency>
115 alfonx 2025 <dependency>
116     <groupId>org.apache.solr</groupId>
117     <artifactId>solr-core</artifactId>
118     <version>3.6.0</version>
119     </dependency>
120    
121 alfonx 1386 </dependencies>
122 alfonx 1406
123     <build>
124    
125 mojays 1813 <pluginManagement>
126     <plugins>
127 alfonx 2025 <!--This plugin's configuration is used to store Eclipse m2e settings
128     only. It has no influence on the Maven build itself. -->
129 mojays 1813 <plugin>
130     <groupId>org.eclipse.m2e</groupId>
131     <artifactId>lifecycle-mapping</artifactId>
132     <version>1.0.0</version>
133     <configuration>
134     <lifecycleMappingMetadata>
135     <pluginExecutions>
136     <pluginExecution>
137     <pluginExecutionFilter>
138     <groupId>
139     org.codehaus.mojo
140     </groupId>
141     <artifactId>
142     exec-maven-plugin
143     </artifactId>
144     <versionRange>
145     [1.2,)
146     </versionRange>
147     <goals>
148     <goal>java</goal>
149     </goals>
150     </pluginExecutionFilter>
151     <action>
152     <ignore></ignore>
153     </action>
154     </pluginExecution>
155     </pluginExecutions>
156     </lifecycleMappingMetadata>
157     </configuration>
158     </plugin>
159     </plugins>
160     </pluginManagement>
161 alfonx 2156
162    
163 alfonx 1406 </build>
164 alfonx 1782
165 alfonx 2156 <repositories>
166     <repository>
167     <id>eaio.com</id>
168     <url>http://eaio.com/maven2</url>
169     </repository>
170     </repositories>
171 alfonx 1782
172 alfonx 1447 <profiles>
173     <profile>
174     <id>resourceOperationRemove</id>
175     <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
176     the build will remove any lines in the resource bundes that are tagged with
177     REMOVEME_ -->
178     <build>
179     <plugins>
180     <plugin>
181     <groupId>org.codehaus.mojo</groupId>
182     <artifactId>exec-maven-plugin</artifactId>
183     <version>1.2</version>
184     <executions>
185     <execution>
186     <phase>generate-sources</phase>
187     <goals>
188     <goal>java</goal>
189     </goals>
190     <configuration>
191     <mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
192     <arguments>
193 alfonx 1452 <argument>-s</argument>
194     <argument>${basedir}/src/main/resources</argument>
195 alfonx 1447 <argument>-b</argument>
196 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
197 alfonx 1447 </argument>
198     </arguments>
199     </configuration>
200     </execution>
201     </executions>
202     </plugin>
203     </plugins>
204     </build>
205     </profile>
206     </profiles>
207 alfonx 1406
208 alfonx 1782
209 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