Attempt to allow Eclipse to import the Gradle project.

This commit is contained in:
Andrew Steinborn 2019-03-28 21:46:45 -04:00
parent 2c5a6d0f67
commit 611a31b7bb
3 changed files with 11 additions and 2 deletions

View File

@ -1,12 +1,12 @@
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '2.0.4'
id 'maven-publish'
id 'checkstyle'
}
apply from: '../gradle/checkerframework.gradle'
apply from: '../gradle/checkstyle.gradle'
apply plugin: 'com.github.johnrengelman.shadow'
sourceSets {
ap {

View File

@ -1,3 +1,12 @@
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
}
}
plugins {
id 'java'
}

View File

@ -1,12 +1,12 @@
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '2.0.4'
id 'de.sebastianboegl.shadow.transformer.log4j' version '2.1.1'
id 'checkstyle'
}
apply from: '../gradle/checkerframework.gradle'
apply from: '../gradle/checkstyle.gradle'
apply plugin: 'com.github.johnrengelman.shadow'
jar {
manifest {