Bump 1.0.0, updated docs
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 0.3.0-SNAPSHOT
|
## 1.0.0
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
|||||||
@@ -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 |
@@ -1,6 +1,6 @@
|
|||||||
# EasyDrop
|
# EasyDrop
|
||||||
|
|
||||||

|

|
||||||

|

|
||||||
[](https://sonar.fbe-adswen.rwu.de/dashboard?id=de.rwu%3Aeasydrop)
|
[](https://sonar.fbe-adswen.rwu.de/dashboard?id=de.rwu%3Aeasydrop)
|
||||||

|

|
||||||
@@ -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)
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
2
pom.xml
2
pom.xml
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user