summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkaixiliu <liukaixi@chinamobile.com>2024-06-20 11:03:47 +0800
committerkaixiliu <liukaixi@chinamobile.com>2024-06-20 11:04:05 +0800
commite17713f89b0818b8f34ad324f6b318e22b6a3642 (patch)
tree96380004d203126e28eb4c9127531e2a4d58e517
parenta20e3aee6d851990472c36006512be5036021242 (diff)
modify pom.xml
Issue-ID: USECASEUI-838 Change-Id: Ifedd555bb1de729e1fc1e87286abe0e4ab7c3362 Signed-off-by: kaixiliu <liukaixi@chinamobile.com>
-rw-r--r--llm-adaptation/pom.xml7
-rw-r--r--pom.xml2
-rw-r--r--standalone/pom.xml10
-rw-r--r--version.properties13
4 files changed, 24 insertions, 8 deletions
diff --git a/llm-adaptation/pom.xml b/llm-adaptation/pom.xml
index 00afa7c..7081c0d 100644
--- a/llm-adaptation/pom.xml
+++ b/llm-adaptation/pom.xml
@@ -6,12 +6,13 @@
<parent>
<groupId>org.onap.usecase-ui.llm-adaptation</groupId>
<artifactId>usecase-ui-llm-adaptation-parent</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>14.0.0-SNAPSHOT</version>
</parent>
- <groupId>org.onap.usecase-ui.llm-adaptation</groupId>
<artifactId>usecase-ui-llm-adaptation</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>14.0.0-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <name>usecase-ui-llm-adaptation</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
diff --git a/pom.xml b/pom.xml
index f1ef7f2..d7219bb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,7 @@
</parent>
<groupId>org.onap.usecase-ui.llm-adaptation</groupId>
<artifactId>usecase-ui-llm-adaptation-parent</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>14.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>llm-adaptation</module>
diff --git a/standalone/pom.xml b/standalone/pom.xml
index 0aae140..5094d67 100644
--- a/standalone/pom.xml
+++ b/standalone/pom.xml
@@ -6,14 +6,16 @@
<parent>
<groupId>org.onap.usecase-ui.llm-adaptation</groupId>
<artifactId>usecase-ui-llm-adaptation-parent</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>14.0.0-SNAPSHOT</version>
</parent>
- <artifactId>standalone</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <artifactId>usecase-ui-llm-adapatation-standalone</artifactId>
+ <packaging>pom</packaging>
+ <name>usecase-ui-llm-adapatation-standalone</name>
+ <version>14.0.0-SNAPSHOT</version>
<properties>
- <adaptation.version>1.0</adaptation.version>
+ <adaptation.version>14.0.0</adaptation.version>
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
diff --git a/version.properties b/version.properties
new file mode 100644
index 0000000..9767cca
--- /dev/null
+++ b/version.properties
@@ -0,0 +1,13 @@
+# Versioning variables
+# Note that these variables cannot be structured (e.g. : version.release or version.snapshot etc... )
+# because they are used in Jenkins, whose plug-in doesn't support
+
+major=14
+minor=0
+patch=0
+
+base_version=${major}.${minor}.${patch}
+
+# Release must be completed with git revision # in Jenkins
+release_version=${base_version}
+snapshot_version=${base_version}-SNAPSHOT