-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
23 lines (20 loc) · 822 Bytes
/
build.gradle
File metadata and controls
23 lines (20 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// this bit of complexity is to pull down the main build script from the alclabs maven repository
// and then apply it.
configurations { gradleScript }
repositories { mavenRepo url: 'http://repo.alcshare.com' }
dependencies { gradleScript group: 'com.alcshare', name: 'alclabs-gradle', ext: 'gradle', version: '1.16' }
apply from: configurations.gradleScript.resolve().iterator().next()
info {
name = 'Setpoint'
description = 'Add-On sample demonstrating setpoint groups'
version = '2.0'
vendor = 'ALC Labs'
}
dependencies {
compile 'jstl:jstl:1.1.2'
compile 'taglibs:standard:1.1.2'
compile 'org.apache.struts:struts-core:1.3.8'
compile 'org.apache.struts:struts-taglib:1.3.8'
providedCompile 'com.controlj.green:directaccess-api-addon:1.1.0'
providedCompile 'javax.servlet:servlet-api:2.5'
}