File: Use-baseName-instead-of-distributionBasename.patch

package info (click to toggle)
adql 2.0~beta%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,560 kB
  • sloc: java: 21,916; sh: 132; makefile: 17
file content (22 lines) | stat: -rw-r--r-- 641 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Ole Streicher <olebole@debian.org>
Date: Fri, 8 Dec 2023 15:32:00 +0100
Subject: Use baseName instead of distributionBasename

gradle-4.4 doesn't know about the latter
---
 ADQLLib/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ADQLLib/build.gradle b/ADQLLib/build.gradle
index 574bff0..bdfb249 100644
--- a/ADQLLib/build.gradle
+++ b/ADQLLib/build.gradle
@@ -6,7 +6,7 @@ description = "Java library to parse, analyze and transform ADQL queries."
 archivesBaseName = "adql"
 distributions {
     main {
-        distributionBaseName = archivesBaseName
+        baseName = archivesBaseName
     }
 }