/[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 2050 by keeb, Thu Jun 7 10:40:15 2012 UTC revision 2334 by mojays, Sat Jun 8 13:51:00 2013 UTC
# Line 14  Line 14 
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>                  <schmitzm.version>${project.version}</schmitzm.version>
17  <!--            <geotools.version>8-SNAPSHOT</geotools.version> -->                  <!-- <geotools.version>8-SNAPSHOT</geotools.version> -->
18                  <geotools.version>2.7.4</geotools.version>                  <geotools.version>2.7.5</geotools.version>
19          </properties>          </properties>
20    
21          <issueManagement>          <issueManagement>
# Line 96  Line 96 
96                  <dependency>                  <dependency>
97                          <groupId>junit</groupId>                          <groupId>junit</groupId>
98                          <artifactId>junit</artifactId>                          <artifactId>junit</artifactId>
99                          <version>4.8.2</version>                          <version>4.11</version>
100                          <type>jar</type>                          <type>jar</type>
101                          <scope>test</scope>                          <scope>test</scope>
102                  </dependency>                  </dependency>
           
103                  <dependency>                  <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 -->  
104                          <groupId>log4j</groupId>                          <groupId>log4j</groupId>
105                          <artifactId>log4j</artifactId>                          <artifactId>log4j</artifactId>
106                          <version>1.2.14</version>                          <version>1.2.17</version>
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>
113                            <groupId>org.slf4j</groupId>
114                            <artifactId>slf4j-log4j12</artifactId>
115                            <version>1.7.2</version>
116                    </dependency>
117                    
118          </dependencies>          </dependencies>
119    
120          <build>          <build>
# Line 116  Line 123 
123                          <plugin>                          <plugin>
124                                  <groupId>org.apache.maven.plugins</groupId>                                  <groupId>org.apache.maven.plugins</groupId>
125                                  <artifactId>maven-jar-plugin</artifactId>                                  <artifactId>maven-jar-plugin</artifactId>
126                                  <version>2.3.1</version>                                  <version>2.3.2</version>
127                                  <executions>                                  <executions>
128                                          <execution>                                          <execution>
129                                                  <goals>                                                  <goals>
# Line 130  Line 137 
137                          <plugin>                          <plugin>
138                                  <groupId>org.apache.maven.plugins</groupId>                                  <groupId>org.apache.maven.plugins</groupId>
139                                  <artifactId>maven-resources-plugin</artifactId>                                  <artifactId>maven-resources-plugin</artifactId>
140                                  <version>2.4.2</version>                                  <version>2.5</version>
141                            </plugin>
142    
143                            <plugin>
144                                    <groupId>org.apache.maven.plugins</groupId>
145                                    <artifactId>maven-source-plugin</artifactId>
146                                    <executions>
147                                            <execution>
148                                                    <id>attach-sources</id>
149                                                    <goals>
150                                                            <goal>test-jar</goal>
151                                                            <goal>jar</goal>
152                                                    </goals>
153                                            </execution>
154                                    </executions>
155                            </plugin>
156    
157                            <plugin>
158                                    <artifactId>maven-antrun-plugin</artifactId>
159                                    <version>1.3</version>
160    
161                                    <executions>
162                                            <execution>
163                                                    <phase>compile</phase>
164                                                    <goals>
165                                                            <goal>run</goal>
166                                                    </goals>
167                                                    <configuration>
168    
169                                                            <tasks>
170                                                                    <taskdef resource="net/sf/antcontrib/antlib.xml">
171                                                                            <classpath refid="maven.dependency.classpath" />
172                                                                    </taskdef>
173    
174                                                                    <typedef name="native2ascii"
175                                                                            classname="org.apache.tools.ant.taskdefs.optional.Native2Ascii">
176                                                                            <classpath refid="maven.dependency.classpath" />
177                                                                    </typedef>
178    
179                                                                    <for param="file"
180                                                                            description="Alle .properties nach .propertieNative umbenennen">
181                                                                            <path>
182                                                                                    <fileset dir="src" includes="**/*.properties" />
183                                                                            </path>
184                                                                            <sequential>
185                                                                                    <move file="@{file}" overwrite="true" tofile="@{file}Native"
186                                                                                            verbose="false" preservelastmodified="true" />
187                                                                            </sequential>
188                                                                    </for>
189    
190                                                                    <native2ascii encoding="UTF8" src="src"
191                                                                            includes="**/*.propertiesNative" dest="src" ext=".properties" />
192    
193                                                                    <for param="file">
194                                                                            <path>
195                                                                                    <fileset dir="src" includes="**/*.propertiesNative" />
196                                                                            </path>
197                                                                            <sequential>
198                                                                                    <delete file="@{file}" quiet="true" />
199                                                                            </sequential>
200                                                                    </for>
201    
202                                                            </tasks>
203                                                    </configuration>
204                                            </execution>
205                                    </executions>
206                          </plugin>                          </plugin>
207    
208                          <plugin>                          <plugin>
209                                  <groupId>org.apache.maven.plugins</groupId>                                  <groupId>org.apache.maven.plugins</groupId>
210                                  <artifactId>maven-compiler-plugin</artifactId>                                  <artifactId>maven-compiler-plugin</artifactId>
211                                  <version>2.3.2</version>                                  <version>3.0</version>
212                                  <configuration>                                  <configuration>
213                                          <source>1.6</source>                                          <source>1.7</source>
214                                          <target>1.6</target>                                          <target>1.7</target>
215    
216                                            <showDeprecation>true</showDeprecation>
217                                            <showWarnings>true</showWarnings>
218                                            <executable>${env.JAVA_HOME}/bin/javac</executable>
219                                            <fork>true</fork>
220    
221                                          <excludes>                                          <excludes>
222                                                  <exclude>**/.svn</exclude> <!-- ??? -->                                                  <exclude>**/.svn</exclude>
223                                          </excludes>                                          </excludes>
224                                  </configuration>                                  </configuration>
225                          </plugin>                          </plugin>
   
 <!--                    <plugin> -->  
 <!--                            <artifactId>maven-antrun-plugin</artifactId> -->  
 <!--                            <version>1.3</version> -->  
   
 <!--                            <executions> -->  
 <!--                                    <execution> -->  
 <!--                                            <phase>compile</phase> -->  
 <!--                                            <goals> -->  
 <!--                                                    <goal>run</goal> -->  
 <!--                                            </goals> -->  
 <!--                                            <configuration> -->  
   
 <!--                                                    <tasks> -->  
 <!--                                                            <taskdef resource="net/sf/antcontrib/antlib.xml"> -->  
 <!--                                                                    <classpath refid="maven.dependency.classpath" /> -->  
 <!--                                                            </taskdef> -->  
   
 <!--                                                            <typedef name="native2ascii" -->  
 <!--                                                                    classname="org.apache.tools.ant.taskdefs.optional.Native2Ascii"> -->  
 <!--                                                                    <classpath refid="maven.dependency.classpath" /> -->  
 <!--                                                            </typedef> -->  
   
 <!--                                                            <for param="file" -->  
 <!--                                                                    description="Alle .properties nach .propertieNative umbenennen"> -->  
 <!--                                                                    <path> -->  
 <!--                                                                            <fileset dir="src" includes="**/*.properties" /> -->  
 <!--                                                                    </path> -->  
 <!--                                                                    <sequential> -->  
 <!--                                                                            <move file="@{file}" overwrite="true" tofile="@{file}Native" -->  
 <!--                                                                                    verbose="false" preservelastmodified="true" /> -->  
 <!--                                                                    </sequential> -->  
 <!--                                                            </for> -->  
   
 <!--                                                            <native2ascii encoding="UTF8" src="src" -->  
 <!--                                                                    includes="**/*.propertiesNative" dest="src" ext=".properties" /> -->  
   
 <!--                                                            <for param="file"> -->  
 <!--                                                                    <path> -->  
 <!--                                                                            <fileset dir="src" includes="**/*.propertiesNative" /> -->  
 <!--                                                                    </path> -->  
 <!--                                                                    <sequential> -->  
 <!--                                                                            <delete file="@{file}" quiet="true" /> -->  
 <!--                                                                    </sequential> -->  
 <!--                                                            </for> -->  
   
 <!--                                                    </tasks> -->  
 <!--                                            </configuration> -->  
 <!--                                    </execution> -->  
 <!--                            </executions> -->  
 <!--                    </plugin> -->  
   
226                  </plugins>                  </plugins>
227                  <pluginManagement>                  <pluginManagement>
228                          <plugins>                          <plugins>
229                                  <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->                                  <!--This plugin's configuration is used to store Eclipse m2e settings
230                                            only. It has no influence on the Maven build itself. -->
231                                  <plugin>                                  <plugin>
232                                          <groupId>org.eclipse.m2e</groupId>                                          <groupId>org.eclipse.m2e</groupId>
233                                          <artifactId>lifecycle-mapping</artifactId>                                          <artifactId>lifecycle-mapping</artifactId>
# Line 233  Line 260 
260                                  </plugin>                                  </plugin>
261                          </plugins>                          </plugins>
262                  </pluginManagement>                  </pluginManagement>
263    
264    
265    
266    
267    
268    
269    
270          </build>          </build>
271    
272    
# Line 275  Line 309 
309                  </snapshotRepository>                  </snapshotRepository>
310    
311          </distributionManagement>          </distributionManagement>
312    
313            <profiles>
314                    <profile>
315                            <id>tweakJdk7Path</id>
316    
317                            <build>
318                                    <plugins>
319    
320                                            <plugin>
321                                                    <groupId>org.apache.maven.plugins</groupId>
322                                                    <artifactId>maven-compiler-plugin</artifactId>
323                                                    <version>3.0</version>
324                                                    <configuration>
325                                                            <source>1.7</source>
326                                                            <target>1.7</target>
327    
328                                                            <showDeprecation>true</showDeprecation>
329                                                            <showWarnings>true</showWarnings>
330                                                            <executable>/usr/lib/jvm/java-7-oracle/bin/javac</executable>
331                                                            <fork>true</fork>
332    
333                                                            <excludes>
334                                                                    <exclude>**/.svn</exclude>
335                                                            </excludes>
336                                                    </configuration>
337                                            </plugin>
338                                    </plugins>
339    
340    
341                            </build>
342    
343                    </profile>
344            </profiles>
345  </project>  </project>

Legend:
Removed from v.2050  
changed lines
  Added in v.2334

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26