File: Fix-beta-version-number-in-build.gradle.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 (28 lines) | stat: -rw-r--r-- 824 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
From: Ole Streicher <olebole@debian.org>
Date: Sat, 9 Dec 2023 09:00:27 +0100
Subject: Fix beta version number in build.gradle

---
 ADQLLib/build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ADQLLib/build.gradle b/ADQLLib/build.gradle
index bdfb249..f3a76a3 100644
--- a/ADQLLib/build.gradle
+++ b/ADQLLib/build.gradle
@@ -1,5 +1,5 @@
 // Describe the library:
-version = "2.0-beta"
+version = "2.0~beta"
 description = "Java library to parse, analyze and transform ADQL queries."
 
 // Name of the JAR name (which will be then suffixed by the version number):
@@ -11,7 +11,7 @@ distributions {
 }
 
 dependencies {
-    implementation 'postgresql:postgresql:9.1-901.jdbc4'
+    implementation 'org.postgresql:postgresql:9.1-901.jdbc4'
 }
 
 // Examples should not be included in any JAR: