-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
91 lines (77 loc) · 2.37 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
plugins {
id 'java'
id 'maven'
id 'signing'
}
group = 'com.ga2230'
version '2020.0.4'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
jar {
manifest {
attributes("Manifest-Version": "1.0", "Main-Class": "com.ga2230.dashboard.Dashboard");
}
}
task executableJar(type: Jar) {
manifest.from jar.manifest
from {
configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) }
} {
exclude "META-INF/*.SF"
exclude "META-INF/*.DSA"
exclude "META-INF/*.RSA"
}
with jar
}
task javadocJar(type: Jar) {
archiveClassifier.set('javadoc')
from javadoc
}
task sourcesJar(type: Jar) {
archiveClassifier.set('sources')
from sourceSets.main.allSource
}
artifacts {
archives javadocJar, sourcesJar
}
signing {
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: USERNAME, password: PASSWORD)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: USERNAME, password: PASSWORD)
}
pom.project {
name = rootProject.name
description = 'ShleamDashboard is a dashboard based on Shleam to better show Shleam\'s power.'
url = 'https://github.com/GeneralAngels/ShleamDashboard'
licenses {
license {
name = 'MIT License'
url = 'https://choosealicense.com/licenses/mit/'
}
}
developers {
developer {
id = 'NadavTasher'
name = 'Nadav Tasher'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:git://github.com/GeneralAngels/ShleamDashboard.git'
developerConnection = 'scm:git:git://github.com/GeneralAngels/ShleamDashboard.git'
url = 'https://github.com/GeneralAngels/ShleamDashboard'
}
}
}
}
}