-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
32 lines (27 loc) · 890 Bytes
/
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
plugins {
id 'java'
}
/*
* $Id$
*
* Copyright (c) ${YEAR} Pegasystems Inc.
* All rights reserved.
*
* This software has been provided pursuant to a License
* Agreement containing restrictions on its use. The software
* contains valuable trade secrets and proprietary information of
* Pegasystems Inc and is protected by federal copyright law. It
* may not be copied, modified, translated or distributed in any
* form or medium, disclosed to third parties or used in any manner
* not provided for in said License Agreement except with written
* authorization from Pegasystems Inc.
*/group 'test'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'com.jayway.jsonpath', name: 'json-path', version: '2.0.0'
}