-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
130 lines (115 loc) · 3.82 KB
/
build.gradle.kts
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
plugins {
id("java")
id("maven-publish")
id("signing")
}
buildscript {
repositories {
mavenCentral()
google()
}
val kotlinVersion = "1.8.10"
dependencies {
classpath("com.android.tools.build:gradle:7.3.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
}
}
subprojects {
repositories {
mavenLocal()
google()
mavenCentral()
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots/") }
maven { url = uri("https://oss.sonatype.org/content/repositories/releases/") }
maven { url = uri("https://oss.sonatype.org/content/repositories/releases/") }
maven {
url = uri("http://teavm.org/maven/repository/")
isAllowInsecureProtocol = true
}
maven { url = uri("https://jitpack.io") }
}
configurations.configureEach {
// Check for updates every sync
resolutionStrategy.cacheChangingModulesFor(0, "seconds")
}
}
//configure(allprojects - project(":physx:android") - project(":examples:basic:android")) {
configure(allprojects) {
apply {
plugin("java")
}
java.sourceCompatibility = JavaVersion.VERSION_11
java.targetCompatibility = JavaVersion.VERSION_11
}
var libProjects = mutableSetOf(
project(":physx:core"),
project(":physx:teavm"),
project(":physx:desktop")
)
configure(libProjects) {
apply(plugin = "signing")
apply(plugin = "maven-publish")
group = LibExt.groupId
version = LibExt.libVersion
publishing {
repositories {
maven {
url = uri {
val ver = project.version.toString()
val isSnapshot = ver.uppercase().contains("SNAPSHOT")
val repoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
val repoUrlSnapshot = "https://oss.sonatype.org/content/repositories/snapshots/"
if(isSnapshot) repoUrlSnapshot else repoUrl
}
credentials {
username = System.getenv("USER")
password = System.getenv("PASSWORD")
}
}
}
}
tasks.withType<Javadoc> {
options.encoding = "UTF-8"
(options as StandardJavadocDocletOptions).addStringOption("Xdoclint:none", "-quiet")
}
java {
withJavadocJar()
withSourcesJar()
}
publishing.publications.configureEach {
if (this is MavenPublication) {
pom {
name.set("gdx-physx")
description.set("Physx physics for libgdx")
url.set("https://github.com/xpenatan/gdx-physx")
developers {
developer {
id.set("Xpe")
name.set("Natan")
}
}
scm {
connection.set("scm:git:git://https://github.com/xpenatan/gdx-physx.git")
developerConnection.set("scm:git:ssh://https://github.com/xpenatan/gdx-physx.git")
url.set("http://https://github.com/xpenatan/gdx-physx/tree/master")
}
licenses {
license {
name.set("The Apache License, Version 2.0")
url.set("https://www.apache.org/licenses/LICENSE-2.0.txt")
}
}
}
}
}
val signingKey = System.getenv("SIGNING_KEY")
val signingPassword = System.getenv("SIGNING_PASSWORD")
if(signingKey != null && signingPassword != null) {
signing {
useInMemoryPgpKeys(signingKey, signingPassword)
publishing.publications.configureEach {
sign(this)
}
}
}
}