Update README.md and application.yml: adjust cron to 30-minute intervals, add JRE-21 requirement; enhance pom.xml with issue management details
Build and Push Docker Image / build-and-push (push) Successful in 1m5s

This commit is contained in:
2026-07-08 17:21:16 +02:00
parent 2f8047ed3f
commit 87fe187acb
3 changed files with 14 additions and 9 deletions
+8 -8
View File
@@ -12,7 +12,7 @@ A Spring Boot web service that automatically fetches, manages, and serves Javado
## Requirements
Currently, this service is docker-only.
JRE-21 or docker
## Docker
@@ -44,13 +44,13 @@ Volume mapping:
Key defaults:
| Property | Default | Description |
|---|---|---|
| `jdvs.base-dir` | `./javadoc-storage` | Storage root for generated Javadoc |
| `jdvs.cron` | `0 0/15 * * * ?` | Update schedule (every 15 min) |
| `jdvs.clean-on-start` | `false` | Wipe storage and DB on startup |
| `jdvs.run-on-start` | `false` | Run update immediately on startup |
| `jdvs.maven-central-url` | `https://repo1.maven.org/maven2` | Default Maven repository |
| Property | Default | Description |
|---|----------------------------------|------------------------------------|
| `jdvs.base-dir` | `./javadoc-storage` | Storage root for generated Javadoc |
| `jdvs.cron` | `0 0/30 * * * ?` | Update schedule (every 30 min) |
| `jdvs.clean-on-start` | `false` | Wipe storage and DB on startup |
| `jdvs.run-on-start` | `false` | Run update immediately on startup |
| `jdvs.maven-central-url` | `https://repo1.maven.org/maven2` | Default Maven repository |
### `jdvs.yml`
+5
View File
@@ -24,6 +24,11 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<issueManagement>
<url>https://git.mein-gateway.de/thischwa/JavadocViewerService/issues</url>
<system>Gitea Issues</system>
</issueManagement>
<scm>
<developerConnection>scm:git:https://git.mein-gateway.de/thischwa/JavadocViewerService.git</developerConnection>
<connection>scm:git:https://git.mein-gateway.de/thischwa/JavadocViewerService.git</connection>
+1 -1
View File
@@ -1,6 +1,6 @@
jdvs:
base-dir: ./javadoc-storage
cron: 0 0/15 * * * ?
cron: 0 0/30 * * * ?
clean-on-start: false
run-on-start: false
maven-central-url: https://repo1.maven.org/maven2