forked from unruly/control
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (39 loc) · 960 Bytes
/
build.gradle
File metadata and controls
46 lines (39 loc) · 960 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
35
36
37
38
39
40
41
42
43
44
45
46
/*
* This file was generated by the Gradle 'init' task.
*
* This project uses @Incubating APIs which are subject to change.
*/
plugins {
id 'java-library'
id 'maven-publish'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
api 'org.hamcrest:java-hamcrest:2.0.0.0'
api 'org.hamcrest:hamcrest-junit:2.0.0.0'
api 'org.jetbrains:annotations:RELEASE'
implementation 'org.jetbrains:annotations:16.0.2'
testImplementation 'junit:junit:4.13.1'
testImplementation 'org.mockito:mockito-core:5.4.0'
}
group = 'co.unruly'
version = '0.8.14-SNAPSHOT'
description = 'control'
java {
withSourcesJar()
withJavadocJar()
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}
tasks.withType(Javadoc).configureEach {
options.encoding = 'UTF-8'
}