Created version 2.4.1
This commit is contained in:
parent
9f0da45dcd
commit
c3c711061a
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -2,6 +2,18 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||
|
||||
# Changelog for gCube Bom
|
||||
|
||||
## [v2.4.1-SNAPSHOT]
|
||||
|
||||
- Enhanced common-authorization lower bound of range
|
||||
- Enhanced authorization-client lower bound of range
|
||||
- Enhanced keycloak-client lower bound of range
|
||||
- Enhanced gxHTTP lower bound of range
|
||||
- Enhanced gxJRS lower bound of range
|
||||
- Enhanced storagehub-model range
|
||||
- Enhanced storagehub-client-library range
|
||||
- Added document-store-lib-accounting-service
|
||||
|
||||
|
||||
## [v2.4.0]
|
||||
|
||||
- Enhanced information-system-model version range
|
||||
|
|
33
pom.xml
33
pom.xml
|
@ -9,7 +9,7 @@
|
|||
</parent>
|
||||
<groupId>org.gcube.distribution</groupId>
|
||||
<artifactId>gcube-bom</artifactId>
|
||||
<version>2.4.0</version>
|
||||
<version>2.4.1-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>gCube BOM</name>
|
||||
<description>gCube Bom contains commons gCube library versions to avoid version conflicts among gCube components</description>
|
||||
|
@ -23,9 +23,9 @@
|
|||
</properties>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</connection>
|
||||
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</developerConnection>
|
||||
<url>https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
|
||||
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/gcube-bom-legacy.git</connection>
|
||||
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/gcube-bom-legacy.git</developerConnection>
|
||||
<url>https://code-repo.d4science.org/gCubeSystem/gcube-bom-legacy</url>
|
||||
</scm>
|
||||
|
||||
<dependencyManagement>
|
||||
|
@ -124,12 +124,12 @@
|
|||
<dependency>
|
||||
<groupId>org.gcube.common</groupId>
|
||||
<artifactId>storagehub-model</artifactId>
|
||||
<version>[1.1.1, 2.0.0-SNAPSHOT)</version>
|
||||
<version>[2.0.0-SNAPSHOT, 3.0.0-SNAPSHOT)</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.gcube.common</groupId>
|
||||
<artifactId>storagehub-client-library</artifactId>
|
||||
<version>[1.3.0, 2.0.0-SNAPSHOT)</version>
|
||||
<version>[2.0.0-SNAPSHOT, 3.0.0-SNAPSHOT)</version>
|
||||
</dependency>
|
||||
<!-- END Storagehub dependencies -->
|
||||
|
||||
|
@ -209,13 +209,15 @@
|
|||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.gcube.common</groupId>
|
||||
<artifactId>gxJRS</artifactId>
|
||||
<version>[1.1.2, 2.0.0-SNAPSHOT)</version>
|
||||
<artifactId>gxHTTP</artifactId>
|
||||
<version>[1.2.0, 2.0.0-SNAPSHOT)</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.gcube.common</groupId>
|
||||
<artifactId>gxHTTP</artifactId>
|
||||
<version>[1.1.2, 2.0.0-SNAPSHOT)</version>
|
||||
<artifactId>gxJRS</artifactId>
|
||||
<version>[1.2.0, 2.0.0-SNAPSHOT)</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<!-- END Clients Related Dependencies -->
|
||||
|
||||
|
@ -223,17 +225,17 @@
|
|||
<dependency>
|
||||
<groupId>org.gcube.common</groupId>
|
||||
<artifactId>authorization-client</artifactId>
|
||||
<version>[2.0.4,3.0.0-SNAPSHOT)</version>
|
||||
<version>[2.0.7,3.0.0-SNAPSHOT)</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.gcube.common</groupId>
|
||||
<artifactId>common-authorization</artifactId>
|
||||
<version>[2.2.0,3.0.0-SNAPSHOT)</version>
|
||||
<version>[2.5.1,3.0.0-SNAPSHOT)</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.gcube.common</groupId>
|
||||
<artifactId>keycloak-client</artifactId>
|
||||
<version>[2.0.0,3.0.0-SNAPSHOT)</version>
|
||||
<version>[2.1.0,3.0.0-SNAPSHOT)</version>
|
||||
</dependency>
|
||||
<!-- END Authorization Related Dependencies -->
|
||||
|
||||
|
@ -243,6 +245,11 @@
|
|||
<artifactId>document-store-lib</artifactId>
|
||||
<version>[3.0.0,4.0.0-SNAPSHOT)</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.gcube.data.publishing</groupId>
|
||||
<artifactId>document-store-lib-accounting-service</artifactId>
|
||||
<version>[2.0.0,3.0.0-SNAPSHOT)</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.gcube.accounting</groupId>
|
||||
<artifactId>accounting-lib</artifactId>
|
||||
|
|
Loading…
Reference in New Issue