/[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 1386 by alfonx, Wed Jan 26 15:00:45 2011 UTC revision 1717 by keeb, Tue Sep 6 17:23:04 2011 UTC
# Line 1  Line 1 
1  <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  <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">          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>          <modelVersion>4.0.0</modelVersion>
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.7-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    
11    <name>schmitzm-parent</name>          <name>schmitzm-parent</name>
12    <url>http://maven.apache.org</url>          <url>http://maven.apache.org</url>
13    
14    <properties>          <properties>
15      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>                  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16    </properties>                  <schmitzm.version>${project.version}</schmitzm.version>
17                    <geotools.version>2.6.5</geotools.version>
18    <dependencies>  <!--            <geotools.version>2.7-RC1</geotools.version> -->
19      <dependency>          </properties>
20        <groupId>junit</groupId>  
21        <artifactId>junit</artifactId>          <issueManagement>
22        <version>3.8.1</version>                  <system>gforge</system>
23        <scope>test</scope>                  <url>http://wald.intevation.org/tracker/?group_id=47</url>
24      </dependency>          </issueManagement>
25    </dependencies>  
26            <licenses>
27                    <license>
28                            <name>Lesser General Public License (LGPL)</name>
29                            <url>http://www.gnu.org/copyleft/lgpl.txt</url>
30                    </license>
31            </licenses>
32    
33            <developers>
34                    <developer>
35                            <id>mschmitz</id>
36                            <name>Martin Schmitz</name>
37                            <timezone>GMT+1</timezone>
38                            <roles>
39                                    <role>Developer</role>
40                            </roles>
41                    </developer>
42                    <developer>
43                            <id>alfonx</id>
44                            <name>Stefan A. Tzeggai</name>
45                            <email>[email protected]</email>
46                            <url>http://www.wikisquare.de</url>
47                            <organization>Wikisquare.de</organization>
48                            <organizationUrl>http://www.wikisquare.de</organizationUrl>
49                            <timezone>GMT+1</timezone>
50                            <roles>
51                                    <role>Developer</role>
52                                    <role>Maven package maintainer</role>
53                            </roles>
54                    </developer>
55            </developers>
56    
57            <scm>
58                    <connection>scm:https://svn.wald.intevation.org/svn/schmitzm</connection>
59                    <url>https://svn.wald.intevation.org/svn/schmitzm/trunk</url>
60                    <developerConnection>svn+ssh://[email protected]/schmitzm/trunk</developerConnection>
61            </scm>
62    
63            <organization>
64                    <url>http://www.wikisquare.de</url>
65            </organization>
66    
67    
68            <dependencies>
69    
70                    <dependency>
71                            <!-- Fuer Sonderzeichenbehandlung -->
72                            <groupId>ant-contrib</groupId>
73                            <artifactId>ant-contrib</artifactId>
74                            <version>1.0b3</version>
75                            <type>jar</type>
76                            <scope>provided</scope>
77                    </dependency>
78    
79                    <dependency>
80                            <!-- Fuer Sonderzeichenbehandlung -->
81                            <groupId>ant</groupId>
82                            <artifactId>ant-nodeps</artifactId>
83                            <version>1.6.5</version>
84                            <scope>provided</scope>
85                    </dependency>
86    
87                    <dependency>
88                            <!-- Fuer Sonderzeichenbehandlung -->
89                            <groupId>com.sun</groupId>
90                            <artifactId>tools</artifactId>
91                            <version>1.6.0</version>
92                            <scope>system</scope>
93                            <systemPath>${java.home}/../lib/tools.jar</systemPath>
94                    </dependency>
95    
96                    <dependency>
97                            <groupId>junit</groupId>
98                            <artifactId>junit</artifactId>
99                            <version>4.8.2</version>
100                            <type>jar</type>
101                            <scope>test</scope>
102                    </dependency>
103            
104                    <dependency>
105    <!--                     Logging with log4j. Die MVN dependency fuer 1.2.15 ist defekt. downgraded -->
106    <!--                            to 1.2.14 http://jira.codehaus.org/browse/MEV-649 -->
107                            <groupId>log4j</groupId>
108                            <artifactId>log4j</artifactId>
109                            <version>1.2.14</version>
110                    </dependency>
111            </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.1386  
changed lines
  Added in v.1717

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26