Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #55 from lanwen/webhooks
fix for build and run with jdk8 (JENKINS-18537)
  • Loading branch information
KostyaSha committed Jun 16, 2015
2 parents e5e5674 + 5287c6c commit 518aecc
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions pom.xml
Expand Up @@ -3,7 +3,8 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.532</version>
<!--JENKINS-18537-->
<version>1.554.1</version>
</parent>

<groupId>com.coravy.hudson.plugins.github</groupId>
Expand Down Expand Up @@ -105,13 +106,20 @@
</pluginRepository>
</pluginRepositories>

<properties>
<maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
<maven-release-plugin.version>2.5.1</maven-release-plugin.version>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 518aecc

Please sign in to comment.