Skip to content

Commit 92ed28d

Browse files
author
eberhardtj
committed
Release 0.5.1
1 parent b4f165d commit 92ed28d

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

build.gradle

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
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
}

0 commit comments

Comments
 (0)