-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
93 lines (67 loc) · 2.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
description = "junit-example application"
apply plugin: "war"
apply plugin: "java"
apply plugin: "jetty"
sourceCompatibility = "1.6"
targetCompatibility = "1.6"
group = "ro.atrifan"
version = "1.0-SNAPSHOT"
repositories {
mavenLocal()
mavenCentral()
// All things JBoss/Hibernate
maven {
name "JBoss"
url "http://repository.jboss.org/nexus/content/groups/public/"
}
// For access to Apache Staging (Preview) packages
maven {
name "Apache Staging"
url "https://repository.apache.org/content/groups/staging"
}
}
// This simulates Maven's "provided" scope, until it is officially supported by Gradle
// See http://jira.codehaus.org/browse/GRADLE-784
configurations {
provided
}
sourceSets {
main {
compileClasspath += [configurations.provided]
// To give the same path as IDEA has
// output.resourcesDir = 'build/production/junit-example'
// output.classesDir = 'build/production/junit-example'
}
test {
compileClasspath += [configurations.provided]
runtimeClasspath += [configurations.provided]
}
}
dependencies {
compile "org.apache.tapestry:tapestry-core:5.4-beta-35"
// Uncomment this to add support for file uploads:
// compile "org.apache.tapestry:tapestry-upload:5.4-beta-35"
// CoffeeScript & Less support, plus resource minification:
compile "org.apache.tapestry:tapestry-webresources:5.4-beta-35"
test "org.apache.tapestry:tapestry-test:5.4-beta-35"
// Log implementation choose one:
// Log4j 1.x
runtime "log4j:log4j:1.2.17"
runtime "org.slf4j:slf4j-log4j12:1.7.12"
// Logback
// runtime "ch.qos.logback:logback-classic:1.0.13"
provided "javax.servlet:servlet-api:2.5"
}
test {
useTestNG()
options.suites("src/test/conf/testng.xml")
systemProperties["tapestry.service-reloading-enabled"] = "false"
systemProperties["tapestry.execution-mode"] = "development"
maxHeapSize = "600M"
jvmArgs("-XX:MaxPermSize=256M")
enableAssertions = true
}
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}
// TODO: Configure execution mode for jettyRun task