Skip to content

Commit

Permalink
Release 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eberhardtj committed Aug 31, 2018
1 parent b4f165d commit 92ed28d
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
group 'com.github.eberhardtj'
version '0.5.0'

apply plugin: 'java'

sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'

repositories {
mavenCentral()
}

dependencies {
implementation 'org.metafacture:metafacture-framework:5.0.0'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.5.5'
testImplementation 'org.metafacture:metafacture-io:5.0.0'
}

task fatJar(type: Jar) {
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
archiveName = archivesBaseName.replace('-plugin', '') + '-' + version + '-plugin' + '.jar'
with jar
group 'com.github.eberhardtj'
version '0.5.1'

apply plugin: 'java'

sourceCompatibility = 1.8
targetCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'

repositories {
mavenCentral()
}

dependencies {
implementation 'org.metafacture:metafacture-framework:5.0.0'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.5.5'
testImplementation 'org.metafacture:metafacture-io:5.0.0'
}

task fatJar(type: Jar) {
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
archiveName = archivesBaseName.replace('-plugin', '') + '-' + version + '-plugin' + '.jar'
with jar
}

0 comments on commit 92ed28d

Please sign in to comment.