This repository was archived by the owner on Jan 14, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +34
-34
lines changed Expand file tree Collapse file tree 4 files changed +34
-34
lines changed Original file line number Diff line number Diff line change 15
15
*/
16
16
17
17
task wrapper (type : Wrapper ) {
18
- gradleVersion = ' 1.7 '
18
+ gradleVersion = ' 1.8 '
19
19
}
20
20
21
21
project. ext {
@@ -25,45 +25,45 @@ project.ext {
25
25
}
26
26
27
27
allprojects {
28
- group= ' org.ros.rosjava_bootstrap'
29
- version = ' 0.1.7'
28
+ group= ' org.ros.rosjava_bootstrap'
29
+ version = ' 0.1.7'
30
30
}
31
31
32
32
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'
37
37
38
- sourceCompatibility = 1.6
39
- targetCompatibility = 1.6
38
+ sourceCompatibility = 1.6
39
+ targetCompatibility = 1.6
40
40
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
47
58
}
48
- mavenLocal()
59
+ }
60
+ repositories {
49
61
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
65
63
}
64
+ }
66
65
}
66
+ }
67
67
}
68
68
69
69
defaultTasks ' install'
Original file line number Diff line number Diff line change 1
- # Mon Sep 16 09:48:40 KST 2013
1
+ # Fri Oct 18 14:47:55 CEST 2013
2
2
distributionBase =GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
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
Original file line number Diff line number Diff line change @@ -18,5 +18,5 @@ apply plugin: 'groovy'
18
18
19
19
dependencies {
20
20
compile gradleApi()
21
- groovy localGroovy()
21
+ compile localGroovy()
22
22
}
You can’t perform that action at this time.
0 commit comments