/[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 2229 by mojays, Thu Feb 14 17:36:17 2013 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>
6            <artifactId>schmitzm-parent</artifactId>
7            <version>2.8-SNAPSHOT</version>
8            <packaging>pom</packaging>
9            <description>Describes maven pom settings for all schmitz modules</description>
10    
11            <name>schmitzm-parent</name>
12            <url>http://maven.apache.org</url>
13    
14            <properties>
15                    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16                    <schmitzm.version>${project.version}</schmitzm.version>
17                    <!-- <geotools.version>8-SNAPSHOT</geotools.version> -->
18                    <geotools.version>2.7.5</geotools.version>
19            </properties>
20    
21            <issueManagement>
22                    <system>gforge</system>
23                    <url>http://wald.intevation.org/tracker/?group_id=47</url>
24            </issueManagement>
25    
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.5.1</version>
140                                    <configuration>
141    <!--
142    
143                                            <source>1.6</source>
144                                            <target>1.6</target>-->
145                                            <excludes>
146                                                    <exclude>**/.svn</exclude>
147                                            </excludes>
148                                    </configuration>
149                            </plugin>
150    
151                            <plugin>
152                                    <artifactId>maven-antrun-plugin</artifactId>
153                                    <version>1.3</version>
154    
155                                    <executions>
156                                            <execution>
157                                                    <phase>compile</phase>
158                                                    <goals>
159                                                            <goal>run</goal>
160                                                    </goals>
161                                                    <configuration>
162    
163                                                            <tasks>
164                                                                    <taskdef resource="net/sf/antcontrib/antlib.xml">
165                                                                            <classpath refid="maven.dependency.classpath" />
166                                                                    </taskdef>
167    
168                                                                    <typedef name="native2ascii"
169                                                                            classname="org.apache.tools.ant.taskdefs.optional.Native2Ascii">
170                                                                            <classpath refid="maven.dependency.classpath" />
171                                                                    </typedef>
172    
173                                                                    <for param="file"
174                                                                            description="Alle .properties nach .propertieNative umbenennen">
175                                                                            <path>
176                                                                                    <fileset dir="src" includes="**/*.properties" />
177                                                                            </path>
178                                                                            <sequential>
179                                                                                    <move file="@{file}" overwrite="true" tofile="@{file}Native"
180                                                                                            verbose="false" preservelastmodified="true" />
181                                                                            </sequential>
182                                                                    </for>
183    
184                                                                    <native2ascii encoding="UTF8" src="src"
185                                                                            includes="**/*.propertiesNative" dest="src" ext=".properties" />
186    
187                                                                    <for param="file">
188                                                                            <path>
189                                                                                    <fileset dir="src" includes="**/*.propertiesNative" />
190                                                                            </path>
191                                                                            <sequential>
192                                                                                    <delete file="@{file}" quiet="true" />
193                                                                            </sequential>
194                                                                    </for>
195    
196                                                            </tasks>
197                                                    </configuration>
198                                            </execution>
199                                    </executions>
200                            </plugin>
201    
202                    </plugins>
203                    <pluginManagement>
204                            <plugins>
205                                    <!--This plugin's configuration is used to store Eclipse m2e settings
206                                            only. It has no influence on the Maven build itself. -->
207                                    <plugin>
208                                            <groupId>org.eclipse.m2e</groupId>
209                                            <artifactId>lifecycle-mapping</artifactId>
210                                            <version>1.0.0</version>
211                                            <configuration>
212                                                    <lifecycleMappingMetadata>
213                                                            <pluginExecutions>
214                                                                    <pluginExecution>
215                                                                            <pluginExecutionFilter>
216                                                                                    <groupId>
217                                                                                            org.apache.maven.plugins
218                                                                                    </groupId>
219                                                                                    <artifactId>
220                                                                                            maven-antrun-plugin
221                                                                                    </artifactId>
222                                                                                    <versionRange>
223                                                                                            [1.3,)
224                                                                                    </versionRange>
225                                                                                    <goals>
226                                                                                            <goal>run</goal>
227                                                                                    </goals>
228                                                                            </pluginExecutionFilter>
229                                                                            <action>
230                                                                                    <ignore></ignore>
231                                                                            </action>
232                                                                    </pluginExecution>
233                                                            </pluginExecutions>
234                                                    </lifecycleMappingMetadata>
235                                            </configuration>
236                                    </plugin>
237                            </plugins>
238                    </pluginManagement>
239            </build>
240    
241    
242    
243            <repositories>
244    
245                    <repository>
246                            <snapshots>
247                                    <enabled>false</enabled>
248                            </snapshots>
249                            <id>central</id>
250                            <name>libs-releases</name>
251                            <url>http://artifactory.wikisquare.de/artifactory/libs-releases</url>
252                    </repository>
253    
254                    <repository>
255                            <snapshots />
256                            <id>snapshots</id>
257                            <name>libs-snapshots</name>
258                            <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots
259                            </url>
260                    </repository>
261    
262            </repositories>
263    
264            <distributionManagement>
265    
266                    <repository>
267                            <id>artifactory.wikisquare.de</id>
268                            <name>artifactory.wikisquare.de-releases</name>
269                            <url>http://artifactory.wikisquare.de/artifactory/libs-releases-local
270                            </url>
271                    </repository>
272    
273                    <snapshotRepository>
274                            <id>artifactory.wikisquare.de</id>
275                            <name>artifactory.wikisquare.de-snapshots</name>
276                            <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots-local
277                            </url>
278                    </snapshotRepository>
279    
280            </distributionManagement>
281    
282    
283            <profiles>
284              <profile>
285                <id>ms_kallisto</id>
286                <build>
287                    <plugins>
288                        <plugin>
289                            <groupId>org.apache.maven.plugins</groupId>
290                            <artifactId>maven-compiler-plugin</artifactId>
291                            <version>2.5.1</version>
292                            <configuration>
293                                <source>1.7</source>
294                                <target>1.7</target>
295                                <showDeprecation>true</showDeprecation>
296                                <showWarnings>true</showWarnings>
297                                <executable>${env.JAVA_HOME}/bin/javac</executable>
298                                <fork>true</fork>
299                            </configuration>
300                        </plugin>
301                    </plugins>
302                </build>
303              </profile>
304            </profiles>
305    
   <groupId>de.schmitzm</groupId>  
   <artifactId>schmitzm-parent</artifactId>  
   <version>1.0-SNAPSHOT</version>  
   <packaging>pom</packaging>  
   <description>Describes maven pom settings for all schmitz modules</description>  
   
   <name>schmitzm-parent</name>  
   <url>http://maven.apache.org</url>  
   
   <properties>  
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  
   </properties>  
   
   <dependencies>  
     <dependency>  
       <groupId>junit</groupId>  
       <artifactId>junit</artifactId>  
       <version>3.8.1</version>  
       <scope>test</scope>  
     </dependency>  
   </dependencies>  
306  </project>  </project>

Legend:
Removed from v.1386  
changed lines
  Added in v.2229

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26