-
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.
Fix #160 apt module has corrupt module descriptor
- Loading branch information
Showing
4 changed files
with
60 additions
and
22 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 |
---|---|---|
@@ -1,8 +1,13 @@ | ||
/** | ||
* Rainbow Gum annotation processors. | ||
* @provides Processor with config processor. | ||
* @provides javax.annotation.processing.Processor with config processor. | ||
*/ | ||
module io.jstach.rainbowgum.apt { | ||
requires jdk.compiler; | ||
requires static io.jstach.rainbowgum.annotation; | ||
requires static io.jstach.prism; | ||
requires static io.jstach.svc; | ||
requires static org.eclipse.jdt.annotation; | ||
requires static io.jstach.jstache; | ||
provides javax.annotation.processing.Processor with io.jstach.rainbowgum.apt.ConfigProcessor; | ||
} |
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,45 @@ | ||
<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-maven-parent</artifactId> | ||
<version>0.8.0-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>rainbowgum-maven-last</artifactId> | ||
<packaging>pom</packaging> | ||
<!-- | ||
This POM and artifact is a hack for reliable maven reactor order. | ||
The sonatype deploy plugin needs the last artifact | ||
to be actually deployable. | ||
--> | ||
<dependencies> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>rainbowgum-test-jdk</artifactId> | ||
<version>${project.version}</version> | ||
<scope>test</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>rainbowgum-test-rabbitmq</artifactId> | ||
<version>${project.version}</version> | ||
<scope>test</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>rainbowgum-tomcat</artifactId> | ||
<version>${project.version}</version> | ||
<scope>test</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>rainbowgum-etc</artifactId> | ||
<version>${project.version}</version> | ||
<scope>test</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
</dependencies> | ||
</project> |
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