-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
58 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>io.jstach.rainbowgum</groupId> | ||
<artifactId>rainbowgum-spring-parent</artifactId> | ||
<version>0.7.0-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>rainbowgum-spring-boot-starter</artifactId> | ||
<properties> | ||
<doc.resources>../../</doc.resources> | ||
<parent.root>${basedir}/../..</parent.root> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>rainbowgum</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>rainbowgum-spring-boot</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
</dependency> | ||
</dependencies> | ||
</project> |
11 changes: 11 additions & 0 deletions
11
...main/java/io/jstach/rainbowgum/spring/boot/starter/RainbowGumSpringBootStarterBundle.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package io.jstach.rainbowgum.spring.boot.starter; | ||
|
||
/** | ||
* This bundle is just to make the javadoc system in Maven work. Ignore for now. | ||
*/ | ||
public final class RainbowGumSpringBootStarterBundle { | ||
|
||
private RainbowGumSpringBootStarterBundle() { | ||
} | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
...ing-boot-starter/src/main/java/io/jstach/rainbowgum/spring/boot/starter/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/** | ||
* Please refer to the overview for installation. This bundle is just to make the javadoc | ||
* system in Maven work. | ||
*/ | ||
@org.eclipse.jdt.annotation.NonNullByDefault | ||
package io.jstach.rainbowgum.spring.boot.starter; |
7 changes: 7 additions & 0 deletions
7
spring/rainbowgum-spring-boot-starter/src/main/java/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* Spring Boot Rainbow Gum Integration. | ||
* Please refer to the overview for installation. | ||
*/ | ||
module io.jstach.rainbowgum.spring.boot.starter { | ||
requires static org.eclipse.jdt.annotation; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters