Skip to content

Commit

Permalink
GEODE-6382: Remove now-trivial utility.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
PurelyApplied authored and robbadler committed Feb 11, 2019
1 parent 127cf7b commit 964b6f4
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 43 deletions.
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ apply from: "${scriptDir}/geode-dependency-management.gradle"
// Those subprojects that are properly managed by Spring will apply this plugin explicitly.
versionManagement.applySpringDependencyManagement = false

// utilities.gradle MUST be read before publish.gradle for reasons
apply from: "${scriptDir}/utilities.gradle"
apply from: "${scriptDir}/java.gradle"
apply from: "${scriptDir}/ide.gradle"
apply from: "${scriptDir}/dependency-resolution.gradle"
Expand Down
3 changes: 0 additions & 3 deletions gradle/ide.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ subprojects {
}
}
}
project {
name = sanitizedName()
}
// Several files have UTF-8 encoding and Eclipse running on Windows
// will have trouble unless we tell it to use UTF-8 encoding.
// This setting needs to go into the core.resources.prefs file,
Expand Down
2 changes: 1 addition & 1 deletion gradle/java.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ subprojects {
// be created as libs/foo-sources.jar instead of libs/extensions/foo-sources.jar for example.
tasks.all { task ->
if (task instanceof Jar) {
baseName = sanitizedName()
baseName = project.name
}
}

Expand Down
37 changes: 0 additions & 37 deletions gradle/utilities.gradle

This file was deleted.

0 comments on commit 964b6f4

Please sign in to comment.