/[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 2222 by mojays, Thu Feb 14 15:55:09 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>  
   
                 <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>  
67    
68                  <dependency>          <dependencies>
                         <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.1</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.4.2</version>
134                            </plugin>
135    
136                            <plugin>
137                                    <groupId>org.apache.maven.plugins</groupId>
138                                    <artifactId>maven-compiler-plugin</artifactId>
139                                    <version>2.5.1</version>
140    <!-- MS: 2013-02-14: Wir versuchen mal den Standard-JDK zu verwenden!
141                                    <configuration>
142                                            <source>1.7</source>
143                                            <target>1.7</target>
144                                            <showDeprecation>true</showDeprecation>
145                                            <showWarnings>true</showWarnings>
146                                            <executable>/usr/lib/jvm/java-7-oracle/bin/javac</executable>
147                                            <fork>true</fork>
148                                            <excludes>
149                                                    <exclude>**/.svn</exclude>
150                                            </excludes>
151                                    </configuration>
152    -->
153                            </plugin>
154    
155                            <plugin>
156                                    <artifactId>maven-antrun-plugin</artifactId>
157                                    <version>1.3</version>
158    
159                                    <executions>
160                                            <execution>
161                                                    <phase>compile</phase>
162                                                    <goals>
163                                                            <goal>run</goal>
164                                                    </goals>
165                                                    <configuration>
166    
167                                                            <tasks>
168                                                                    <taskdef resource="net/sf/antcontrib/antlib.xml">
169                                                                            <classpath refid="maven.dependency.classpath" />
170                                                                    </taskdef>
171    
172                                                                    <typedef name="native2ascii"
173                                                                            classname="org.apache.tools.ant.taskdefs.optional.Native2Ascii">
174                                                                            <classpath refid="maven.dependency.classpath" />
175                                                                    </typedef>
176    
177                                                                    <for param="file"
178                                                                            description="Alle .properties nach .propertieNative umbenennen">
179                                                                            <path>
180                                                                                    <fileset dir="src" includes="**/*.properties" />
181                                                                            </path>
182                                                                            <sequential>
183                                                                                    <move file="@{file}" overwrite="true" tofile="@{file}Native"
184                                                                                            verbose="false" preservelastmodified="true" />
185                                                                            </sequential>
186                                                                    </for>
187    
188                                                                    <native2ascii encoding="UTF8" src="src"
189                                                                            includes="**/*.propertiesNative" dest="src" ext=".properties" />
190    
191                                                                    <for param="file">
192                                                                            <path>
193                                                                                    <fileset dir="src" includes="**/*.propertiesNative" />
194                                                                            </path>
195                                                                            <sequential>
196                                                                                    <delete file="@{file}" quiet="true" />
197                                                                            </sequential>
198                                                                    </for>
199    
200                                                            </tasks>
201                                                    </configuration>
202                                            </execution>
203                                    </executions>
204                            </plugin>
205    
206                    </plugins>
207                    <pluginManagement>
208                            <plugins>
209                                    <!--This plugin's configuration is used to store Eclipse m2e settings
210                                            only. It has no influence on the Maven build itself. -->
211                                    <plugin>
212                                            <groupId>org.eclipse.m2e</groupId>
213                                            <artifactId>lifecycle-mapping</artifactId>
214                                            <version>1.0.0</version>
215                                            <configuration>
216                                                    <lifecycleMappingMetadata>
217                                                            <pluginExecutions>
218                                                                    <pluginExecution>
219                                                                            <pluginExecutionFilter>
220                                                                                    <groupId>
221                                                                                            org.apache.maven.plugins
222                                                                                    </groupId>
223                                                                                    <artifactId>
224                                                                                            maven-antrun-plugin
225                                                                                    </artifactId>
226                                                                                    <versionRange>
227                                                                                            [1.3,)
228                                                                                    </versionRange>
229                                                                                    <goals>
230                                                                                            <goal>run</goal>
231                                                                                    </goals>
232                                                                            </pluginExecutionFilter>
233                                                                            <action>
234                                                                                    <ignore></ignore>
235                                                                            </action>
236                                                                    </pluginExecution>
237                                                            </pluginExecutions>
238                                                    </lifecycleMappingMetadata>
239                                            </configuration>
240                                    </plugin>
241                            </plugins>
242                    </pluginManagement>
243            </build>
244    
245    
246    
247            <repositories>
248    
249                    <repository>
250                            <snapshots>
251                                    <enabled>false</enabled>
252                            </snapshots>
253                            <id>central</id>
254                            <name>libs-releases</name>
255                            <url>http://artifactory.wikisquare.de/artifactory/libs-releases</url>
256                    </repository>
257    
258                    <repository>
259                            <snapshots />
260                            <id>snapshots</id>
261                            <name>libs-snapshots</name>
262                            <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots
263                            </url>
264                    </repository>
265    
266            </repositories>
267    
268            <distributionManagement>
269    
270                    <repository>
271                            <id>artifactory.wikisquare.de</id>
272                            <name>artifactory.wikisquare.de-releases</name>
273                            <url>http://artifactory.wikisquare.de/artifactory/libs-releases-local
274                            </url>
275                    </repository>
276    
277                    <snapshotRepository>
278                            <id>artifactory.wikisquare.de</id>
279                            <name>artifactory.wikisquare.de-snapshots</name>
280                            <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots-local
281                            </url>
282                    </snapshotRepository>
283    
284            </distributionManagement>
285  </project>  </project>

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26