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

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26