-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
96 lines (85 loc) · 2.69 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
plugins {
id "java"
id "java-library"
id "maven-publish"
id "signing"
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
group = "io.github.lxgaming"
archivesBaseName = "overwolfgameevents"
version = "1.0.1"
configurations {
}
repositories {
mavenCentral()
}
dependencies {
api("net.java.dev.jna:jna:5.9.0")
api("org.checkerframework:checker-qual:3.21.0")
}
java {
withJavadocJar()
withSourcesJar()
}
javadoc {
failOnError = false
}
processResources {
from("LICENSE")
rename("LICENSE", "LICENSE-${archivesBaseName}")
}
publishing {
publications {
mavenPublication(MavenPublication) {
from components.java
groupId group
artifactId archivesBaseName
version version
pom {
name = "OverwolfGameEvents"
description = "Unofficial Overwolf Game Events SDK Bindings for Java"
url = "https://github.com/LXGaming/OverwolfGameEvents"
developers {
developer {
id = "lxgaming"
name = "LXGaming"
}
}
issueManagement {
system = "GitHub Issues"
url = "https://github.com/LXGaming/OverwolfGameEvents/issues"
}
licenses {
license {
name = "The Apache License, Version 2.0"
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
scm {
connection = "scm:git:https://github.com/LXGaming/OverwolfGameEvents.git"
developerConnection = "scm:git:https://github.com/LXGaming/OverwolfGameEvents.git"
url = "https://github.com/LXGaming/OverwolfGameEvents"
}
}
}
}
repositories {
if (project.hasProperty("sonatypeUsername") && project.hasProperty("sonatypePassword")) {
maven {
name = "sonatype"
url = version.contains("-SNAPSHOT") ? "https://s01.oss.sonatype.org/content/repositories/snapshots" : "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2"
credentials {
username project.property("sonatypeUsername")
password project.property("sonatypePassword")
}
}
}
}
}
signing {
if (project.hasProperty("signingKey") && project.hasProperty("signingPassword")) {
useInMemoryPgpKeys(project.property("signingKey"), project.property("signingPassword"))
}
sign publishing.publications
}