aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle35
1 files changed, 31 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index fb83c0a..b4b5242 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,16 +1,43 @@
1/*
2 * lemonad - Some functional sweetness for Java
3 * Copyright (C) 2019 Pacien TRAN-GIRARD
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU Affero General Public License as
7 * published by the Free Software Foundation, either version 3 of the
8 * License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Affero General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
1plugins { 19plugins {
2 id 'java' 20 id 'java'
3} 21}
4 22
5group 'org.pacien' 23group 'org.pacien'
6version '1.0-SNAPSHOT' 24version '1.0-SNAPSHOT'
7 25
8sourceCompatibility = 1.8 26sourceCompatibility = 1.11
27
28test {
29 useJUnitPlatform()
30}
9 31
10repositories { 32repositories {
11 mavenCentral() 33 mavenCentral()
12} 34}
13 35
14dependencies { 36dependencies {
15 testCompile group: 'junit', name: 'junit', version: '4.12' 37 compileOnly 'org.projectlombok:lombok:1.18.6'
38 testCompileOnly 'org.projectlombok:lombok:1.18.6'
39 annotationProcessor 'org.projectlombok:lombok:1.18.6'
40
41 testCompile 'org.junit.jupiter:junit-jupiter-api:5.4.0'
42 testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.4.0'
16} 43}