[jOOQ/jOOQ#9825] Include jooq-refaster in builds

The `Splitter` now also copies the `jooq-refaster` and
`jooq-test-refaster` Maven modules for all relevant builds.
This commit is contained in:
Knut Wannheden 2020-02-19 14:42:00 +01:00
parent 00e28e247f
commit 883cec7fe6
6 changed files with 172 additions and 2 deletions

1
jOOQ-refaster/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target/

BIN
jOOQ-refaster/all.refaster Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

167
jOOQ-refaster/pom.xml Normal file
View File

@ -0,0 +1,167 @@
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jooq</groupId>
<artifactId>jooq-parent</artifactId>
<version>3.14.0-SNAPSHOT</version>
</parent>
<artifactId>jooq-refaster</artifactId>
<name>jOOQ Refaster</name>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq</artifactId>
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_refaster</artifactId>
<version>2.3.4</version>
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_core</artifactId>
<version>2.3.4</version>
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotation</artifactId>
<version>2.3.4</version>
</dependency>
<dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service-annotations</artifactId>
<version>1.0-rc6</version>
</dependency>
</dependencies>
</project>

View File

@ -503,6 +503,10 @@
<module>jOOQ-xtend</module>
<module>jOOQ-refaster</module>
@ -544,8 +548,6 @@
</modules>
</profile>