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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2156 - (hide annotations)
Sat Dec 8 22:09:55 2012 UTC (12 years, 2 months ago) by alfonx
File MIME type: text/xml
File size: 5703 byte(s)
Kleine weitere Dependency, um RegexCache noch etwas zu beschleunigen.
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     <plugins>
125     <plugin>
126     <groupId>org.apache.maven.plugins</groupId>
127     <artifactId>maven-compiler-plugin</artifactId>
128 alfonx 1676 <version>2.3.2</version>
129 alfonx 1406 <configuration>
130     <source>1.6</source>
131     <target>1.6</target>
132     <excludes>
133 alfonx 1676 <exclude>**/.svn</exclude>
134 alfonx 1406 </excludes>
135     </configuration>
136     </plugin>
137     </plugins>
138    
139 mojays 1813 <pluginManagement>
140     <plugins>
141 alfonx 2025 <!--This plugin's configuration is used to store Eclipse m2e settings
142     only. It has no influence on the Maven build itself. -->
143 mojays 1813 <plugin>
144     <groupId>org.eclipse.m2e</groupId>
145     <artifactId>lifecycle-mapping</artifactId>
146     <version>1.0.0</version>
147     <configuration>
148     <lifecycleMappingMetadata>
149     <pluginExecutions>
150     <pluginExecution>
151     <pluginExecutionFilter>
152     <groupId>
153     org.codehaus.mojo
154     </groupId>
155     <artifactId>
156     exec-maven-plugin
157     </artifactId>
158     <versionRange>
159     [1.2,)
160     </versionRange>
161     <goals>
162     <goal>java</goal>
163     </goals>
164     </pluginExecutionFilter>
165     <action>
166     <ignore></ignore>
167     </action>
168     </pluginExecution>
169     </pluginExecutions>
170     </lifecycleMappingMetadata>
171     </configuration>
172     </plugin>
173     </plugins>
174     </pluginManagement>
175 alfonx 2156
176    
177 alfonx 1406 </build>
178 alfonx 1782
179 alfonx 2156 <repositories>
180     <repository>
181     <id>eaio.com</id>
182     <url>http://eaio.com/maven2</url>
183     </repository>
184     </repositories>
185 alfonx 1782
186 alfonx 1447 <profiles>
187     <profile>
188     <id>resourceOperationRemove</id>
189     <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
190     the build will remove any lines in the resource bundes that are tagged with
191     REMOVEME_ -->
192     <build>
193     <plugins>
194     <plugin>
195     <groupId>org.codehaus.mojo</groupId>
196     <artifactId>exec-maven-plugin</artifactId>
197     <version>1.2</version>
198     <executions>
199     <execution>
200     <phase>generate-sources</phase>
201     <goals>
202     <goal>java</goal>
203     </goals>
204     <configuration>
205     <mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
206     <arguments>
207 alfonx 1452 <argument>-s</argument>
208     <argument>${basedir}/src/main/resources</argument>
209 alfonx 1447 <argument>-b</argument>
210 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
211 alfonx 1447 </argument>
212     </arguments>
213     </configuration>
214     </execution>
215     </executions>
216     </plugin>
217     </plugins>
218     </build>
219     </profile>
220     </profiles>
221 alfonx 1406
222 alfonx 1782
223 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