/[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 2243 by alfonx, Sat Feb 23 21:54:40 2013 UTC revision 2388 by alfonx, Tue Aug 27 15:21:00 2013 UTC
# 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.2</version>                                  <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                                                            <Permissions>all-permissions</Permissions>
132                                                            <Codebase>*</Codebase>
133                                                    </manifestEntries>
134                                            </archive>
135                                    </configuration>
136                                  <executions>                                  <executions>
137                                          <execution>                                          <execution>
138                                                  <goals>                                                  <goals>
# Line 134  Line 150 
150                          </plugin>                          </plugin>
151    
152                          <plugin>                          <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>                                  <artifactId>maven-antrun-plugin</artifactId>
169                                  <version>1.3</version>                                  <version>1.3</version>
170    
# Line 289  Line 320 
320    
321          </distributionManagement>          </distributionManagement>
322    
323  <profiles>          <profiles>
324  <profile>                  <profile>
325  <id>tweakJdk7Path</id>                          <id>tweakJdk7Path</id>
326    
327  <build>                          <build>
328  <plugins>                                  <plugins>
329    
330                          <plugin>                                          <plugin>
331                                  <groupId>org.apache.maven.plugins</groupId>                                                  <groupId>org.apache.maven.plugins</groupId>
332                                  <artifactId>maven-compiler-plugin</artifactId>                                                  <artifactId>maven-compiler-plugin</artifactId>
333                                  <version>3.0</version>                                                  <version>3.0</version>
334                                  <configuration>                                                  <configuration>
335                                          <source>1.7</source>                                                          <source>1.7</source>
336                                          <target>1.7</target>                                                          <target>1.7</target>
   
                                         <showDeprecation>true</showDeprecation>  
                                         <showWarnings>true</showWarnings>  
                                         <executable>/usr/lib/jvm/java-7-oracle/bin/javac</executable>  
                                         <fork>true</fork>  
337    
338                                          <excludes>                                                          <showDeprecation>true</showDeprecation>
339                                                  <exclude>**/.svn</exclude>                                                          <showWarnings>true</showWarnings>
340                                          </excludes>                                                          <executable>/usr/lib/jvm/java-7-oracle/bin/javac</executable>
341                                  </configuration>                                                          <fork>true</fork>
342                          </plugin>  
343                  </plugins>                                                          <excludes>
344                                                                    <exclude>**/.svn</exclude>
345                                                            </excludes>
346                                                    </configuration>
347                                            </plugin>
348                                    </plugins>
349    
350    
351  </build>                          </build>
352    
353  </profile>                  </profile>
354  </profiles>          </profiles>
355  </project>  </project>

Legend:
Removed from v.2243  
changed lines
  Added in v.2388

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26