Bump 1.0.0, updated docs

This commit is contained in:
Marvin Scham
2023-06-28 05:09:04 +02:00
parent 85c8fe6b1a
commit c74205663a
6 changed files with 5 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
# Changelog # Changelog
## 0.3.0-SNAPSHOT ## 1.0.0
### Added ### Added

View File

@@ -21,7 +21,7 @@ RUN mvn -B package -DskipTests
FROM openjdk:17-jdk-slim FROM openjdk:17-jdk-slim
# Copy the jar file from the build stage # Copy the jar file from the build stage
COPY --from=build /app/target/easydrop-0.3.0-SNAPSHOT.jar /easydrop.jar COPY --from=build /app/target/easydrop-1.0.0.jar /easydrop.jar
# Execute the application when the docker container starts. # Execute the application when the docker container starts.
ENTRYPOINT ["java", "-jar", "/easydrop.jar"] ENTRYPOINT ["java", "-jar", "/easydrop.jar"]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 76 KiB

View File

@@ -1,6 +1,6 @@
# EasyDrop # EasyDrop
![Version](https://img.shields.io/badge/version-0.3.0SNAPSHOT-orange) ![Version](https://img.shields.io/badge/version-1.0.0-orange)
![Pipeline](https://gitlab.fbe-adswen.rwu.de/team1/sandbox2/badges/main/pipeline.svg) ![Pipeline](https://gitlab.fbe-adswen.rwu.de/team1/sandbox2/badges/main/pipeline.svg)
[![Coverage](https://sonar.fbe-adswen.rwu.de/api/project_badges/measure?project=de.rwu%3Aeasydrop&metric=coverage&token=sqb_2fe80aed361468170aaef32a0ff96d596456cdd1)](https://sonar.fbe-adswen.rwu.de/dashboard?id=de.rwu%3Aeasydrop) [![Coverage](https://sonar.fbe-adswen.rwu.de/api/project_badges/measure?project=de.rwu%3Aeasydrop&metric=coverage&token=sqb_2fe80aed361468170aaef32a0ff96d596456cdd1)](https://sonar.fbe-adswen.rwu.de/dashboard?id=de.rwu%3Aeasydrop)
![JAMANN](https://img.shields.io/badge/Auszahlung-Letzte%20Woche-brightgreen) ![JAMANN](https://img.shields.io/badge/Auszahlung-Letzte%20Woche-brightgreen)
@@ -41,10 +41,6 @@ To run it on a fixed schedule, install a cron job, e.g.
*/30 * * * * cd /home/user/easydrop && docker-compose up -d */30 * * * * cd /home/user/easydrop && docker-compose up -d
``` ```
## Roadmap 🏁
- Access transaction log
## Contributing 👷‍♂️👷‍♀️ ## Contributing 👷‍♂️👷‍♀️
Contribution guidelines are available in the [project wiki](https://gitlab.fbe-adswen.rwu.de/team1/sandbox2/-/wikis/Richtlinien/Development) Contribution guidelines are available in the [project wiki](https://gitlab.fbe-adswen.rwu.de/team1/sandbox2/-/wikis/Richtlinien/Development)

View File

@@ -6,7 +6,7 @@ services:
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
image: easydrop:0.3.0-SNAPSHOT image: easydrop:1.0.0
volumes: volumes:
- ./config:/config - ./config:/config
- ./persistence.db:/persistence.db - ./persistence.db:/persistence.db

View File

@@ -5,7 +5,7 @@
<groupId>de.rwu</groupId> <groupId>de.rwu</groupId>
<artifactId>easydrop</artifactId> <artifactId>easydrop</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>0.3.0-SNAPSHOT</version> <version>1.0.0</version>
<name>EasyDrop</name> <name>EasyDrop</name>
<url>http://maven.apache.org</url> <url>http://maven.apache.org</url>