-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (27 loc) · 849 Bytes
/
build.gradle
File metadata and controls
35 lines (27 loc) · 849 Bytes
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
description = """
Gradle build script for Advanced Programming 2019/2020 lab exercises.
"""
group 'id.ac.ui.cs.advprog'
version '1.0-SNAPSHOT'
// Project-wide constants
ext.java_version = '11'
ext.java_version = '11'
ext.junit4_version = '4.13'
ext.junit5_jupiter_version = '5.6.0'
ext.mockito_version = '3.2.4'
ext.project_rootdir = project.rootDir.toString()
// Subprojects configuration
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
sourceCompatibility = java_version
targetCompatibility = java_version
repositories {
mavenCentral()
}
dependencies {
testImplementation group: 'org.mockito', name: 'mockito-core', version: mockito_version
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: junit5_jupiter_version
}
}