Skip to content

Commit

Permalink
version 1.1.1: fix artifact in install
Browse files Browse the repository at this point in the history
  • Loading branch information
kariminf committed Mar 28, 2017
1 parent d362f4c commit 5f38bc9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8

// Release version
version = '1.1.0'
version = '1.1.1'

ext.current_Date = getDate()

Expand Down Expand Up @@ -201,10 +201,10 @@ javadoc {
// this step is necessary when installing both jars in the local maven repository
install {
repositories.mavenInstaller {
addFilter('basic-main') { artifact, file -> artifact.name.endsWith('BasicMain') }
addFilter('basic-agpl3') { artifact, file -> artifact.name.endsWith('BasicAgpl3') }
addFilter('eval') { artifact, file -> artifact.name.endsWith('Eval') }
addFilter('wordnet') { artifact, file -> artifact.name.endsWith('Wordnet') }
addFilter('basic-main') { artifact, file -> artifact.name.endsWith('basic-main') }
addFilter('basic-agpl3') { artifact, file -> artifact.name.endsWith('basic-agpl3') }
addFilter('eval') { artifact, file -> artifact.name.endsWith('eval') }
addFilter('wordnet') { artifact, file -> artifact.name.endsWith('wordnet') }
}
}

Expand Down

0 comments on commit 5f38bc9

Please sign in to comment.