Skip to content

Commit 997c37c

Browse files
committed
Set archives base name for submodules
1 parent ffcd359 commit 997c37c

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

consume/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ apply plugin: 'java'
33

44
defaultTasks 'build'
55

6+
archivesBaseName = "${project.projectName}-${project.name}"
7+
68
repositories {
79
mavenCentral()
810
maven {

demo/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ defaultTasks 'build'
66

77
mainClassName = "fj.demo.euler.Problem2"
88

9+
archivesBaseName = "${project.projectName}-${project.name}"
10+
911
repositories {
1012
mavenCentral()
1113
}

tests/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
// Apply the scala plugin to add support for Scala
1111
apply plugin: 'scala'
1212

13+
archivesBaseName = "${project.projectName}-${project.name}"
1314

1415
ext {
1516
scalaVersion = "2.10.3"

0 commit comments

Comments
 (0)