Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
gradle
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
gradle
Commits
6e9fe9e5
Commit
6e9fe9e5
authored
7 years ago
by
Emmanuel Bourg
Browse files
Options
Downloads
Patches
Plain Diff
Fixed the build failure with Ant 1.10 (Closes: #894641)
parent
b06af42d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1
WIP: Update to 4.4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
debian/changelog
+1
-0
1 addition, 0 deletions
debian/changelog
debian/patches/series
+1
-0
1 addition, 0 deletions
debian/patches/series
debian/patches/source-level.patch
+14
-0
14 additions, 0 deletions
debian/patches/source-level.patch
with
16 additions
and
0 deletions
debian/changelog
+
1
−
0
View file @
6e9fe9e5
...
...
@@ -2,6 +2,7 @@ gradle (3.4.1-5) UNRELEASED; urgency=medium
* Team upload.
* Backported a fix to support the javac --module-source-path option
* Fixed the build failure with Ant 1.10 (Closes: #894641)
-- Emmanuel Bourg <ebourg@apache.org> Wed, 04 Apr 2018 13:34:54 +0200
...
...
This diff is collapsed.
Click to expand it.
debian/patches/series
+
1
−
0
View file @
6e9fe9e5
...
...
@@ -28,3 +28,4 @@ support-running-gradle-on-jdk-10-500485df3a18.patch
add-test-case-for-10-internal_c1fe5e40a76b.patch
support-zulu9-version-number_d9c35cf9d74c.patch
disallow-both-module-source-path-and-source-path.patch
source-level.patch
This diff is collapsed.
Click to expand it.
debian/patches/source-level.patch
0 → 100644
+
14
−
0
View file @
6e9fe9e5
Description: Set the language level to 1.8 to fix the build failure with Ant 1.10
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/subprojects/core/core.gradle
+++ b/subprojects/core/core.gradle
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-sourceCompatibility = javaVersion.java9Compatible ? 1.6 : 1.5
+sourceCompatibility = 1.8
configurations {
reports
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