Skip to content
This repository was archived by the owner on Jan 14, 2023. It is now read-only.

Commit cddf482

Browse files
committed
source compatibility for java 1.6 -> 1.7
1 parent 2db5bd1 commit cddf482

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gradle_plugins/src/main/groovy/org/ros/gradle_plugins/RosJavaPlugin.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ class RosJavaPlugin implements Plugin<Project> {
2424
project.apply(plugin: 'maven-publish')
2525
}
2626

27-
project.sourceCompatibility = 1.6
28-
project.targetCompatibility = 1.6
27+
project.sourceCompatibility = 1.7
28+
project.targetCompatibility = 1.7
2929

3030
if ( project.ros.mavenDeploymentRepository != 'null' && project.ros.mavenDeploymentRepository != '' ) {
3131
project.publishing {

0 commit comments

Comments
 (0)