-
Notifications
You must be signed in to change notification settings - Fork 44
/
build.gradle
60 lines (54 loc) · 1.36 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
plugins {
id 'maven-publish'
id 'signing'
id 'eclipse'
}
allprojects {
group = 'com.github.aserg-ufmg'
version = '2.0.0'
}
subprojects {
repositories {
mavenCentral()
}
}
wrapper {
gradleVersion = '6.4.1'
}
ext.pomConfig = { pomName, pomDescription ->
return {
name = pomName
description = pomDescription
url = 'https://github.com/aserg-ufmg/RefDiff'
licenses {
license {
name = 'The MIT License (MIT)'
url = 'http://opensource.org/licenses/MIT'
}
}
developers {
developer {
id = 'danilofs'
name = 'Danilo Ferreira e Silva'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:https://github.com/aserg-ufmg/RefDiff.git'
developerConnection = 'scm:git:[email protected]:aserg-ufmg/RefDiff.git'
url = 'https://github.com/aserg-ufmg/RefDiff/tree/master'
}
}
}
publishing {
repositories {
maven {
url = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
credentials {
username = findProperty('ossrhUser')
password = findProperty('ossrhPassword')
}
//url = "file:build/repo"
}
}
}