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

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

Parent Directory Parent Directory | Revision Log Revision Log


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