Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3bc6401bd7 | |||
| 89821bdf2e | |||
| 345bf14744 | |||
| 52e64606dd | |||
| 24b9407854 | |||
| cb35c42b12 | |||
| 5f21101b59 | |||
| 0c9ad846f4 |
@@ -1,16 +1,21 @@
|
|||||||
MIT No Attribution
|
MIT License
|
||||||
|
|
||||||
Copyright <YEAR> <COPYRIGHT HOLDER>
|
Copyright (c) 2026 Thilo Schwarz
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
software and associated documentation files (the "Software"), to deal in the Software
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
without restriction, including without limitation the rights to use, copy, modify,
|
in the Software without restriction, including without limitation the rights
|
||||||
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
permit persons to whom the Software is furnished to do so.
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
The above copyright notice and this permission notice shall be included in all
|
||||||
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
copies or substantial portions of the Software.
|
||||||
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
||||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
@@ -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).
|
||||||
@@ -19,6 +20,9 @@ the [GitHub Issues page](https://github.com/th-schwarz/JavadocViewerService/issu
|
|||||||
At least JRE-21 or docker
|
At least JRE-21 or docker
|
||||||
|
|
||||||
## Start
|
## Start
|
||||||
|
|
||||||
|
Packages can be found at [Gitea Packages](https://git.mein-gateway.de/thischwa/JavadocViewerService/packages).
|
||||||
|
|
||||||
### ... with Java
|
### ... with Java
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|||||||
@@ -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.3.0-SNAPSHOT</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>
|
||||||
@@ -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>
|
||||||
|
|||||||
@@ -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">
|
||||||
|
|||||||
Reference in New Issue
Block a user