diff --git a/CHANGELOG.md b/CHANGELOG.md index 2604f1c..42a2bd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.0.2 + +### Fixed + +- Demo credentials +- Auto-generated UML + ## 1.0.1 ### Fixed diff --git a/Dockerfile b/Dockerfile index ba10e52..be36152 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN mvn -B package -DskipTests FROM openjdk:17-jdk-slim # Copy the jar file from the build stage -COPY --from=build /app/target/easydrop-1.0.1.jar /easydrop.jar +COPY --from=build /app/target/easydrop-1.0.2.jar /easydrop.jar # Execute the application when the docker container starts. ENTRYPOINT ["java", "-jar", "/easydrop.jar"] diff --git a/README.md b/README.md index 9ef03e6..e60f57f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # EasyDrop -![Version](https://img.shields.io/badge/version-1.0.1-orange) +![Version](https://img.shields.io/badge/version-1.0.2-orange) ![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) ![JAMANN](https://img.shields.io/badge/Auszahlung-Letzte%20Woche-brightgreen) diff --git a/config/demo.config.properties b/config/demo.config.properties index 13b994e..4dd52e0 100644 --- a/config/demo.config.properties +++ b/config/demo.config.properties @@ -1,6 +1,6 @@ # Amazon Credentials -AMAZON_API_URL= -AMAZON_API_KEY= -EBAY_API_URL= -EBAY_API_KEY= -WEBSHOPS=amazon,ebay \ No newline at end of file +AMAZON_API_URL=https://checksch.de/api/amazon +AMAZON_API_KEY=lassMichRein +# eBay Credentials +EBAY_API_URL=https://checksch.de/api/ebay +EBAY_API_KEY=ichMussRein \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index c16f542..eef5ad4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,7 +6,7 @@ services: build: context: . dockerfile: Dockerfile - image: easydrop:1.0.1 + image: easydrop:1.0.2 volumes: - ./config:/config - type: bind diff --git a/pom.xml b/pom.xml index 01c46d0..d46004e 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ de.rwu easydrop jar - 1.0.1 + 1.0.2 EasyDrop http://maven.apache.org