Skip to content

Instantly share code, notes, and snippets.

@StFS
Created September 30, 2019 16:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StFS/41e7eb4acedd5f28893912b1d326d3f6 to your computer and use it in GitHub Desktop.
Save StFS/41e7eb4acedd5f28893912b1d326d3f6 to your computer and use it in GitHub Desktop.
// Configure the build script repositories and dependencies, must be defined in the top level gradle file.
apply plugin: "java"
repositories {
maven {
url "http://localhost:8080/artifactory/libs-release"
credentials {
username "admin"
password "password"
}
}
maven {
url "http://localhost:8080/artifactory/libs-snapshot"
credentials {
username "admin"
password "password"
}
}
}
dependencies {
compile group: 'org.aeonbits.owner', name: 'owner', version:'1.0.10'
compile group: 'io.grpc', name: 'grpc-core', version:'1.19.0'
compile group: 'com.google.code.gson', name: 'gson', version:'2.7'
compile group: 'org.apache.hadoop', name: 'hadoop-common', version:'3.2.0'
compile group: 'org.apache.struts', name: 'struts2-core', version:'2.5.10'
compile group: 'org.mindrot', name: 'jbcrypt', version:'0.3m'
compile group: 'org.springframework', name: 'spring-web', version:'3.1.1.RELEASE'
compile group: 'org.apache.sling', name: 'org.apache.sling.engine', version:'2.0.4-incubator'
compile group: 'org.keycloak', name: 'keycloak-saml-core', version:'1.8.1.Final'
compile group: 'org.neo4j', name: 'neo4j-jmx', version:'1.3'
compile group: 'com.h2database', name: 'h2', version:'1.3.176'
compile group: 'org.apache.kafka', name: 'kafka_2.11', version:'0.9.0.1'
compile group: 'net.bull.javamelody', name: 'javamelody-core', version:'1.59.0'
compile group: 'com.orientechnologies', name: 'orientdb-server', version:'2.1.9'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment