Skip to content

Commit

Permalink
Merge pull request #93 from sghill/4.8-compat
Browse files Browse the repository at this point in the history
Do Not Reference Subproject Variable in Root
  • Loading branch information
rspieldenner committed May 3, 2018
2 parents ee76412 + 9f985bd commit 1fd33d4
Showing 1 changed file with 6 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,6 @@ class GradleDependencyGenerator {
}
}
}
publications {
maven(MavenPublication) {
artifactId artifactName
from components.java
}
ivy(IvyPublication) {
module artifactName
from components.java
}
}
}
}
'''.stripIndent()
Expand Down Expand Up @@ -159,7 +147,13 @@ class GradleDependencyGenerator {
}
publishing {
publications {
maven(MavenPublication) {
artifactId artifactName
from components.java
}
ivy(IvyPublication) {
module artifactName
from components.java
descriptor.status = '${node.status}'
}
}
Expand Down

0 comments on commit 1fd33d4

Please sign in to comment.