Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libgpars-groovy-java
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Java Maintainers
libgpars-groovy-java
Commits
9a109fde
Unverified
Commit
9a109fde
authored
8 years ago
by
Kai-Chung Yan (Deprecated)
Browse files
Options
Downloads
Patches
Plain Diff
New transition_Gradle_3.1.patch for transition to Gradle 3.1
parent
897279bb
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
debian/patches/series
+1
-0
1 addition, 0 deletions
debian/patches/series
debian/patches/transition_Gradle_3.1.patch
+19
-0
19 additions, 0 deletions
debian/patches/transition_Gradle_3.1.patch
with
20 additions
and
0 deletions
debian/patches/series
+
1
−
0
View file @
9a109fde
...
...
@@ -2,3 +2,4 @@ fix_gradle_build.diff
add_compatibility_with_gradle_2.5.diff
reproducible-documentation.patch
groovy-classpath.patch
transition_Gradle_3.1.patch
This diff is collapsed.
Click to expand it.
debian/patches/transition_Gradle_3.1.patch
0 → 100644
+
19
−
0
View file @
9a109fde
Description: Transtion to Gradle 3.1
This patch makes the build scripts compatible with Gradle 3.1
Author: Kai-Chung Yan (殷啟聰)
Last-Update: 2016-11-02
--- a/build.gradle
+++ b/build.gradle
@@ -293,7 +293,11 @@
header = packageTitle
footer = copyrightString
include 'groovyx/gpars/**'
- overview = new File('overview.html')
+ if (gradle.gradleVersion.startsWith('2.')) {
+ overview = new File('overview.html')
+ } else {
+ overviewText = resources.text.fromFile('overview.html')
+ }
groovyClasspath = files('/usr/share/java/groovy-all.jar')
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment