forked from mattbishop/gemini.blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublish.gradle
More file actions
38 lines (34 loc) · 1.12 KB
/
publish.gradle
File metadata and controls
38 lines (34 loc) · 1.12 KB
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
apply plugin: 'ivy-publish'
buildscript {
repositories { mavenCentral() }
dependencies {
classpath 'org.apache.ivy:ivy:2.4.0'
classpath 'com.jcraft:jsch:0.1.53'
}
}
def version = '2.0.0.M03'
publishing {
publications {
blueprintIo(IvyPublication) {
organisation 'org.eclipse.virgo.mirrored'
module 'org.eclipse.gemini.blueprint.io'
revision "${version}"
artifact(file("io/target/gemini-blueprint-io-${version}.jar"))
}
blueprintCore(IvyPublication) {
organisation 'org.eclipse.virgo.mirrored'
module 'org.eclipse.gemini.blueprint.core'
revision "${version}"
artifact(file("core/target/gemini-blueprint-core-${version}.jar"))
}
blueprintExtender(IvyPublication) {
organisation 'org.eclipse.virgo.mirrored'
module 'org.eclipse.gemini.blueprint.extender'
revision "${version}"
artifact(file("extender/target/gemini-blueprint-extender-${version}.jar"))
}
}
repositories {
ivy { url "$buildDir" }
}
}