-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
154 lines (135 loc) · 6.96 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
buildscript {
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
classpath "org.grails.plugins:hibernate5:${gormVersion-".RELEASE"}"
classpath "com.bertramlabs.plugins:asset-pipeline-gradle:2.15.1"
}
}
// 2018-07-17 ureel: Remove version from war filename
//version "0.1"
version ""
group "queue3"
apply plugin:"eclipse"
apply plugin:"idea"
apply plugin:"war"
apply plugin:"org.grails.grails-web"
apply plugin:"asset-pipeline"
apply plugin:"org.grails.grails-gsp"
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-logging"
compile "org.springframework.boot:spring-boot-autoconfigure"
compile "org.grails:grails-core"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "org.springframework.boot:spring-boot-starter-tomcat"
compile "org.grails:grails-web-boot"
compile "org.grails:grails-logging"
compile "org.grails:grails-plugin-rest"
compile "org.grails:grails-plugin-databinding"
compile "org.grails:grails-plugin-i18n"
compile "org.grails:grails-plugin-services"
compile "org.grails:grails-plugin-url-mappings"
compile "org.grails:grails-plugin-interceptors"
compile "org.grails.plugins:cache"
compile "org.grails.plugins:async"
compile "org.grails.plugins:scaffolding"
compile "org.grails.plugins:events"
compile "org.grails.plugins:hibernate5"
compile "org.hibernate:hibernate-core:5.1.16.Final"
compile "org.grails.plugins:gsp"
console "org.grails:grails-console"
profile "org.grails.profiles:web"
runtime "org.glassfish.web:el-impl:2.1.2-b03"
runtime "com.h2database:h2"
runtime "org.apache.tomcat:tomcat-jdbc"
runtime "com.bertramlabs.plugins:asset-pipeline-grails:2.15.1"
testCompile "org.grails:grails-gorm-testing-support"
testCompile "org.grails.plugins:geb"
testCompile "org.grails:grails-web-testing-support"
testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1"
testRuntime "net.sourceforge.htmlunit:htmlunit:2.18"
// 2018-07-17 ureel
// Link to jar files in lib folder
compile fileTree(dir: './lib', include: ['*.jar'])
// https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
// https://mvnrepository.com/artifact/commons-io/commons-io
compile group: 'commons-io', name: 'commons-io', version: '2.4'
// https://mvnrepository.com/artifact/net.oauth.core/oauth
compile group: 'net.oauth.core', name: 'oauth', version: '20100527'
// https://mvnrepository.com/artifact/net.oauth.core/oauth-provider
compile group: 'net.oauth.core', name: 'oauth-provider', version: '20100527'
// https://mvnrepository.com/artifact/commons-codec/commons-codec
compile group: 'commons-codec', name: 'commons-codec', version: '1.3'
// https://mvnrepository.com/artifact/oauth.signpost/signpost-core
compile group: 'oauth.signpost', name: 'signpost-core', version: '1.2.1.2'
// https://mvnrepository.com/artifact/oauth.signpost/signpost-commonshttp4
compile group: 'oauth.signpost', name: 'signpost-commonshttp4', version: '1.2.1.2'
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.1'
// https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore
// compile group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.0.1'
// runtime group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.2.1'
// compile group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.2.3'
compile group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.4.4'
// https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient
// compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.0.1'
// runtime group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.2.1'
// compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.2.3'
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.2'
// https://mvnrepository.com/artifact/org.aspectj/aspectjweaver
compile group: 'org.aspectj', name: 'aspectjweaver', version: '1.7.4'
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.5.5'
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.5.5'
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.5.5'
// https://mvnrepository.com/artifact/org.imsglobal/basiclti-util
compile group: 'org.imsglobal', name: 'basiclti-util', version: '1.1.2'
// File Uploader
// http://plugins.grails.org/plugin/pankajtandon/grails3-uploadr
compile 'com.nayidisha.grails.uploadr:grails3-uploadr:3.1.0'
// KSU Canvas API Library
compile group: 'javax.validation', name: 'validation-api', version:'1.1.0.Final'
compile group: 'com.google.code.gson', name: 'gson', version:'2.3'
// compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.4'
compile group: 'com.google.guava', name: 'guava', version:'18.0'
// compile group: 'org.apache.httpcomponents', name: 'httpclient', version:'4.2.1'
// 2018-07-16 ureel
// https://mvnrepository.com/artifact/mysql/mysql-connector-java
// runtime "mysql:mysql-connector-java:5.1.42"
// runtime "mysql:mysql-connector-java:5.1.46"
// runtime "mysql:mysql-connector-java:6.0.6"
// runtime group: 'mysql', name: 'mysql-connector-java', version: '8.0.13'
runtime group: 'mysql', name: 'mysql-connector-java', version: '8.0.13'
// https://mvnrepository.com/artifact/org.mariadb.jdbc/mariadb-java-client
// runtime 'org.mariadb.jdbc:mariadb-java-client:2.2.6'
// compile group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.3.0'
// 2018-07-20 ureel
// runtime group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.0'
// runtime group: 'com.sun.xml.bind', name: 'jaxb-core', version: '2.3.0'
// runtime group: 'com.sun.xml.bind', name: 'jaxb-impl', version: '2.3.0'
// runtime group: 'mysql', name: 'mysql-connector-java', version: '8.0.11'
}
bootRun {
jvmArgs('-Dspring.output.ansi.enabled=always')
addResources = true
String springProfilesActive = 'spring.profiles.active'
systemProperty springProfilesActive, System.getProperty(springProfilesActive)
}
assets {
minifyJs = true
minifyCss = true
}
// 2018-08-19 ureel
ext {
set "tomcat.version", "7.0.76"
}