Skip to content
Snippets Groups Projects
Unverified Commit 6dfc703b authored by Juan Ignacio Ubeira's avatar Juan Ignacio Ubeira Committed by GitHub
Browse files

Merge pull request #15 from jubeira/gradle_3-5-1

Gradle update: 3.5.1
parents bdb24da5 11f4f665
Branches
Tags
No related merge requests found
No preview for this file type
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
*/ */
task wrapper(type: Wrapper) { task wrapper(type: Wrapper) {
gradleVersion = '2.14.1' gradleVersion = '3.5.1'
} }
buildscript { buildscript {
...@@ -67,7 +67,8 @@ jar { ...@@ -67,7 +67,8 @@ jar {
} }
} }
task info << { task info {
doLast {
println "\nProject Info" println "\nProject Info"
println "============\n" println "============\n"
println "Name : ${rootProject}" println "Name : ${rootProject}"
...@@ -89,6 +90,7 @@ task info << { ...@@ -89,6 +90,7 @@ task info << {
println "Files : ${it}" println "Files : ${it}"
} }
} }
}
/* Damon's message generator doesn't catch every message. It expects everything to be nicely under 'msg' /* Damon's message generator doesn't catch every message. It expects everything to be nicely under 'msg'
* and that directory to be under the package root. It also expects every msg it finds should be buildable. * and that directory to be under the package root. It also expects every msg it finds should be buildable.
...@@ -98,9 +100,11 @@ task info << { ...@@ -98,9 +100,11 @@ task info << {
* Until we get this properly fixed (it fails in genjava), then we use the following bugfix to deal with the * Until we get this properly fixed (it fails in genjava), then we use the following bugfix to deal with the
* 'Could not copy MANIFEST.MF...' error that occurs when no sources are to be made for an artifact. * 'Could not copy MANIFEST.MF...' error that occurs when no sources are to be made for an artifact.
*/ */
task bugfixtask << { task bugfixtask {
doLast {
mkdir sourceSets.main.output.classesDir mkdir sourceSets.main.output.classesDir
} }
}
jar.dependsOn(bugfixtask) jar.dependsOn(bugfixtask)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment