Skip to content

Commit

Permalink
🗻 update gradle config
Browse files Browse the repository at this point in the history
  • Loading branch information
hellokaton committed Jun 2, 2018
1 parent 2b245b9 commit 45e964a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 23 deletions.
11 changes: 5 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ apply plugin: 'eclipse'
apply plugin: 'idea'

group = 'com.bladejava'
version = '2.0.8-SNAPSHOT'
version = '2.0.8-R1'

description = """blade"""
description = 'blade-mvc'

sourceCompatibility = 1.8
targetCompatibility = 1.8

task wrapper(type: Wrapper) {
gradleVersion = '4.5'
gradleVersion = '4.7'
}

tasks.withType(JavaCompile) {
Expand All @@ -25,7 +25,6 @@ def junitVersion = '4.12'
def slf4jApiVersion = '1.7.21'
def nettyVersion = '4.1.25.Final'


repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "http://repo.maven.apache.org/maven2" }
Expand All @@ -38,11 +37,11 @@ dependencies {
compile group: 'org.slf4j', name: 'slf4j-api', version: slf4jApiVersion
compile group: 'io.netty', name: 'netty-codec-http', version: nettyVersion
compile group: 'io.netty', name: 'netty-handler', version: nettyVersion
testCompile group: 'junit', name: 'junit', version: junitVersion
provided group: 'junit', name: 'junit', version: junitVersion
testCompile group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
testCompile group: 'org.webjars', name: 'bootstrap', version: '3.3.7'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
testCompile group: 'com.mashape.unirest', name: 'unirest-java', version: '1.4.9'
compileOnly group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.25.Final'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.16.20'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.16.22'
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4.1-bin.zip
2 changes: 1 addition & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -168,5 +168,5 @@ eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$A
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
cd "$(dirname "$0")"
fi

exec "$JAVACMD" "$@"
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
<netty.version>4.1.25.Final</netty.version>
<blade-asm.version>0.0.1</blade-asm.version>
<blade-log.version>0.1.3</blade-log.version>
<gson.version>2.8.0</gson.version>
<bootstrap.version>3.3.7</bootstrap.version>
<mockito.version>1.10.19</mockito.version>
<gson.version>2.8.5</gson.version>
<bootstrap.version>4.1.0</bootstrap.version>
<mockito.version>2.18.3</mockito.version>
<unirest-java.version>1.4.9</unirest-java.version>
<lombok.version>1.16.20</lombok.version>
<lombok.version>1.16.22</lombok.version>
</properties>

<dependencies>
Expand Down
11 changes: 0 additions & 11 deletions src/main/java/com/blade/test/BladeTest.java

This file was deleted.

0 comments on commit 45e964a

Please sign in to comment.