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

Diff of /trunk/schmitzm-parent/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1391 by alfonx, Wed Jan 26 15:25:32 2011 UTC revision 2334 by mojays, Sat Jun 8 13:51:00 2013 UTC
# Line 4  Line 4 
4    
5          <groupId>de.schmitzm</groupId>          <groupId>de.schmitzm</groupId>
6          <artifactId>schmitzm-parent</artifactId>          <artifactId>schmitzm-parent</artifactId>
7          <version>1.0-SNAPSHOT</version>          <version>2.8-SNAPSHOT</version>
8          <packaging>pom</packaging>          <packaging>pom</packaging>
9          <description>Describes maven pom settings for all schmitz modules</description>          <description>Describes maven pom settings for all schmitz modules</description>
10    
# Line 13  Line 13 
13    
14          <properties>          <properties>
15                  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>                  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16                  <geotools.version>2.6.5</geotools.version>                  <schmitzm.version>${project.version}</schmitzm.version>
17                    <!-- <geotools.version>8-SNAPSHOT</geotools.version> -->
18                    <geotools.version>2.7.5</geotools.version>
19          </properties>          </properties>
20    
   
21          <issueManagement>          <issueManagement>
22                  <system>gforge</system>                  <system>gforge</system>
23                  <url>http://wald.intevation.org/tracker/?group_id=47</url>                  <url>http://wald.intevation.org/tracker/?group_id=47</url>
# Line 63  Line 64 
64                  <url>http://www.wikisquare.de</url>                  <url>http://www.wikisquare.de</url>
65          </organization>          </organization>
66    
         <dependencies>  
   
                 <dependency>  
                         <!-- Logging with log4j. Die MVN dependency fuer 1.2.15 ist defekt. downgraded  
                                 to 1.2.14 http://jira.codehaus.org/browse/MEV-649 -->  
                         <groupId>log4j</groupId>  
                         <artifactId>log4j</artifactId>  
                         <version>1.2.14</version>  
                 </dependency>  
   
                 <dependency>  
                         <groupId>junit</groupId>  
                         <artifactId>junit</artifactId>  
                         <version>4.8.2</version>  
                         <type>jar</type>  
                         <scope>test</scope>  
                 </dependency>  
67    
68                  <dependency>          <dependencies>
                         <groupId>javax.media</groupId>  
                         <artifactId>jai_core</artifactId>  
                         <version>1.1.3</version>  
                         <type>jar</type>  
                         <scope>compile</scope>  
                 </dependency>  
   
                 <dependency>  
                         <groupId>commons-io</groupId>  
                         <artifactId>commons-io</artifactId>  
                         <version>1.4</version>  
                         <type>jar</type>  
                         <scope>compile</scope>  
                 </dependency>  
   
                 <dependency>  
                         <groupId>com.miglayout</groupId>  
                         <artifactId>miglayout</artifactId>  
                         <version>3.7.3</version>  
                         <classifier>swing</classifier>  
                         <scope>compile</scope>  
                 </dependency>  
   
                 <dependency>  
                         <groupId>net.jini</groupId>  
                         <artifactId>jini-ext</artifactId>  
                         <version>2.1</version>  
                         <type>jar</type>  
                         <scope>compile</scope>  
                 </dependency>  
   
                 <dependency>  
                         <groupId>org.jdom</groupId>  
                         <artifactId>jdom</artifactId>  
                         <version>1.1</version>  
                 </dependency>  
69    
70                  <dependency>                  <dependency>
71                          <!-- Fuer Sonderzeichenbehandlung -->                          <!-- Fuer Sonderzeichenbehandlung -->
# Line 146  Line 94 
94                  </dependency>                  </dependency>
95    
96                  <dependency>                  <dependency>
97                          <groupId>commons-cli</groupId>                          <groupId>junit</groupId>
98                          <artifactId>commons-cli</artifactId>                          <artifactId>junit</artifactId>
99                          <version>1.2</version>                          <version>4.11</version>
100                          <type>jar</type>                          <type>jar</type>
101                          <scope>compile</scope>                          <scope>test</scope>
102                  </dependency>                  </dependency>
   
103                  <dependency>                  <dependency>
104                          <!-- Testen fuer Olli -->                          <groupId>log4j</groupId>
105                          <groupId>net.sourceforge.jexcelapi</groupId>                          <artifactId>log4j</artifactId>
106                          <artifactId>jxl</artifactId>                          <version>1.2.17</version>
                         <version>2.6.12</version>  
                         <scope>test</scope>  
107                  </dependency>                  </dependency>
108    
109                    <!-- SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J:
110                            Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder
111                            for further details. -->
112                  <dependency>                  <dependency>
113                          <!-- Testen fuer Olli -->                          <groupId>org.slf4j</groupId>
114                          <groupId>org.apache.poi</groupId>                          <artifactId>slf4j-log4j12</artifactId>
115                          <artifactId>poi</artifactId>                          <version>1.7.2</version>
                         <version>3.7</version>  
                         <type>jar</type>  
                         <scope>test</scope>  
116                  </dependency>                  </dependency>
117                    
118          </dependencies>          </dependencies>
119    
120            <build>
121                    <plugins>
122    
123                            <plugin>
124                                    <groupId>org.apache.maven.plugins</groupId>
125                                    <artifactId>maven-jar-plugin</artifactId>
126                                    <version>2.3.2</version>
127                                    <executions>
128                                            <execution>
129                                                    <goals>
130                                                            <goal>test-jar</goal>
131                                                            <goal>jar</goal>
132                                                    </goals>
133                                            </execution>
134                                    </executions>
135                            </plugin>
136    
137                            <plugin>
138                                    <groupId>org.apache.maven.plugins</groupId>
139                                    <artifactId>maven-resources-plugin</artifactId>
140                                    <version>2.5</version>
141                            </plugin>
142    
143                            <plugin>
144                                    <groupId>org.apache.maven.plugins</groupId>
145                                    <artifactId>maven-source-plugin</artifactId>
146                                    <executions>
147                                            <execution>
148                                                    <id>attach-sources</id>
149                                                    <goals>
150                                                            <goal>test-jar</goal>
151                                                            <goal>jar</goal>
152                                                    </goals>
153                                            </execution>
154                                    </executions>
155                            </plugin>
156    
157                            <plugin>
158                                    <artifactId>maven-antrun-plugin</artifactId>
159                                    <version>1.3</version>
160    
161                                    <executions>
162                                            <execution>
163                                                    <phase>compile</phase>
164                                                    <goals>
165                                                            <goal>run</goal>
166                                                    </goals>
167                                                    <configuration>
168    
169                                                            <tasks>
170                                                                    <taskdef resource="net/sf/antcontrib/antlib.xml">
171                                                                            <classpath refid="maven.dependency.classpath" />
172                                                                    </taskdef>
173    
174                                                                    <typedef name="native2ascii"
175                                                                            classname="org.apache.tools.ant.taskdefs.optional.Native2Ascii">
176                                                                            <classpath refid="maven.dependency.classpath" />
177                                                                    </typedef>
178    
179                                                                    <for param="file"
180                                                                            description="Alle .properties nach .propertieNative umbenennen">
181                                                                            <path>
182                                                                                    <fileset dir="src" includes="**/*.properties" />
183                                                                            </path>
184                                                                            <sequential>
185                                                                                    <move file="@{file}" overwrite="true" tofile="@{file}Native"
186                                                                                            verbose="false" preservelastmodified="true" />
187                                                                            </sequential>
188                                                                    </for>
189    
190                                                                    <native2ascii encoding="UTF8" src="src"
191                                                                            includes="**/*.propertiesNative" dest="src" ext=".properties" />
192    
193                                                                    <for param="file">
194                                                                            <path>
195                                                                                    <fileset dir="src" includes="**/*.propertiesNative" />
196                                                                            </path>
197                                                                            <sequential>
198                                                                                    <delete file="@{file}" quiet="true" />
199                                                                            </sequential>
200                                                                    </for>
201    
202                                                            </tasks>
203                                                    </configuration>
204                                            </execution>
205                                    </executions>
206                            </plugin>
207    
208                            <plugin>
209                                    <groupId>org.apache.maven.plugins</groupId>
210                                    <artifactId>maven-compiler-plugin</artifactId>
211                                    <version>3.0</version>
212                                    <configuration>
213                                            <source>1.7</source>
214                                            <target>1.7</target>
215    
216                                            <showDeprecation>true</showDeprecation>
217                                            <showWarnings>true</showWarnings>
218                                            <executable>${env.JAVA_HOME}/bin/javac</executable>
219                                            <fork>true</fork>
220    
221                                            <excludes>
222                                                    <exclude>**/.svn</exclude>
223                                            </excludes>
224                                    </configuration>
225                            </plugin>
226                    </plugins>
227                    <pluginManagement>
228                            <plugins>
229                                    <!--This plugin's configuration is used to store Eclipse m2e settings
230                                            only. It has no influence on the Maven build itself. -->
231                                    <plugin>
232                                            <groupId>org.eclipse.m2e</groupId>
233                                            <artifactId>lifecycle-mapping</artifactId>
234                                            <version>1.0.0</version>
235                                            <configuration>
236                                                    <lifecycleMappingMetadata>
237                                                            <pluginExecutions>
238                                                                    <pluginExecution>
239                                                                            <pluginExecutionFilter>
240                                                                                    <groupId>
241                                                                                            org.apache.maven.plugins
242                                                                                    </groupId>
243                                                                                    <artifactId>
244                                                                                            maven-antrun-plugin
245                                                                                    </artifactId>
246                                                                                    <versionRange>
247                                                                                            [1.3,)
248                                                                                    </versionRange>
249                                                                                    <goals>
250                                                                                            <goal>run</goal>
251                                                                                    </goals>
252                                                                            </pluginExecutionFilter>
253                                                                            <action>
254                                                                                    <ignore></ignore>
255                                                                            </action>
256                                                                    </pluginExecution>
257                                                            </pluginExecutions>
258                                                    </lifecycleMappingMetadata>
259                                            </configuration>
260                                    </plugin>
261                            </plugins>
262                    </pluginManagement>
263    
264    
265    
266    
267    
268    
269    
270            </build>
271    
272    
273    
274            <repositories>
275    
276                    <repository>
277                            <snapshots>
278                                    <enabled>false</enabled>
279                            </snapshots>
280                            <id>central</id>
281                            <name>libs-releases</name>
282                            <url>http://artifactory.wikisquare.de/artifactory/libs-releases</url>
283                    </repository>
284    
285                    <repository>
286                            <snapshots />
287                            <id>snapshots</id>
288                            <name>libs-snapshots</name>
289                            <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots
290                            </url>
291                    </repository>
292    
293            </repositories>
294    
295            <distributionManagement>
296    
297                    <repository>
298                            <id>artifactory.wikisquare.de</id>
299                            <name>artifactory.wikisquare.de-releases</name>
300                            <url>http://artifactory.wikisquare.de/artifactory/libs-releases-local
301                            </url>
302                    </repository>
303    
304                    <snapshotRepository>
305                            <id>artifactory.wikisquare.de</id>
306                            <name>artifactory.wikisquare.de-snapshots</name>
307                            <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots-local
308                            </url>
309                    </snapshotRepository>
310    
311            </distributionManagement>
312    
313            <profiles>
314                    <profile>
315                            <id>tweakJdk7Path</id>
316    
317                            <build>
318                                    <plugins>
319    
320                                            <plugin>
321                                                    <groupId>org.apache.maven.plugins</groupId>
322                                                    <artifactId>maven-compiler-plugin</artifactId>
323                                                    <version>3.0</version>
324                                                    <configuration>
325                                                            <source>1.7</source>
326                                                            <target>1.7</target>
327    
328                                                            <showDeprecation>true</showDeprecation>
329                                                            <showWarnings>true</showWarnings>
330                                                            <executable>/usr/lib/jvm/java-7-oracle/bin/javac</executable>
331                                                            <fork>true</fork>
332    
333                                                            <excludes>
334                                                                    <exclude>**/.svn</exclude>
335                                                            </excludes>
336                                                    </configuration>
337                                            </plugin>
338                                    </plugins>
339    
340    
341                            </build>
342    
343                    </profile>
344            </profiles>
345  </project>  </project>

Legend:
Removed from v.1391  
changed lines
  Added in v.2334

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26