Added IAM and event to orchestrator libs

This commit is contained in:
Massimiliano Assante 2021-05-20 08:45:38 +02:00
parent 024b53f915
commit 0894964f03
2 changed files with 32 additions and 4 deletions

View File

@ -4,6 +4,9 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [v3.6.2-SNAPSHOT] - 2021-05-20
Added IAM and event to orchestrator libs
## [v3.6.1] - 2021-03-25 ## [v3.6.1] - 2021-03-25

33
pom.xml
View File

@ -10,7 +10,7 @@
</parent> </parent>
<groupId>org.gcube.distribution</groupId> <groupId>org.gcube.distribution</groupId>
<artifactId>maven-portal-bom</artifactId> <artifactId>maven-portal-bom</artifactId>
<version>3.6.1</version> <version>3.6.2-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<scm> <scm>
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/maven-portal-bom.git</connection> <connection>scm:git:https://code-repo.d4science.org/gCubeSystem/maven-portal-bom.git</connection>
@ -112,6 +112,31 @@
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- End FWS --> <!-- End FWS -->
<!-- Keycloak and orchestrator libs -->
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>event-publisher-library</artifactId>
<version>[1.0.0-SNAPSHOT,)</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gcube.portal</groupId>
<artifactId>event-publisher-portal</artifactId>
<version>[1.0.1-SNAPSHOT,)</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>oidc-library</artifactId>
<version>[1.2.0-SNAPSHOT,)</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gcube.portal</groupId>
<artifactId>oidc-library-portal</artifactId>
<version>[1.2.0-SNAPSHOT,)</version>
<scope>provided</scope>
</dependency>
<!-- Auth Framework --> <!-- Auth Framework -->
<dependency> <dependency>
<groupId>org.gcube.common</groupId> <groupId>org.gcube.common</groupId>
@ -698,8 +723,8 @@
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<configuration> <configuration>
@ -717,6 +742,6 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>