-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
53 lines (42 loc) · 1.2 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
50
51
52
53
plugins {
id 'java-library'
id 'maven'
}
group = 'pw.stamina.plugins'
version = '1.0.0-SNAPSHOT'
tasks.withType(JavaCompile) {
sourceCompatibility = 1.8
targetCompatibility = 1.8
options.encoding = 'UTF-8'
}
ext {
junit_platform_version = '1.1.0'
junit_jupiter_version = '5.1.0'
mockito_version = '2.18.0'
}
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
compileOnly 'pw.stamina.minecraftapi:minecraft-api:1.0.0-SNAPSHOT'
compileOnly 'javax.inject:javax.inject:1'
testImplementation "org.junit.platform:junit-platform-runner:$junit_platform_version"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_jupiter_version"
runtimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit_jupiter_version"
testImplementation "org.mockito:mockito-core:$mockito_version"
}
/*
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
*/
/*
Relations is a Stamina compatibility plugin for resolving
client-to-entity relationships. This allows other plugins
to use, and extend, an unified system which indicates how
entities should be treated.
*/