Improve pom.xml.
Added Maven compiler plugin to fix it to version 2.4. Added project name and description.
This commit is contained in:
12
pom.xml
12
pom.xml
@@ -6,6 +6,9 @@
|
||||
<artifactId>spring-data-envers</artifactId>
|
||||
<version>0.1.0.BUILD-SNAPSHOT</version>
|
||||
|
||||
<name>Spring Data Envers</name>
|
||||
<description>Envers integration for Spring Data</description>
|
||||
|
||||
<properties>
|
||||
<spring.version>3.1.1.RELEASE</spring.version>
|
||||
<spring.data.jpa.version>1.1.0.RELEASE</spring.data.jpa.version>
|
||||
@@ -127,6 +130,15 @@
|
||||
<junitArtifactName>junit:junit-dep</junitArtifactName>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>2.4</version>
|
||||
<configuration>
|
||||
<source>1.6</source>
|
||||
<target>1.6</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user