serialize-deserialize-demo-.../build.gradle

62 lines
1.5 KiB
Groovy
Raw Permalink Normal View History

2019-07-23 13:57:40 -04:00
group 'com.github.simplesteph.protobuf'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'com.google.protobuf'
apply plugin: 'idea'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'
2019-08-05 11:02:01 -04:00
compile group: 'joda-time', name: 'joda-time', version: '2.10.3'
2019-07-23 13:57:40 -04:00
// Protobuf
compile 'com.google.protobuf:protobuf-java:3.9.0'
compile 'com.google.protobuf:protobuf-java-util:3.9.0'
2019-08-05 10:52:52 -04:00
//Msgpack
2019-08-05 13:43:28 -04:00
compile group: 'org.msgpack', name: 'msgpack', version: '0.6.12'
2019-08-05 10:52:52 -04:00
2019-07-23 13:57:40 -04:00
// Snappy Zip
compile group: 'org.xerial.snappy', name: 'snappy-java', version: '1.1.7.3'
2019-08-05 11:02:01 -04:00
//log
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.2'
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.0.9'
compile group: 'ch.qos.logback', name: 'logback-core', version: '1.0.9'
//test
2019-07-23 13:57:40 -04:00
testCompile group: 'junit', name: 'junit', version: '4.12'
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.5'
}
}
protobuf {
// Configure the protoc executable
protoc {
// Download from repositories
artifact = 'com.google.protobuf:protoc:3.5.1'
}
}
repositories {
maven {
url "https://maven.ossez.com/repository/internal"
}
}