Allows `./gradlew clean build` to run successfully. (#355)

* CI job `check` will run `build` gradle task
This commit is contained in:
Nikita Salnikov-Tarnovski 2020-04-29 18:08:14 +03:00 committed by GitHub
parent 6e1c0436da
commit 62426c8158
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 2 deletions

View File

@ -161,7 +161,7 @@ jobs:
- run: - run:
name: Build Project name: Build Project
command: GRADLE_OPTS="-Dota.forkedMaxHeapSize=4G -Dota.forkedMinHeapSize=64M" ./gradlew check -PskipTests --build-cache --parallel --stacktrace --no-daemon --max-workers=8 command: GRADLE_OPTS="-Dota.forkedMaxHeapSize=4G -Dota.forkedMinHeapSize=64M" ./gradlew build -PskipTests --build-cache --parallel --stacktrace --no-daemon --max-workers=8
- run: - run:
name: Collect Reports name: Collect Reports

View File

@ -30,4 +30,6 @@ public class DBInfo {
private final String db; private final String db;
private final String host; private final String host;
private final Integer port; private final Integer port;
public static class Builder {}
} }

View File

@ -42,7 +42,7 @@ import lombok.extern.slf4j.Slf4j;
* <p> * <p>
* *
* <p>System properties are {@link Config#PREFIX}'ed. Environment variables are the same as the * <p>System properties are {@link Config#PREFIX}'ed. Environment variables are the same as the
* system property, but uppercased with '.' -> '_'. * system property, but uppercased and '.' is replaced with '_'.
*/ */
@Slf4j @Slf4j
@ToString(includeFieldNames = true) @ToString(includeFieldNames = true)

View File

@ -182,6 +182,7 @@ javadoc {
setAuthor true setAuthor true
links "https://docs.oracle.com/javase/8/docs/api/" links "https://docs.oracle.com/javase/8/docs/api/"
source = 8
} }
} }