1
0
Fork 0
simple-encryptor/build.gradle

48 lines
1.2 KiB
Groovy

apply plugin: 'java'
apply plugin: 'application'
buildscript {
repositories {
mavenLocal()
jcenter()
maven { url 'http://repo.spring.io/snapshot' }
maven { url 'http://repo.spring.io/milestone' }
maven { url 'http://repo.spring.io/plugins-release' }
}
dependencies {
classpath 'org.springframework.build.gradle:propdeps-plugin:0.0.7'
}
}
//mainClassName = 'Main'
mainClassName = 'SimpleObfuscator'
//mainClassName = 'Crypt'
repositories {
mavenLocal()
jcenter()
maven { url 'http://repo.spring.io/snapshot' }
maven { url 'http://repo.spring.io/milestone' }
maven { url 'http://repo.spring.io/plugins-release' }
}
apply plugin: 'propdeps'
apply plugin: 'propdeps-maven'
apply plugin: 'propdeps-idea'
apply plugin: 'propdeps-eclipse'
dependencies {
compile 'org.bouncycastle:bcprov-jdk15on:1.54'
provided 'org.projectlombok:lombok:1.16.10'
// commons family
compile 'org.apache.commons:commons-lang3:3.4'
compile 'commons-codec:commons-codec:1.10'
compile 'commons-io:commons-io:2.5'
compile 'commons-fileupload:commons-fileupload:1.3.1'
compile 'com.google.guava:guava:19.0'
compile "com.fasterxml.uuid:java-uuid-generator:3.1.4"
}