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:
|