-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
54 lines (47 loc) · 1.12 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "io.ratpack:ratpack-gradle:1.3.3"
}
}
apply plugin: "io.ratpack.ratpack-java"
apply plugin: 'eclipse'
sourceCompatibility = 1.8
version = '1.0'
jar {
manifest {
attributes 'Implementation-Title': 'Store Search Files',
'Implementation-Version': version
}
}
repositories {
mavenCentral()
jcenter()
maven {
url "https://repo.spring.io/libs-milestone"
}
}
dependencies {
compile ratpack.dependency("guice"),
ratpack.dependency("rx"),
ratpack.dependency("handlebars"),
"com.couchbase.client:java-client:2.3.3",
"org.springframework.boot:spring-boot-autoconfigure:1.4.0.M3",
"io.ratpack:ratpack-spring-boot:1.3.3",
"org.slf4j:slf4j-simple:1.7.12",
"org.codehaus.plexus:plexus-utils:3.0.21",
"commons-codec:commons-codec:1.10"
}
mainClassName = "org.couchbase.devex.Application"
test {
systemProperties 'property': 'value'
}
uploadArchives {
repositories {
flatDir {
dirs 'repos'
}
}
}