Fixing pom warnings during maven build
This commit is contained in:
parent
b439c6100e
commit
35c8c79138
9
pom.xml
9
pom.xml
@ -37,6 +37,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>3.1</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>1.7</source>
|
<source>1.7</source>
|
||||||
<target>1.7</target>
|
<target>1.7</target>
|
||||||
@ -46,15 +47,15 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-war-plugin</artifactId>
|
<artifactId>maven-war-plugin</artifactId>
|
||||||
|
<version>2.4</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<!-- archiving the classes breaks the admin screen loads in course.java
|
<!-- archiving the classes breaks the admin screen loads in course.java
|
||||||
the legacy lesson loader does not look in jar files for lessons -->
|
the legacy lesson loader does not look in jar files for lessons -->
|
||||||
<archiveClasses>false</archiveClasses>
|
<archiveClasses>false</archiveClasses>
|
||||||
|
<archive>
|
||||||
<manifest>
|
<manifest>
|
||||||
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
||||||
</manifest>
|
</manifest>
|
||||||
<archive>
|
|
||||||
<manifestEntries>
|
<manifestEntries>
|
||||||
<Specification-Title>${project.name}</Specification-Title>
|
<Specification-Title>${project.name}</Specification-Title>
|
||||||
<Specification-Version>${project.version}</Specification-Version>
|
<Specification-Version>${project.version}</Specification-Version>
|
||||||
@ -66,6 +67,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>2.5</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>create-jar</id>
|
<id>create-jar</id>
|
||||||
@ -354,8 +356,9 @@
|
|||||||
<version>1.7.7</version>
|
<version>1.7.7</version>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
|
||||||
<!-- ************* END spring MVC and related dependencies ************** -->
|
<!-- ************* END spring MVC and related dependencies ************** -->
|
||||||
|
|
||||||
</dependencies>
|
|
||||||
</project>
|
</project>
|
Loading…
x
Reference in New Issue
Block a user