4 Commits

Author SHA1 Message Date
thischwa 89821bdf2e [maven-release-plugin] prepare release v0.2.0
Build and Push Docker Image / build-and-push (push) Successful in 58s
2026-08-09 18:45:05 +02:00
thischwa 345bf14744 Update dependencies and logging configuration
Build and Push Docker Image / build-and-push (push) Successful in 1m33s
- Upgrade `spring-boot-starter-parent` to 4.1.0.
- Extract `eclipse-jgit.version` to properties for consistency.
- Add Hibernate logger to `logback.xml`.
2026-08-09 18:40:05 +02:00
thischwa 52e64606dd Merge remote-tracking branch 'origin/develop' into develop
Build and Push Docker Image / build-and-push (push) Successful in 2m7s
2026-07-26 12:28:13 +02:00
thischwa 24b9407854 Clarify version handling in README 2026-07-26 12:27:14 +02:00
3 changed files with 9 additions and 5 deletions
+2 -1
View File
@@ -2,7 +2,8 @@
## Preface ## Preface
This project Spring Boot web service that automatically fetches, manages, and serves Javadoc documentation for Maven artifacts. This project Spring Boot web service that automatically fetches, manages, and serves Javadoc documentation for Maven artifacts. \
Currently, only the latest version is taken into account.
If you encounter any bugs or find missing features, feel free to report them on If you encounter any bugs or find missing features, feel free to report them on
the [GitHub Issues page](https://github.com/th-schwarz/JavadocViewerService/issues). the [GitHub Issues page](https://github.com/th-schwarz/JavadocViewerService/issues).
+6 -4
View File
@@ -4,14 +4,14 @@
<groupId>codes.thischwa</groupId> <groupId>codes.thischwa</groupId>
<artifactId>jdvc</artifactId> <artifactId>jdvc</artifactId>
<version>0.2.0-SNAPSHOT</version> <version>0.2.0</version>
<name>JavadocViewerService</name> <name>JavadocViewerService</name>
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>4.0.5</version> <version>4.1.0</version>
<relativePath /> <relativePath />
</parent> </parent>
@@ -20,6 +20,8 @@
<maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target> <maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<eclipse-jgit.version>7.7.1.202607240634-r</eclipse-jgit.version>
</properties> </properties>
<issueManagement> <issueManagement>
@@ -31,7 +33,7 @@
<developerConnection>scm:git:https://git.mein-gateway.de/thischwa/JavadocViewerService.git</developerConnection> <developerConnection>scm:git:https://git.mein-gateway.de/thischwa/JavadocViewerService.git</developerConnection>
<connection>scm:git:https://git.mein-gateway.de/thischwa/JavadocViewerService.git</connection> <connection>scm:git:https://git.mein-gateway.de/thischwa/JavadocViewerService.git</connection>
<url>https://git.mein-gateway.de/thischwa/JavadocViewerService</url> <url>https://git.mein-gateway.de/thischwa/JavadocViewerService</url>
<tag>HEAD</tag> <tag>v0.2.0</tag>
</scm> </scm>
<distributionManagement> <distributionManagement>
@@ -85,7 +87,7 @@
<dependency> <dependency>
<groupId>org.eclipse.jgit</groupId> <groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId> <artifactId>org.eclipse.jgit</artifactId>
<version>7.2.1.202505142326-r</version> <version>${eclipse-jgit.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId> <groupId>com.fasterxml.jackson.dataformat</groupId>
+1
View File
@@ -12,6 +12,7 @@
<logger name="org.springframework.boot.autoconfigure.logging" level="info"/> <logger name="org.springframework.boot.autoconfigure.logging" level="info"/>
<logger name="org.springframework.context" level="info"/> <logger name="org.springframework.context" level="info"/>
<logger name="org.eclipse.jgit" level="info"/> <logger name="org.eclipse.jgit" level="info"/>
<logger name="org.hibernate" level="info"/>
<logger name="com.zaxxer.hikari" level="info"/> <logger name="com.zaxxer.hikari" level="info"/>
<root level="debug"> <root level="debug">