File tree 3 files changed +33
-10
lines changed
3 files changed +33
-10
lines changed Original file line number Diff line number Diff line change
1
+ language : java
2
+ jdk :
3
+ - oraclejdk8
4
+ before_deploy :
5
+ -
git config --global user.email "[email protected] "
6
+ - git config --global user.name "Travis CI"
7
+ - git tag v1.0.${TRAVIS_BUILD_NUMBER}
8
+ -
git push -q https://[email protected] /NyaaCat/buc --follow-tags
9
+ deploy :
10
+ provider : releases
11
+ api_key :
12
+ secure : $GITHUB_KEY
13
+ file :
14
+ - build/libs/buc-1.0.${TRAVIS_BUILD_NUMBER}.jar
15
+ on :
16
+ tags : false
17
+ all_branches : true
18
+ skip_cleanup : true
19
+ branches :
20
+ only :
21
+ - master
Original file line number Diff line number Diff line change 1
1
apply plugin : ' java'
2
- apply plugin : ' com.github.johnrengelman.shadow'
3
2
4
3
sourceCompatibility = 1.8
5
4
@@ -9,9 +8,6 @@ buildscript {
9
8
url " https://plugins.gradle.org/m2/"
10
9
}
11
10
}
12
- dependencies {
13
- classpath " com.github.jengelman.gradle.plugins:shadow:1.2.4"
14
- }
15
11
}
16
12
17
13
repositories {
@@ -26,13 +22,19 @@ repositories {
26
22
}
27
23
}
28
24
25
+ version = " 1.0.%s"
26
+
27
+ if (System . getenv(" TRAVIS_BUILD_NUMBER" ) != null ) {
28
+ project. version = String . format(project. version, System . getenv(" TRAVIS_BUILD_NUMBER" ))
29
+ } else {
30
+ project. version = String . format(project. version, " 0" )
31
+ }
32
+
29
33
dependencies {
30
34
compile ' net.md-5:bungeecord-api:1.12-SNAPSHOT'
31
- compile ' io.netty:netty-codec-haproxy:4.1.9 .Final'
35
+ compile ' io.netty:netty-codec-haproxy:4.1.13 .Final'
32
36
}
33
37
34
- shadowJar {
35
- dependencies {
36
- include(dependency(' io.netty:netty-codec-haproxy' ))
37
- }
38
+ processResources {
39
+ expand version :project. version
38
40
}
Original file line number Diff line number Diff line change 1
1
name : BungeeCordUserControl
2
2
main : cat.nyaa.bungeecordusercontrol.BUC
3
- version : 1.0
3
+ version : ${version}
4
4
author : cylin
You can’t perform that action at this time.
0 commit comments