Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #39 from catenax-ng/lib-updates
Browse files Browse the repository at this point in the history
Lib updates; fixes #38 fixes #37
  • Loading branch information
SebastianBezold authored May 5, 2023
2 parents 2d437d9 + 1922cc1 commit bc29323
Show file tree
Hide file tree
Showing 8 changed files with 101 additions and 110 deletions.
2 changes: 2 additions & 0 deletions .tractusx
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
product: "DAPS_REGISTRATION_SERVICE"
leadingRepository: "https://github.com/eclipse-tractusx/daps-registration-service"
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]
NA

## [2.0.5] - 2023-05-02

### Changed
- Updated librabries and upgrade spring boot


## [2.0.4] - 2023-04-24
Expand Down
145 changes: 55 additions & 90 deletions DEPENDENCIES

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Helm charts are provided inside https://github.com/eclipse-tractusx/daps-registr
helm install ReleaseName ChartName

a.) Add helm repository in tractusx:
helm repo add daps-reg-service https://eclipse-tractusx.github.io/charts/dev
helm repo add drs https://eclipse-tractusx.github.io/charts/dev
b.) To search the specific repo in helm repositories
helm search repo tractusx-dev
helm search repo drs/daps-reg-service
c.) To install using helm command:
helm install daps-reg-service tractusx-dev/daps-reg-service
helm install drs drs/daps-reg-service


2.) Local installation:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ of the DAPS are not disclosed to the requester.

### Software Version
```shell
Helm version is v2.0.4
Application version is v2.0.4
Helm version is v2.0.5
Application version is v2.0.5
```

# Solution Strategy
Expand Down
4 changes: 2 additions & 2 deletions charts/daps-reg-service/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ sources:
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.0.4
version: 2.0.5


# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 2.0.4
appVersion: 2.0.5
2 changes: 1 addition & 1 deletion charts/daps-reg-service/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# daps-reg-service

![Version: 2.0.4](https://img.shields.io/badge/Version-2.0.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.4](https://img.shields.io/badge/AppVersion-2.0.4-informational?style=flat-square)
![Version: 2.0.5](https://img.shields.io/badge/Version-2.0.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.5](https://img.shields.io/badge/AppVersion-2.0.5-informational?style=flat-square)

Daps regisgter service is used to register the EDC connector into DAPS

Expand Down
42 changes: 30 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.5</version>
<version>3.0.6</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>dapsreg</artifactId>
<version>2.0.4</version>
<version>2.0.5</version>
<name>dapsreg</name>
<description>client registration to the DAPS</description>
<properties>
Expand Down Expand Up @@ -104,22 +104,31 @@
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
<version>6.0.8</version>
</dependency>

<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>6.0.3</version>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-core</artifactId>
<version>21.1.1</version>
</dependency>



</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.dash</groupId>
<artifactId>license-tool-plugin</artifactId>
<version>0.0.1-SNAPSHOT</version>
<executions>
<execution>
<id>license-check</id>
<goals>
<goal>license-check</goal>
</goals>
</execution>
</executions>
<configuration>
<summary>DEPENDENCIES</summary>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
Expand Down Expand Up @@ -188,5 +197,14 @@
</plugin>
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>dash-licenses-snapshots</id>
<url>https://repo.eclipse.org/content/repositories/dash-licenses-snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

</project>

0 comments on commit bc29323

Please sign in to comment.