Details
-
Type:
Improvement
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: deb
-
Labels:None
-
Environment:Java 1.6, Debian Etch/2.6.21
-
Complexity:Intermediate
-
Number of attachments :
Description
Checking out deb-maven-plugin from SVN did not compile. Adding this to the project pom resolved the issues:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>