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

Commit b247a60

Browse files
damonkohlerstonier
authored andcommitted
Upgrades Gradle Wrapper to 1.8.
1 parent 045d403 commit b247a60

File tree

4 files changed

+34
-34
lines changed

4 files changed

+34
-34
lines changed

build.gradle

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
task wrapper(type: Wrapper) {
18-
gradleVersion = '1.7'
18+
gradleVersion = '1.8'
1919
}
2020

2121
project.ext {
@@ -25,45 +25,45 @@ project.ext {
2525
}
2626

2727
allprojects {
28-
group='org.ros.rosjava_bootstrap'
29-
version = '0.1.7'
28+
group='org.ros.rosjava_bootstrap'
29+
version = '0.1.7'
3030
}
3131

3232
subprojects {
33-
/* Have to manually do this below since our gradle plugin is our sub project */
34-
apply plugin: 'java'
35-
apply plugin: 'maven'
36-
apply plugin: 'maven-publish'
33+
/* Have to manually do this below since our gradle plugin is our sub project */
34+
apply plugin: 'java'
35+
apply plugin: 'maven'
36+
apply plugin: 'maven-publish'
3737

38-
sourceCompatibility = 1.6
39-
targetCompatibility = 1.6
38+
sourceCompatibility = 1.6
39+
targetCompatibility = 1.6
4040

41-
def repoURLs = project.rosMavenPath.collect { 'file://' + it }
42-
repositories {
43-
repoURLs.each { p ->
44-
maven {
45-
url p
46-
}
41+
def repoURLs = project.rosMavenPath.collect { 'file://' + it }
42+
repositories {
43+
repoURLs.each { p ->
44+
maven {
45+
url p
46+
}
47+
}
48+
mavenLocal()
49+
maven {
50+
url 'https://github.com/rosjava/rosjava_mvn_repo/raw/master'
51+
}
52+
}
53+
if ( project.rosMavenDeploymentRepository != 'null' && project.rosMavenDeploymentRepository != '' ) {
54+
publishing {
55+
publications {
56+
mavenJava(MavenPublication) {
57+
from components.java
4758
}
48-
mavenLocal()
59+
}
60+
repositories {
4961
maven {
50-
url 'https://github.com/rosjava/rosjava_mvn_repo/raw/master'
51-
}
52-
}
53-
if ( project.rosMavenDeploymentRepository != 'null' && project.rosMavenDeploymentRepository != '' ) {
54-
publishing {
55-
publications {
56-
mavenJava(MavenPublication) {
57-
from components.java
58-
}
59-
}
60-
repositories {
61-
maven {
62-
url 'file://' + project.rosMavenDeploymentRepository
63-
}
64-
}
62+
url 'file://' + project.rosMavenDeploymentRepository
6563
}
64+
}
6665
}
66+
}
6767
}
6868

6969
defaultTasks 'install'

gradle/wrapper/gradle-wrapper.jar

-4 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Sep 16 09:48:40 KST 2013
1+
#Fri Oct 18 14:47:55 CEST 2013
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=http\://services.gradle.org/distributions/gradle-1.7-bin.zip
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-1.8-bin.zip

gradle_plugins/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ apply plugin: 'groovy'
1818

1919
dependencies {
2020
compile gradleApi()
21-
groovy localGroovy()
21+
compile localGroovy()
2222
}

0 commit comments

Comments
 (0)