-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated one of the demos to use the "plugin id" approach and now runs…
… the demos as part of the build.
- Loading branch information
Showing
7 changed files
with
95 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# RELEASE NOTES | ||
|
||
- 1.8 | ||
|
||
- Enabled use of the newer gradle "plugin id" syntax | ||
|
||
- 1.7.0 | ||
|
||
- Upgrade to gradle 7 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
1. First do a `gradle install` of the main project to put the plugin jar into the local maven repo. | ||
1. First do a `.\gradlew publishToMavenLocal` of the main project to put the plugin jar into the local maven repo. | ||
|
||
2. Then run `gradle build` here. | ||
2. Then run `..\..\gradlew clean build -i` here. | ||
|
||
The build should fail due to duplicate licence files and manifests only, as the build.gradle suppresses checks on classes and directories. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
1. First do a `.\gradlew publishToMavenLocal` of the main project to put the plugin jar into the local maven repo. | ||
|
||
2. Then run `..\..\gradlew clean build -i` here. | ||
|
||
The build should pass. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
rootProject.name = 'classpathHell-sample' | ||
pluginManagement { | ||
repositories { | ||
mavenLocal() // allows picking local maven versions of classpath-hell | ||
gradlePluginPortal() | ||
} | ||
} | ||
|
||
rootProject.name = 'classpathHell-sample' |