File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ apply plugin: 'eclipse'
99
1010sourceSets. main. java. srcDirs = [' src' ]
1111mainClassName = " main.ScriptManager"
12- version = ' v0.13-dev '
12+ version = ' v0.14 '
1313sourceCompatibility = 1.8
1414targetCompatibility = 1.8
1515
2020 baseName = " ScriptManager"
2121
2222 manifest {
23- attributes ' ScriptManager-Title' : baseName,
23+ attributes ' ScriptManager-Title' : baseName,
2424 ' ScriptManager-Version' : version,
2525 ' Main-Class' : mainClassName
2626 }
@@ -31,11 +31,11 @@ task fatJar(type: Jar) {
3131 exclude ' META-INF/*.RSA' , ' META-INF/*.SF' ,' META-INF/*.DSA'
3232
3333 manifest {
34- attributes ' ScriptManager-Title' : ' Gradle jar of ScriptManager' ,
34+ attributes ' ScriptManager-Title' : ' Gradle jar of ScriptManager' ,
3535 ' ScriptManager-Version' : version,
3636 ' Main-Class' : mainClassName
3737 }
38-
38+
3939 baseName = ' ScriptManager' + version
4040 from { configurations. compile. collect { it. isDirectory() ? it : zipTree(it) } }
4141 with jar
Original file line number Diff line number Diff line change 11package objects ;
22
33public class ToolDescriptions {
4- public static final String VERSION = "0.13-dev " ;
4+ public static final String VERSION = "0.14 " ;
55
66 // BAM Statistics
77 public static final String se_stat_description = "Output BAM Header including alignment statistics and parameters given any indexed (BAI) BAM File." ;
You can’t perform that action at this time.
0 commit comments