-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
92 lines (82 loc) · 2.63 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
plugins {
id 'java-library'
id 'maven-publish'
id 'signing'
}
subprojects {
apply plugin: 'java-library'
apply plugin: 'maven-publish'
apply plugin: 'signing'
group 'io.vproxy'
version = '1.2.2'
java {
sourceCompatibility = '21'
targetCompatibility = '21'
withSourcesJar()
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
task javadocJar(type: Jar) {
archiveClassifier = 'javadoc'
from "$buildDir/docs/javadoc"
}
def releaseName = "graal-sdk-mock-" + project.name
publishing {
publications {
maven(MavenPublication) {
from components.java
artifactId releaseName
artifact(javadocJar)
pom {
name = 'io.vproxy.' + releaseName
description = releaseName
url = 'https://vproxy.io'
licenses {
license {
name = 'MIT License'
url = 'https://github.com/vproxy-tools/graal-sdk-mock/blob/master/LICENSE'
}
}
developers {
developer {
id = 'wkgcass'
name = 'K.G. Wang'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:git://github.com/vproxy-tools/graal-sdk-mock.git'
developerConnection = 'scm:git:git://github.com/vproxy-tools/graal-sdk-mock.git'
url = 'https://github.com/vproxy-tools/graal-sdk-mock'
}
}
}
}
repositories {
maven {
credentials {
username System.getProperty("MavenPublishUsername")
password System.getProperty("MavenPublishPassword")
}
def releasesRepoUrl = 'https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/'
def snapshotsRepoUrl = 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
url = version.contains('-DEV') ? snapshotsRepoUrl : releasesRepoUrl
}
}
}
if (!System.getProperty("MavenLocalInstall", "false").equals("true")) {
signing {
sign publishing.publications.maven
}
}
}
project(':word') {
}
project(':nativeimage') {
dependencies {
api project(':word')
}
}
project(':runtime') {
}