/[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 2229 by mojays, Thu Feb 14 17:36:17 2013 UTC revision 2334 by mojays, Sat Jun 8 13:51: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>
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>                  </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>                          </plugin>
142    
143                          <plugin>                          <plugin>
144                                  <groupId>org.apache.maven.plugins</groupId>                                  <groupId>org.apache.maven.plugins</groupId>
145                                  <artifactId>maven-compiler-plugin</artifactId>                                  <artifactId>maven-source-plugin</artifactId>
146                                  <version>2.5.1</version>                                  <executions>
147                                  <configuration>                                          <execution>
148  <!--                                                  <id>attach-sources</id>
149                                                    <goals>
150                                          <source>1.6</source>                                                          <goal>test-jar</goal>
151                                          <target>1.6</target>-->                                                          <goal>jar</goal>
152                                          <excludes>                                                  </goals>
153                                                  <exclude>**/.svn</exclude>                                          </execution>
154                                          </excludes>                                  </executions>
                                 </configuration>  
155                          </plugin>                          </plugin>
156    
157                          <plugin>                          <plugin>
# Line 199  Line 205 
205                                  </executions>                                  </executions>
206                          </plugin>                          </plugin>
207    
208                            <plugin>
209                                    <groupId>org.apache.maven.plugins</groupId>
210                                    <artifactId>maven-compiler-plugin</artifactId>
211                                    <version>3.0</version>
212                                    <configuration>
213                                            <source>1.7</source>
214                                            <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>
222                                                    <exclude>**/.svn</exclude>
223                                            </excludes>
224                                    </configuration>
225                            </plugin>
226                  </plugins>                  </plugins>
227                  <pluginManagement>                  <pluginManagement>
228                          <plugins>                          <plugins>
# Line 236  Line 260 
260                                  </plugin>                                  </plugin>
261                          </plugins>                          </plugins>
262                  </pluginManagement>                  </pluginManagement>
263    
264    
265    
266    
267    
268    
269    
270          </build>          </build>
271    
272    
# Line 279  Line 310 
310    
311          </distributionManagement>          </distributionManagement>
312    
   
313          <profiles>          <profiles>
314            <profile>                  <profile>
315              <id>ms_kallisto</id>                          <id>tweakJdk7Path</id>
316              <build>  
317                  <plugins>                          <build>
318                      <plugin>                                  <plugins>
319                          <groupId>org.apache.maven.plugins</groupId>  
320                          <artifactId>maven-compiler-plugin</artifactId>                                          <plugin>
321                          <version>2.5.1</version>                                                  <groupId>org.apache.maven.plugins</groupId>
322                          <configuration>                                                  <artifactId>maven-compiler-plugin</artifactId>
323                              <source>1.7</source>                                                  <version>3.0</version>
324                              <target>1.7</target>                                                  <configuration>
325                              <showDeprecation>true</showDeprecation>                                                          <source>1.7</source>
326                              <showWarnings>true</showWarnings>                                                          <target>1.7</target>
327                              <executable>${env.JAVA_HOME}/bin/javac</executable>  
328                              <fork>true</fork>                                                          <showDeprecation>true</showDeprecation>
329                          </configuration>                                                          <showWarnings>true</showWarnings>
330                      </plugin>                                                          <executable>/usr/lib/jvm/java-7-oracle/bin/javac</executable>
331                  </plugins>                                                          <fork>true</fork>
332              </build>  
333            </profile>                                                          <excludes>
334          </profiles>                                                                  <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.2229  
changed lines
  Added in v.2334

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26