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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2230 - (show 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 <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 <version>2.8-SNAPSHOT</version>
8 <packaging>jar</packaging>
9
10 <parent>
11 <groupId>de.schmitzm</groupId>
12 <artifactId>schmitzm-parent</artifactId>
13 <version>2.8-SNAPSHOT</version>
14 <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
22 <dependency>
23 <groupId>com.eaio.stringsearch</groupId>
24 <artifactId>stringsearch</artifactId>
25 <version>2</version>
26 </dependency>
27
28 <dependency>
29 <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
36 <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 <!-- NOT USE 2.0.1 for now... -->
54 <groupId>commons-io</groupId>
55 <artifactId>commons-io</artifactId>
56 <version>1.4</version>
57 <type>jar</type>
58 <scope>compile</scope>
59 </dependency>
60
61 <dependency>
62 <groupId>com.miglayout</groupId>
63 <artifactId>miglayout</artifactId>
64 <version>3.7.4</version>
65 <classifier>swing</classifier>
66 <scope>compile</scope>
67 </dependency>
68
69 <!-- <dependency> -->
70 <!-- <groupId>org.supercsv</groupId> -->
71 <!-- <artifactId>supercsv</artifactId> -->
72 <!-- <version>1.52</version> -->
73 <!-- </dependency> -->
74
75 <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
83 <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 <!-- Kommt in version 2.3 von gt-swing und sonst verwirren die zwei versionene
107 den gp export -->
108 <groupId>commons-lang</groupId>
109 <artifactId>commons-lang</artifactId>
110 <version>2.3</version>
111 <!-- <version>2.4</version> -->
112 <type>jar</type>
113 <scope>compile</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.apache.solr</groupId>
117 <artifactId>solr-core</artifactId>
118 <version>3.6.0</version>
119 </dependency>
120
121 </dependencies>
122
123 <build>
124
125 <pluginManagement>
126 <plugins>
127 <!--This plugin's configuration is used to store Eclipse m2e settings
128 only. It has no influence on the Maven build itself. -->
129 <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
162
163 </build>
164
165 <repositories>
166 <repository>
167 <id>eaio.com</id>
168 <url>http://eaio.com/maven2</url>
169 </repository>
170 </repositories>
171
172 <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 <argument>-s</argument>
194 <argument>${basedir}/src/main/resources</argument>
195 <argument>-b</argument>
196 <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 </argument>
198 </arguments>
199 </configuration>
200 </execution>
201 </executions>
202 </plugin>
203 </plugins>
204 </build>
205 </profile>
206 </profiles>
207
208
209 </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