blob: 467385e16fc789cd7d9bb5e234171172ade2669e (
plain)
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
|
group 'org.jetbrains.dokka'
version '1.0.0-beta-1038'
import proguard.gradle.ProGuardTask
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'net.sf.proguard:proguard-gradle:5.2.1'
}
}
apply plugin: 'java'
apply plugin: 'maven-publish'
task wrapper(type: Wrapper) {
gradleVersion = '2.5'
distributionUrl = "https://services.gradle.org/distributions/gradle-$gradleVersion-all.zip"
}
task sourceJar(type: Jar) {
from fileTree('../src')
}
task proguard(type: ProGuardTask) {
configuration 'dokka.pro'
injars 'build/libs/dokka-fatjar-1.0.0-beta-1038.jar'
outjars 'build/libs/dokka-fatjar-1.0.0-beta-1038.out.jar'
}
jar {
manifest {
attributes "Implementation-Title": "Dokka Kotlin Documentation tool"
attributes "Implementation-Version": version
attributes "Main-Class" : "org.jetbrains.dokka.MainKt"
}
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
fileTree(project.file('../lib')).filter {
it.name.endsWith('.jar') &&
!it.name.contains("-sources") &&
!it.name.contains("-javadoc")
}.each {
from (zipTree(it)) {
exclude 'META-INF/MANIFEST.MF'
exclude 'META-INF/*.SF'
exclude 'META-INF/*.DSA'
exclude 'META-INF/*.RSA'
exclude '**/*.kt'
exclude '**/*.java'
exclude '**/*.md'
}
}
from (zipTree(project.file('../out/dokka.jar'))) {
exclude 'META-INF/MANIFEST.MF'
exclude 'META-INF/*.SF'
exclude 'META-INF/*.DSA'
exclude 'META-INF/*.RSA'
exclude '**/*.kt'
exclude '**/*.java'
exclude '**/*.md'
}
}
publishing {
publications {
maven(MavenPublication) {
from components.java
artifact sourceJar {
classifier "sources"
}
}
}
}
|