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

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26