/[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 2243 by alfonx, Sat Feb 23 21:54:40 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>  
67    
68                  <dependency>          <dependencies>
                         <groupId>junit</groupId>  
                         <artifactId>junit</artifactId>  
                         <version>4.8.2</version>  
                         <type>jar</type>  
                         <scope>test</scope>  
                 </dependency>  
   
                 <dependency>  
                         <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.8.2</version>
100                          <type>jar</type>                          <type>jar</type>
                         <scope>compile</scope>  
                 </dependency>  
   
                 <dependency>  
                         <!-- Testen fuer Olli -->  
                         <groupId>net.sourceforge.jexcelapi</groupId>  
                         <artifactId>jxl</artifactId>  
                         <version>2.6.12</version>  
101                          <scope>test</scope>                          <scope>test</scope>
102                  </dependency>                  </dependency>
103    
104                  <dependency>                  <dependency>
105                          <!-- Testen fuer Olli -->                          <!-- Logging with log4j. Die MVN dependency fuer 1.2.15 ist defekt. downgraded -->
106                          <groupId>org.apache.poi</groupId>                          <!-- to 1.2.14 http://jira.codehaus.org/browse/MEV-649 -->
107                          <artifactId>poi</artifactId>                          <groupId>log4j</groupId>
108                          <version>3.7</version>                          <artifactId>log4j</artifactId>
109                          <type>jar</type>                          <version>1.2.14</version>
                         <scope>test</scope>  
110                  </dependency>                  </dependency>
111          </dependencies>          </dependencies>
112    
113            <build>
114                    <plugins>
115    
116                            <plugin>
117                                    <groupId>org.apache.maven.plugins</groupId>
118                                    <artifactId>maven-jar-plugin</artifactId>
119                                    <version>2.3.2</version>
120                                    <executions>
121                                            <execution>
122                                                    <goals>
123                                                            <goal>test-jar</goal>
124                                                            <goal>jar</goal>
125                                                    </goals>
126                                            </execution>
127                                    </executions>
128                            </plugin>
129    
130                            <plugin>
131                                    <groupId>org.apache.maven.plugins</groupId>
132                                    <artifactId>maven-resources-plugin</artifactId>
133                                    <version>2.5</version>
134                            </plugin>
135    
136                            <plugin>
137                                    <artifactId>maven-antrun-plugin</artifactId>
138                                    <version>1.3</version>
139    
140                                    <executions>
141                                            <execution>
142                                                    <phase>compile</phase>
143                                                    <goals>
144                                                            <goal>run</goal>
145                                                    </goals>
146                                                    <configuration>
147    
148                                                            <tasks>
149                                                                    <taskdef resource="net/sf/antcontrib/antlib.xml">
150                                                                            <classpath refid="maven.dependency.classpath" />
151                                                                    </taskdef>
152    
153                                                                    <typedef name="native2ascii"
154                                                                            classname="org.apache.tools.ant.taskdefs.optional.Native2Ascii">
155                                                                            <classpath refid="maven.dependency.classpath" />
156                                                                    </typedef>
157    
158                                                                    <for param="file"
159                                                                            description="Alle .properties nach .propertieNative umbenennen">
160                                                                            <path>
161                                                                                    <fileset dir="src" includes="**/*.properties" />
162                                                                            </path>
163                                                                            <sequential>
164                                                                                    <move file="@{file}" overwrite="true" tofile="@{file}Native"
165                                                                                            verbose="false" preservelastmodified="true" />
166                                                                            </sequential>
167                                                                    </for>
168    
169                                                                    <native2ascii encoding="UTF8" src="src"
170                                                                            includes="**/*.propertiesNative" dest="src" ext=".properties" />
171    
172                                                                    <for param="file">
173                                                                            <path>
174                                                                                    <fileset dir="src" includes="**/*.propertiesNative" />
175                                                                            </path>
176                                                                            <sequential>
177                                                                                    <delete file="@{file}" quiet="true" />
178                                                                            </sequential>
179                                                                    </for>
180    
181                                                            </tasks>
182                                                    </configuration>
183                                            </execution>
184                                    </executions>
185                            </plugin>
186    
187                            <plugin>
188                                    <groupId>org.apache.maven.plugins</groupId>
189                                    <artifactId>maven-compiler-plugin</artifactId>
190                                    <version>3.0</version>
191                                    <configuration>
192                                            <source>1.7</source>
193                                            <target>1.7</target>
194    
195                                            <showDeprecation>true</showDeprecation>
196                                            <showWarnings>true</showWarnings>
197                                            <executable>${env.JAVA_HOME}/bin/javac</executable>
198                                            <fork>true</fork>
199    
200                                            <excludes>
201                                                    <exclude>**/.svn</exclude>
202                                            </excludes>
203                                    </configuration>
204                            </plugin>
205                    </plugins>
206                    <pluginManagement>
207                            <plugins>
208                                    <!--This plugin's configuration is used to store Eclipse m2e settings
209                                            only. It has no influence on the Maven build itself. -->
210                                    <plugin>
211                                            <groupId>org.eclipse.m2e</groupId>
212                                            <artifactId>lifecycle-mapping</artifactId>
213                                            <version>1.0.0</version>
214                                            <configuration>
215                                                    <lifecycleMappingMetadata>
216                                                            <pluginExecutions>
217                                                                    <pluginExecution>
218                                                                            <pluginExecutionFilter>
219                                                                                    <groupId>
220                                                                                            org.apache.maven.plugins
221                                                                                    </groupId>
222                                                                                    <artifactId>
223                                                                                            maven-antrun-plugin
224                                                                                    </artifactId>
225                                                                                    <versionRange>
226                                                                                            [1.3,)
227                                                                                    </versionRange>
228                                                                                    <goals>
229                                                                                            <goal>run</goal>
230                                                                                    </goals>
231                                                                            </pluginExecutionFilter>
232                                                                            <action>
233                                                                                    <ignore></ignore>
234                                                                            </action>
235                                                                    </pluginExecution>
236                                                            </pluginExecutions>
237                                                    </lifecycleMappingMetadata>
238                                            </configuration>
239                                    </plugin>
240                            </plugins>
241                    </pluginManagement>
242    
243    
244    
245    
246    
247    
248    
249            </build>
250    
251    
252    
253            <repositories>
254    
255                    <repository>
256                            <snapshots>
257                                    <enabled>false</enabled>
258                            </snapshots>
259                            <id>central</id>
260                            <name>libs-releases</name>
261                            <url>http://artifactory.wikisquare.de/artifactory/libs-releases</url>
262                    </repository>
263    
264                    <repository>
265                            <snapshots />
266                            <id>snapshots</id>
267                            <name>libs-snapshots</name>
268                            <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots
269                            </url>
270                    </repository>
271    
272            </repositories>
273    
274            <distributionManagement>
275    
276                    <repository>
277                            <id>artifactory.wikisquare.de</id>
278                            <name>artifactory.wikisquare.de-releases</name>
279                            <url>http://artifactory.wikisquare.de/artifactory/libs-releases-local
280                            </url>
281                    </repository>
282    
283                    <snapshotRepository>
284                            <id>artifactory.wikisquare.de</id>
285                            <name>artifactory.wikisquare.de-snapshots</name>
286                            <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots-local
287                            </url>
288                    </snapshotRepository>
289    
290            </distributionManagement>
291    
292    <profiles>
293    <profile>
294    <id>tweakJdk7Path</id>
295    
296    <build>
297    <plugins>
298    
299                            <plugin>
300                                    <groupId>org.apache.maven.plugins</groupId>
301                                    <artifactId>maven-compiler-plugin</artifactId>
302                                    <version>3.0</version>
303                                    <configuration>
304                                            <source>1.7</source>
305                                            <target>1.7</target>
306    
307                                            <showDeprecation>true</showDeprecation>
308                                            <showWarnings>true</showWarnings>
309                                            <executable>/usr/lib/jvm/java-7-oracle/bin/javac</executable>
310                                            <fork>true</fork>
311    
312                                            <excludes>
313                                                    <exclude>**/.svn</exclude>
314                                            </excludes>
315                                    </configuration>
316                            </plugin>
317                    </plugins>
318    
319    
320    </build>
321    
322    </profile>
323    </profiles>
324  </project>  </project>

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26