Skip to content

Commit ec59a75

Browse files
committed
update to netty-codec-haproxy 4.1.13.Final
1 parent c309ec0 commit ec59a75

File tree

3 files changed

+33
-10
lines changed

3 files changed

+33
-10
lines changed

.travis.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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

build.gradle

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
apply plugin: 'java'
2-
apply plugin: 'com.github.johnrengelman.shadow'
32

43
sourceCompatibility = 1.8
54

@@ -9,9 +8,6 @@ buildscript {
98
url "https://plugins.gradle.org/m2/"
109
}
1110
}
12-
dependencies {
13-
classpath "com.github.jengelman.gradle.plugins:shadow:1.2.4"
14-
}
1511
}
1612

1713
repositories {
@@ -26,13 +22,19 @@ repositories {
2622
}
2723
}
2824

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+
2933
dependencies {
3034
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'
3236
}
3337

34-
shadowJar {
35-
dependencies {
36-
include(dependency('io.netty:netty-codec-haproxy'))
37-
}
38+
processResources {
39+
expand version:project.version
3840
}

src/main/resources/bungee.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name: BungeeCordUserControl
22
main: cat.nyaa.bungeecordusercontrol.BUC
3-
version: 1.0
3+
version: ${version}
44
author: cylin

0 commit comments

Comments
 (0)