Skip to content

Commit cb3d218

Browse files
committed
Set project name rather than archivesBaseName
Project name is a read only property in build.gradle, but it can be set in settings.gradle. This makes things more uniform and deterministic. Project now has the same name no matter which directory you check it out to. It also helps with Intellij IDEA not creating additional modules and subsequently having conflicts between them.
1 parent 99dcf50 commit cb3d218

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ apply plugin: 'eclipse' // Only used so the Eclipse STS Gradle plugin can see
77
defaultTasks 'build'
88

99
group = 'com.googlecode.disruptor'
10-
archivesBaseName = 'disruptor'
1110
version = new Version(major: 3)
1211

1312
ext {

settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'disruptor'

0 commit comments

Comments
 (0)