Moved from `maven-portal-bom` to `gcube-bom`
This commit is contained in:
parent
83041827c4
commit
ccce7944ee
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -3,19 +3,17 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||
# Changelog for "oidc-library"
|
||||
|
||||
## [v1.3.2]
|
||||
Token exchange (#27099)
|
||||
Header X-D4Science-Context in query exchange and refresh
|
||||
|
||||
- performQueryTokenWithPOST accepts also optional headers
|
||||
- performURLEncodedPOSTSendData accepts also optional headers
|
||||
- implemented queryExchangeToken
|
||||
|
||||
- Header X-D4Science-Context in query exchange and refresh
|
||||
- Token exchange (#27099)
|
||||
- PerformQueryTokenWithPOST accepts also optional headers
|
||||
- PerformURLEncodedPOSTSendData accepts also optional headers
|
||||
- Moved from `maven-portal-bom` to `gcube-bom`
|
||||
|
||||
## [v1.3.1]
|
||||
Added `Catalogue-Manager` and `Catalogue-Moderator` roles to the enum (#23623)
|
||||
- Added `Catalogue-Manager` and `Catalogue-Moderator` roles to the enum (#23623)
|
||||
|
||||
## [v1.3.0]
|
||||
Added method to retrieve UMA token by using `clientId` and `clientSecret` in a specific `audience` (aka context) that can now be provided in both encoded and not encoded form (starts with "/" check is performed).
|
||||
- Added method to retrieve UMA token by using `clientId` and `clientSecret` in a specific `audience` (aka context) that can now be provided in both encoded and not encoded form (starts with "/" check is performed).
|
||||
|
||||
## [v1.2.1]
|
||||
- "Data-Editor" role added (#20896), some logs changed to debug level
|
||||
|
|
14
pom.xml
14
pom.xml
|
@ -19,8 +19,8 @@
|
|||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.gcube.distribution</groupId>
|
||||
<artifactId>maven-portal-bom</artifactId>
|
||||
<version>3.7.0</version>
|
||||
<artifactId>gcube-bom</artifactId>
|
||||
<version>2.4.0</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
@ -33,6 +33,14 @@
|
|||
<url>https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
<java.version>8</java.version>
|
||||
<maven.compiler.source>${java.version}</maven.compiler.source>
|
||||
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||||
<slf4j-log4j12.version>1.6.4</slf4j-log4j12.version>
|
||||
<log4j.version>1.2.16</log4j.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
|
@ -48,12 +56,14 @@
|
|||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-log4j12</artifactId>
|
||||
<version>${slf4j-log4j12.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>log4j</groupId>
|
||||
<artifactId>log4j</artifactId>
|
||||
<version>${log4j.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
|
|
Loading…
Reference in New Issue