-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
87 lines (73 loc) · 1.85 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
group 'org.qbic'
version '0.2'
buildscript {
repositories {
jcenter()
}
dependencies {
// classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1'
//classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.4.0"
}
}
allprojects {
repositories {
jcenter()
}
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'java'
}
dependencies {
compile group: 'com.esotericsoftware.yamlbeans', name: 'yamlbeans', version: '1.09'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
/**
bintray {
user = bintrayUser
key = bintrayKey
publications = ['MyPublication']
publish = true
pkg {
repo = 'qbic-repos'
name = 'templatebuilder'
licenses = ['MIT']
vcsUrl = "https://github.com/qbicsoftware/templatebuilder"
version {
name = 'beta'
desc = 'Test'
released = new Date()
vcsTag = version
attributes = ['gradle-plugin': 'com.use.less:com.use.less.gradle:gradle-useless-plugin']
}
}
}**/
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
// add javadoc/source jar tasks as artifacts
artifacts {
archives sourcesJar //, javadocJar
}
publishing {
publications {
MyPublication(MavenPublication) {
from components.java
groupId 'org.qbic'
artifactId 'templatebuilder'
artifact sourcesJar {
classifier "sources"
}
artifact javadocJar {
classifier "javadoc"
}
}
}
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}