File tree Expand file tree Collapse file tree 1 file changed +26
-26
lines changed Expand file tree Collapse file tree 1 file changed +26
-26
lines changed Original file line number Diff line number Diff line change 1- group ' com.github.eberhardtj'
2- version ' 0.5.0 '
3-
4- apply plugin : ' java'
5-
6- sourceCompatibility = 1.8
7- targetCompatibility = 1.8
8- compileJava. options. encoding = ' UTF-8'
9-
10- repositories {
11- mavenCentral()
12- }
13-
14- dependencies {
15- implementation ' org.metafacture:metafacture-framework:5.0.0'
16- testImplementation ' junit:junit:4.12'
17- testImplementation ' org.mockito:mockito-core:2.5.5'
18- testImplementation ' org.metafacture:metafacture-io:5.0.0'
19- }
20-
21- task fatJar (type : Jar ) {
22- from {
23- configurations. compile. collect { it. isDirectory() ? it : zipTree(it) }
24- }
25- archiveName = archivesBaseName. replace(' -plugin' , ' ' ) + ' -' + version + ' -plugin' + ' .jar'
26- with jar
1+ group ' com.github.eberhardtj'
2+ version ' 0.5.1 '
3+
4+ apply plugin : ' java'
5+
6+ sourceCompatibility = 1.8
7+ targetCompatibility = 1.8
8+ compileJava. options. encoding = ' UTF-8'
9+
10+ repositories {
11+ mavenCentral()
12+ }
13+
14+ dependencies {
15+ implementation ' org.metafacture:metafacture-framework:5.0.0'
16+ testImplementation ' junit:junit:4.12'
17+ testImplementation ' org.mockito:mockito-core:2.5.5'
18+ testImplementation ' org.metafacture:metafacture-io:5.0.0'
19+ }
20+
21+ task fatJar (type : Jar ) {
22+ from {
23+ configurations. compile. collect { it. isDirectory() ? it : zipTree(it) }
24+ }
25+ archiveName = archivesBaseName. replace(' -plugin' , ' ' ) + ' -' + version + ' -plugin' + ' .jar'
26+ with jar
2727}
You can’t perform that action at this time.
0 commit comments