| 1234567891011121314151617181920212223242526272829 |
- plugins {
- id 'java'
- }
- group 'com.ljsd'
- version '1.0.0-SNAPSHOT'
- sourceCompatibility = 1.8
- repositories {
- mavenLocal()
- mavenCentral()
- }
- dependencies {
- compile project(":gamecommon")
- testCompile group: 'junit', name: 'junit', version: '4.12'
- compile("org.javassist:javassist:3.18.2-GA")
- compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
- compile("io.netty:netty-all:4.1.6.Final")
- compile("com.google.protobuf:protobuf-java:2.5.0")
- compile 'com.google.guava:guava:23.5-android'
- }
- jar {
- baseName = 'netty'
- version = '1.0.0'
- }
|