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

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

Parent Directory Parent Directory | Revision Log Revision Log


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