Skip to content

Commit

Permalink
Add java source version configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
gschueler committed Jan 27, 2012
1 parent 7320c2e commit 61897f2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
9 changes: 9 additions & 0 deletions rundeck-launcher/launcher/build.gradle
Expand Up @@ -109,6 +109,15 @@ task createPom << {
}
build {
plugins{
plugin{
groupId 'org.apache.maven.plugins'
artifactId 'maven-compiler-plugin'
version '2.3.2'
configuration{
'source'('1.5')
'target'('1.5')
}
}
plugin{
groupId 'org.apache.maven.plugins'
artifactId 'maven-assembly-plugin'
Expand Down
8 changes: 8 additions & 0 deletions rundeck-launcher/launcher/pom.xml
Expand Up @@ -17,6 +17,14 @@
</licenses>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.2</version>
Expand Down

0 comments on commit 61897f2

Please sign in to comment.