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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2241 - (show annotations)
Sat Feb 23 16:07:56 2013 UTC (12 years ago) by alfonx
File MIME type: text/xml
File size: 5320 byte(s)
Upgrade von solr-core dependency 3.4 auf 4.1
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 <artifactId>schmitzm-core</artifactId>
6 <packaging>jar</packaging>
7
8 <parent>
9 <groupId>de.schmitzm</groupId>
10 <artifactId>schmitzm-parent</artifactId>
11 <version>2.8-SNAPSHOT</version>
12 <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
20 <dependency>
21 <groupId>com.eaio.stringsearch</groupId>
22 <artifactId>stringsearch</artifactId>
23 <version>2</version>
24 </dependency>
25
26 <dependency>
27 <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
34 <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 <!-- NOT USE 2.0.1 for now... -->
52 <groupId>commons-io</groupId>
53 <artifactId>commons-io</artifactId>
54 <version>1.4</version>
55 <type>jar</type>
56 <scope>compile</scope>
57 </dependency>
58
59 <dependency>
60 <groupId>com.miglayout</groupId>
61 <artifactId>miglayout</artifactId>
62 <version>3.7.4</version>
63 <classifier>swing</classifier>
64 <scope>compile</scope>
65 </dependency>
66
67 <!-- <dependency> -->
68 <!-- <groupId>org.supercsv</groupId> -->
69 <!-- <artifactId>supercsv</artifactId> -->
70 <!-- <version>1.52</version> -->
71 <!-- </dependency> -->
72
73 <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
81 <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 <!-- Kommt in version 2.3 von gt-swing und sonst verwirren die zwei versionene
105 den gp export -->
106 <groupId>commons-lang</groupId>
107 <artifactId>commons-lang</artifactId>
108 <version>2.6</version>
109 <!-- <version>2.4</version> -->
110 <type>jar</type>
111 <scope>compile</scope>
112 </dependency>
113
114 <dependency>
115 <artifactId>solr-core</artifactId>
116 <groupId>org.apache.solr</groupId>
117 <version>4.1.0</version>
118 <type>jar</type>
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