Skip to content
This repository has been archived by the owner on Nov 2, 2020. It is now read-only.

Commit

Permalink
Changed source compatability
Browse files Browse the repository at this point in the history
  • Loading branch information
Yegorisa committed Dec 25, 2017
1 parent 4886977 commit b912cc2
Showing 1 changed file with 2 additions and 18 deletions.
20 changes: 2 additions & 18 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ apply plugin: 'maven'

group 'com.github.clusterws'
version '1.5'
sourceCompatibility = 1.7
targetCompatibility = 1.7
sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories {
mavenCentral()
Expand Down Expand Up @@ -34,19 +34,3 @@ dependencies {
task wrapper(type: Wrapper) {
gradleVersion = '1.4'
}


task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}

task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}

artifacts {
archives sourcesJar
archives javadocJar
}

0 comments on commit b912cc2

Please sign in to comment.