[Git][java-team/asm][master] Use --source/--target 8
Emmanuel Bourg (@ebourg)
gitlab at salsa.debian.org
Mon Sep 23 08:31:19 BST 2024
Emmanuel Bourg pushed to branch master at Debian Java Maintainers / asm
Commits:
56933105 by Vladimir Petko at 2024-09-23T07:31:18+00:00
Use --source/--target 8
- - - - -
2 changed files:
- debian/changelog
- debian/patches/11-gradle-compatibility.patch
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+asm (9.7-2) UNRELEASED; urgency=medium
+
+ * d/patches/11-gradle-compatibility.patch: use --source/--target
+ compatibility level 8 (Closes: #1082600).
+
+ -- Vladimir Petko <vladimir.petko at canonical.com> Mon, 23 Sep 2024 10:30:12 +1200
+
asm (9.7-1) unstable; urgency=medium
* New upstream release
=====================================
debian/patches/11-gradle-compatibility.patch
=====================================
@@ -8,9 +8,11 @@ Forwarded: not-needed
apply plugin: 'java-library'
apply plugin: 'jacoco'
- java {
- sourceCompatibility = '11'
- targetCompatibility = '11'
+- sourceCompatibility = '11'
+- targetCompatibility = '11'
- }
++ sourceCompatibility = '8'
++ targetCompatibility = '8'
ext.provides = [] // The provided java packages, e.g. ['org.objectweb.asm']
ext.requires = [] // The required Gradle projects, e.g. [':asm-test']
ext.transitiveRequires = { ->
@@ -19,9 +21,11 @@ Forwarded: not-needed
project(':tools:retrofitter') {
description = "JDK 1.5 class retrofitter based on ${rootProject.description}"
- java {
- sourceCompatibility = '11'
- targetCompatibility = '11'
+- sourceCompatibility = '11'
+- targetCompatibility = '11'
- }
++ sourceCompatibility = '8'
++ targetCompatibility = '8'
// TODO: this compiles asm twice (here and in :asm).
sourceSets.main.java.srcDirs += project(':asm').sourceSets.main.java.srcDirs
}
View it on GitLab: https://salsa.debian.org/java-team/asm/-/commit/569331055131d3282222f01293cd11b5a4184337
--
View it on GitLab: https://salsa.debian.org/java-team/asm/-/commit/569331055131d3282222f01293cd11b5a4184337
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20240923/20633328/attachment.htm>
More information about the pkg-java-commits
mailing list