Skip to content

Commit

Permalink
Set project name rather than archivesBaseName
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
BorePlusPlus committed Oct 7, 2012
1 parent 99dcf50 commit cb3d218
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ apply plugin: 'eclipse' // Only used so the Eclipse STS Gradle plugin can see
defaultTasks 'build'

group = 'com.googlecode.disruptor'
archivesBaseName = 'disruptor'
version = new Version(major: 3)

ext {
Expand Down
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rootProject.name = 'disruptor'

0 comments on commit cb3d218

Please sign in to comment.