Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specified the Java source and target versions as 1.5. #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 25 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ THE SOFTWARE.
<version>3.0.6-SNAPSHOT</version>
<name>Hudson Maven3 Plugin Parent</name>
<packaging>pom</packaging>

<properties>
<hudson.remoting.version>3.0.2</hudson.remoting.version>
<hudson.rest.version>2.2.2</hudson.rest.version>
Expand All @@ -46,7 +46,7 @@ THE SOFTWARE.
<enunciate.version>1.26.2</enunciate.version>
<plexus-component-annotations.version>1.5.5</plexus-component-annotations.version>
</properties>

<scm>
<connection>scm:git:git://github.com/hudson3-plugins/maven3-support.git</connection>
<developerConnection>scm:git:[email protected]:hudson3-plugins/maven3-support.git</developerConnection>
Expand All @@ -62,29 +62,29 @@ THE SOFTWARE.
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.hudsonci.plugins</groupId>
<artifactId>rest-plugin-parent</artifactId>
<type>pom</type>
<version>${hudson.rest.version}</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.hudsonci.libs</groupId>
<artifactId>hudson-gwt-parent</artifactId>
<type>pom</type>
<version>${hudson.gwt.version}</version>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.hudsonci.plugins</groupId>
<artifactId>rest-plugin</artifactId>
<version>${hudson.rest.version}</version>
</dependency>

<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-annotations</artifactId>
Expand All @@ -104,7 +104,7 @@ THE SOFTWARE.
<artifactId>maven3-model</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.hudsonci.plugins</groupId>
<artifactId>maven3-model</artifactId>
Expand Down Expand Up @@ -171,4 +171,22 @@ THE SOFTWARE.
<module>maven3-snapshots</module>
</modules>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<!-- Strictly speaking, the following two parameters
do not make the artifacts completely compatible with
Java 5 unless a boot class path is also specified. -->
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>

</project>