Skip to content

Commit

Permalink
Only move publishing related information
Browse files Browse the repository at this point in the history
  • Loading branch information
RoanH committed Mar 17, 2022
1 parent 60f3e62 commit b11aced
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions gMark/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ plugins{

import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar

eclipse.classpath.downloadJavadoc = true
compileJava.options.encoding = 'UTF-8'
compileClientJava.options.encoding = 'UTF-8'
sourceCompatibility = 1.8
version = 'v1.0'//Main.java
shadowJar.archiveName = 'gMark-v' + project.version + '.jar'
group = 'dev.roanh.gmark'
version = System.getenv("VERSION") ? System.getenv("VERSION").substring(1) : 'SNAPSHOT'

Expand Down Expand Up @@ -84,6 +78,13 @@ javadoc{
options.memberLevel = JavadocMemberLevel.PRIVATE
}

eclipse.classpath.downloadJavadoc = true
compileJava.options.encoding = 'UTF-8'
compileClientJava.options.encoding = 'UTF-8'
sourceCompatibility = 1.8
version = 'v1.0'//Main.java
shadowJar.archiveName = 'gMark-v' + project.version + '.jar'

repositories{
//Local cache
if(project.hasProperty("nexusPublic")){
Expand Down

0 comments on commit b11aced

Please sign in to comment.