forked from plannowtech/tapestry5-ckeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
75 lines (53 loc) · 1.77 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
description = "ckeditor application"
apply plugin: "java"
apply plugin: "maven"
apply plugin: "eclipse"
sourceCompatibility = "1.6"
targetCompatibility = "1.6"
group = "com.plannow.tapestry5"
version = "0.1-SNAPSHOT"
repositories {
mavenCentral()
// All things JBoss/Javassist/Hibernate
mavenRepo urls: "http://repository.jboss.org/nexus/content/groups/public/"
// For stable versions of the tapx libraries
mavenRepo urls: "http://howardlewisship.com/repository/"
// For non-stable versions of the tapx libraries
mavenRepo urls: "http://howardlewisship.com/snapshot-repository/"
// For access to Apache Staging (Preview) packages
mavenRepo urls: "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
}
test {
compileClasspath += configurations.provided
runtimeClasspath += configurations.provided
}
}
dependencies {
compile "org.apache.tapestry:tapestry-core:5.3.1"
// This adds automatic compression of JavaScript and CSS in production mode:
compile "org.apache.tapestry:tapestry-yuicompressor:5.3.1"
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
}
jar {
manifest {
attributes 'Tapestry-Module-Classes': 'com.plannow.tapestry5.ckeditor.services.CkEditorModule'
}
}