Skip to content
Snippets Groups Projects
Commit 81eff101 authored by Martin Vogel's avatar Martin Vogel
Browse files

Feature/1189 1.0.0 release

parent 7c8aa286
No related branches found
No related tags found
1 merge request!229Feature/1189 release
......@@ -60,6 +60,7 @@ package:
paths:
- api/target/*.jar
- core/target/*.jar
- demo/target/*.jar
- cli/target/*.jar
- client/target/*.jar
- integration-tests/target/*.jar
......@@ -71,6 +72,6 @@ deploy:
stage: deploy
before_script: *gpg-setup
script:
- ./mvnw $MAVEN_CLI_OPTS deploy -DskipTests -P '!integration-tests' -P '!cli' -Pgpg-sign
- ./mvnw $MAVEN_CLI_OPTS deploy -DskipTests -P '!integration-tests' -P '!demo' -Pgpg-sign
needs:
- package
......@@ -4,6 +4,20 @@ All notable changes to the FIT-Connect Java SDK will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/),
and this project adheres to [Semantic Versioning](https://semver.org/).
## [1.0.0] - 2023-08-04
### Added
- JWK test-certificate generator (#664)
- moved demo project to SDK (#1109)
### Changed
- Upgraded dependencies:
- JWK-Validator 1.5.1
- Mockito Core 5.4.0
- JSON Schema Validator 1.0.86
- Maven 3.9.4
- OpenCSV 5.8
## [1.0.0-rc.2] - 2023-06-14
### Fixed
......
This diff is collapsed.
......@@ -10,6 +10,7 @@
<artifactId>api</artifactId>
<packaging>jar</packaging>
<name>FIT-Connect Java SDK - API Lib</name>
<url>https://git.fitko.de/fit-connect/sdk-java</url>
<dependencies>
<dependency>
......
......@@ -12,6 +12,7 @@
<artifactId>cli</artifactId>
<packaging>jar</packaging>
<name>FIT-Connect Java SDK - CLI</name>
<url>https://git.fitko.de/fit-connect/sdk-java</url>
<dependencies>
<dependency>
......
......@@ -11,6 +11,7 @@
<artifactId>client</artifactId>
<packaging>jar</packaging>
<name>FIT-Connect Java SDK - Client Lib</name>
<url>https://git.fitko.de/fit-connect/sdk-java</url>
<dependencies>
<dependency>
......
......@@ -11,6 +11,7 @@
<artifactId>core</artifactId>
<packaging>jar</packaging>
<name>FIT-Connect Java SDK - Core Lib</name>
<url>https://git.fitko.de/fit-connect/sdk-java</url>
<dependencies>
<dependency>
......
......@@ -19,12 +19,12 @@ Für beide Varianten muss das SDK über eine [Konfigurations-YAML](https://git.f
## Maven Dependency
Um das SDK in einem bestehenden Java-Projekt zu nutzen, wird die Maven-Dependency in der aktuellen Version (RC.2) der POM hinzugefügt:
Um das SDK in einem bestehenden Java-Projekt zu nutzen, wird die Maven-Dependency in der aktuellen Version (1.0.0) der POM hinzugefügt:
```xml
<dependency>
<groupId>dev.fitko.fitconnect.sdk</groupId>
<artifactId>client</artifactId>
<version>1.0.0-rc.2</version>
<version>1.0.0</version>
</dependency>
```
......@@ -10,6 +10,7 @@
<artifactId>integration-tests</artifactId>
<name>FIT-Connect Java SDK - Integration Tests</name>
<url>https://git.fitko.de/fit-connect/sdk-java</url>
<dependencies>
<dependency>
......
......@@ -110,6 +110,7 @@
<module>api</module>
<module>core</module>
<module>client</module>
<module>cli</module>
</modules>
<dependencyManagement>
......@@ -493,15 +494,6 @@
<module>integration-tests</module>
</modules>
</profile>
<profile>
<id>cli-tests</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>cli</module>
</modules>
</profile>
<profile>
<id>demo</id>
<activation>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment