/[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 1480 by alfonx, Wed Feb 2 21:06:48 2011 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.5-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                    <schmitzm.version>${project.version}</schmitzm.version>
17                  <geotools.version>2.6.5</geotools.version>                  <geotools.version>2.6.5</geotools.version>
18    <!--            <geotools.version>2.7-RC1</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>  
67    
68                  <dependency>          <dependencies>
                         <!-- 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>  
   
                 <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.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.2</version>
140                                    <configuration>
141                                            <source>1.6</source>
142                                            <target>1.6</target>
143                                            <excludes>
144                                                    <exclude>**/.svn</exclude> <!-- ??? -->
145                                            </excludes>
146                                    </configuration>
147                            </plugin>
148    
149                            <plugin>
150                                    <artifactId>maven-antrun-plugin</artifactId>
151                                    <version>1.3</version>
152    
153                                    <executions>
154                                            <execution>
155                                                    <phase>compile</phase>
156                                                    <goals>
157                                                            <goal>run</goal>
158                                                    </goals>
159                                                    <configuration>
160    
161                                                            <tasks>
162                                                                    <taskdef resource="net/sf/antcontrib/antlib.xml">
163                                                                            <classpath refid="maven.dependency.classpath" />
164                                                                    </taskdef>
165    
166                                                                    <typedef name="native2ascii"
167                                                                            classname="org.apache.tools.ant.taskdefs.optional.Native2Ascii">
168                                                                            <classpath refid="maven.dependency.classpath" />
169                                                                    </typedef>
170    
171                                                                    <for param="file"
172                                                                            description="Alle .properties nach .propertieNative umbenennen">
173                                                                            <path>
174                                                                                    <fileset dir="src" includes="**/*.properties" />
175                                                                            </path>
176                                                                            <sequential>
177                                                                                    <move file="@{file}" overwrite="true" tofile="@{file}Native"
178                                                                                            verbose="false" preservelastmodified="true" />
179                                                                            </sequential>
180                                                                    </for>
181    
182                                                                    <native2ascii encoding="UTF8" src="src"
183                                                                            includes="**/*.propertiesNative" dest="src" ext=".properties" />
184    
185                                                                    <for param="file">
186                                                                            <path>
187                                                                                    <fileset dir="src" includes="**/*.propertiesNative" />
188                                                                            </path>
189                                                                            <sequential>
190                                                                                    <delete file="@{file}" quiet="true" />
191                                                                            </sequential>
192                                                                    </for>
193    
194                                                            </tasks>
195                                                    </configuration>
196                                            </execution>
197                                    </executions>
198                            </plugin>
199    
200                    </plugins>
201            </build>
202    
203    
204    
205            <repositories>
206    
207                    <repository>
208                            <snapshots>
209                                    <enabled>false</enabled>
210                            </snapshots>
211                            <id>central</id>
212                            <name>libs-releases</name>
213                            <url>http://artifactory.wikisquare.de/artifactory/libs-releases</url>
214                    </repository>
215    
216                    <repository>
217                            <snapshots />
218                            <id>snapshots</id>
219                            <name>libs-snapshots</name>
220                            <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots
221                            </url>
222                    </repository>
223    
224            </repositories>
225    
226            <distributionManagement>
227    
228                    <repository>
229                            <id>artifactory.wikisquare.de</id>
230                            <name>artifactory.wikisquare.de-releases</name>
231                            <url>http://artifactory.wikisquare.de/artifactory/libs-releases-local
232                            </url>
233                    </repository>
234    
235                    <snapshotRepository>
236                            <id>artifactory.wikisquare.de</id>
237                            <name>artifactory.wikisquare.de-snapshots</name>
238                            <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots-local
239                            </url>
240                    </snapshotRepository>
241    
242            </distributionManagement>
243  </project>  </project>

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26