-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
43 lines (36 loc) · 902 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
33
34
35
36
37
38
39
40
41
42
43
plugins {
id 'java'
id 'maven-publish'
}
group 'com.github.artbits'
version '0.0.1'
repositories {
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
maven { url 'https://www.jitpack.io' }
}
dependencies {
// implementation 'org.iq80.leveldb:leveldb:0.12'
implementation 'com.github.artbits:leveldb-beta:1.0.0'
implementation 'io.protostuff:protostuff-core:1.8.0'
implementation 'io.protostuff:protostuff-runtime:1.8.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
}
test {
useJUnitPlatform()
}
java {
withSourcesJar()
withJavadocJar()
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}
wrapper {
gradleVersion = "7.4"
distributionType = Wrapper.DistributionType.ALL
}