Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3bc6401bd7 | |||
| 89821bdf2e | |||
| 345bf14744 | |||
| 52e64606dd | |||
| 24b9407854 |
@@ -2,7 +2,8 @@
|
||||
|
||||
## 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
|
||||
the [GitHub Issues page](https://github.com/th-schwarz/JavadocViewerService/issues).
|
||||
|
||||
@@ -4,14 +4,14 @@
|
||||
|
||||
<groupId>codes.thischwa</groupId>
|
||||
<artifactId>jdvc</artifactId>
|
||||
<version>0.2.0-SNAPSHOT</version>
|
||||
<version>0.3.0-SNAPSHOT</version>
|
||||
|
||||
<name>JavadocViewerService</name>
|
||||
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>4.0.5</version>
|
||||
<version>4.1.0</version>
|
||||
<relativePath />
|
||||
</parent>
|
||||
|
||||
@@ -20,6 +20,8 @@
|
||||
<maven.compiler.source>${java.version}</maven.compiler.source>
|
||||
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
||||
<eclipse-jgit.version>7.7.1.202607240634-r</eclipse-jgit.version>
|
||||
</properties>
|
||||
|
||||
<issueManagement>
|
||||
@@ -85,7 +87,7 @@
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jgit</groupId>
|
||||
<artifactId>org.eclipse.jgit</artifactId>
|
||||
<version>7.2.1.202505142326-r</version>
|
||||
<version>${eclipse-jgit.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
<logger name="org.springframework.boot.autoconfigure.logging" level="info"/>
|
||||
<logger name="org.springframework.context" level="info"/>
|
||||
<logger name="org.eclipse.jgit" level="info"/>
|
||||
<logger name="org.hibernate" level="info"/>
|
||||
<logger name="com.zaxxer.hikari" level="info"/>
|
||||
|
||||
<root level="debug">
|
||||
|
||||
Reference in New Issue
Block a user