-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
49 lines (40 loc) · 1.03 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
plugins
{
id 'java'
id 'eclipse'
id 'war'
}
group = 'com.ibm.cicsdev'
archivesBaseName='cics-java-liberty-link'
version = '1.0.0'
// If in Eclipse, add Javadoc to the local project classpath
eclipse
{
classpath
{
downloadJavadoc = true
}
}
repositories
{
mavenCentral()
}
java
{
toolchain
{
languageVersion = JavaLanguageVersion.of(java_version)
vendor = JvmVendorSpec.IBM
implementation = JvmImplementation.J9
}
}
dependencies
{
// CICS TS V5.5 Maven BOM (as of 19th May 2020)
compileOnly enforcedPlatform("com.ibm.cics:com.ibm.cics.ts.bom:5.5-20200519131930-PH25409")
//annotationProcessor enforcedPlatform("com.ibm.cics:com.ibm.cics.ts.bom:5.5-20200519131930-PH25409")
// Don't include JCICS in the final build (no need for version because we have BOM)
compileOnly("com.ibm.cics:com.ibm.cics.server")
compileOnly("com.ibm.cics:com.ibm.cics.server.invocation.annotations")
annotationProcessor("com.ibm.cics:com.ibm.cics.server.invocation:6.1")
}