summaryrefslogtreecommitdiff
path: root/spec/fixtures/java/gradle/offline-environment/build.gradle
blob: cec239c5a044176cb47aade70c56665cab7f5df2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
group "com.gitlab.security_products"
version "0.0.1"

apply plugin: "java"

ext { mavenHost = System.getenv('PRIVATE_MAVEN_HOST') }

repositories {
  maven { url "https://$mavenHost/maven2/" }
}

dependencies {
  testCompile "junit:junit:4.12"
  compile "com.fasterxml.jackson.core:jackson-databind:2.9.2"
  compile "io.netty:netty:3.9.1.Final"
  compile "org.apache.geode:geode-core:1.1.1"
  compile "org.apache.maven:maven-artifact:3.3.9"
  compile "org.mozilla:rhino:1.7.10"
}