This repository has been archived by the owner on Jun 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
73 lines (61 loc) · 2.01 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
plugins {
id "com.github.johnrengelman.shadow" version "6.1.0" apply false
id 'io.github.karlatemp.publication-sign' version '1.1.0'
}
allprojects {
group 'io.github.karlatemp.jvm-hook-framework'
version '1.2.0'
repositories {
mavenCentral()
}
pluginManager.withPlugin('java') {
dependencies {
compileOnly group: 'org.jetbrains', name: 'annotations', version: '20.1.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.0'
}
test {
useJUnitPlatform()
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
compileTestJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
}
allprojects {
pluginManager.withPlugin('maven-publish') {
publishing {
repositories {
maven {
setName("MavenCentral")
// Maven Central
setUrl("https://oss.sonatype.org/service/local/staging/deploy/maven2")
credentials {
def prop = { name ->
if (rootProject.hasProperty(name)) {
return rootProject.property(name)
}
return ""
}
username = prop('sonatype.user')
password = prop('sonatype.key')
}
metadataSources.ignoreGradleMetadataRedirection()
}
mavenLocal {
metadataSources.ignoreGradleMetadataRedirection()
}
}
}
}
}
publicationSign {
setupWorkflow { workflow ->
workflow.fastSetup("keys/key.pub", "keys/key.pri")
}
}