-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
86 lines (70 loc) · 1.77 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
apply plugin: 'java'
apply plugin: 'maven'
group 'com.excelmicro.lib.fx'
version '1.1.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url "https://raw.github.com/synergian/wagon-git/releases" }
maven {
credentials {
username BB_USERNAME
password BB_PASSWORD
}
url "https://api.bitbucket.org/1.0/repositories/excelmicro/maven/raw/releases"
}
}
configurations {
deployerJar
}
dependencies {
deployerJar "ar.com.synergian:wagon-git:0.2.5"
deployerJar "org.apache.maven.wagon:wagon-ssh:2.2+"
}
task sourceJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadoc(overwrite: true, type: Javadoc) {
source = sourceSets.main.allJava
destinationDir = file("${project.projectDir}/docs/")
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives jar
archives sourceJar
archives javadocJar
}
javadoc {
source = sourceSets.main.allJava
}
uploadArchives {
repositories {
mavenDeployer {
configuration = configurations.deployerJar
repository( url: "git:releases://[email protected]:excelmicro/maven.git") {
authentication( userName: BB_USERNAME, password: BB_PASSWORD )
}
pom.project {
name 'com.excelmicro.lib.fx:Toaster'
packaging 'jar'
description 'Tiny JavaFX Toast Notification Implementation'
url 'https://github.com/excelmicro/FX-Toaster'
inceptionYear '2017'
organization {
name 'Excel Micro LLC'
url 'http://www.excelmicro.com/'
}
developers {
developer {
name 'Elizabeth Harper'
email '[email protected]'
}
}
}
}
}
}