forked from tveimo/jsass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaven.gradle
63 lines (53 loc) · 2.09 KB
/
maven.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
apply plugin: 'maven'
uploadArchives {
repositories {
mavenDeployer {
if (project.hasProperty("ossrhUsername") && project.hasProperty("ossrhPassword")) {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
}
pom.project {
name 'com.github.tveimo:jsass'
packaging 'jar'
description 'SASS compiler using libsass.'
url 'https://github.com/tveimo/jsass'
licenses {
license {
name 'MIT'
url 'https://raw.githubusercontent.com/bit3/jsass/master/LICENSE'
}
}
organization {
name 'bit3'
url 'http://bit3.io'
}
developers {
developer {
id 'tril'
name 'Tristan Lins'
email '[email protected]'
url 'https://tristan.lins.io'
}
}
issueManagement {
system 'GitLab.com'
url 'https://gitlab.com/jsass/jsass/issues'
}
ciManagement {
system 'GitLab.com'
url 'https://gitlab.com/jsass/jsass/pipelines'
}
scm {
url 'https://gitlab.com/jsass/jsass'
connection 'scm:git:https://gitlab.com/jsass/jsass.git'
developerConnection 'scm:git:[email protected]:jsass/jsass.git'
}
}
}
}
}