forked from TypeFox/publishing
-
Notifications
You must be signed in to change notification settings - Fork 1
/
artifacts.gradle
106 lines (102 loc) · 2.78 KB
/
artifacts.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
* Definition of artifacts to be published
* Copyright 2016 TypeFox GmbH
*/
osspub {
project {
name 'XtextLib'
group 'org.eclipse.xtext'
artifact {
name 'xtext-dev-bom'
excludeExtension 'jar'
}
artifact 'org.eclipse.xtext.xbase.lib'
artifact 'org.eclipse.xtext.xbase.lib.gwt'
artifact {
name 'org.eclipse.xtend.lib'
group 'org.eclipse.xtend'
}
artifact {
name 'org.eclipse.xtend.lib.macro'
group 'org.eclipse.xtend'
}
artifact {
name 'org.eclipse.xtend.lib.gwt'
group 'org.eclipse.xtend'
}
}
project {
name 'XtextCore'
group 'org.eclipse.xtext'
artifact 'org.eclipse.xtext'
artifact 'org.eclipse.xtext.ide'
artifact 'org.eclipse.xtext.util'
artifact 'org.eclipse.xtext.testing'
artifact 'org.eclipse.xtext.xtext.ide'
artifact 'org.eclipse.xtext.xtext.generator'
artifact 'org.eclipse.xtext.xtext.wizard'
}
project {
name 'XtextExtras'
group 'org.eclipse.xtext'
artifact 'org.eclipse.xtext.common.types'
artifact 'org.eclipse.xtext.java'
artifact 'org.eclipse.xtext.purexbase'
artifact 'org.eclipse.xtext.purexbase.ide'
artifact 'org.eclipse.xtext.xbase'
artifact 'org.eclipse.xtext.xbase.ide'
artifact 'org.eclipse.xtext.xbase.testing'
artifact 'org.eclipse.xtext.smap'
artifact 'org.eclipse.xtext.builder.standalone'
artifact 'org.eclipse.xtext.ecore'
artifact 'org.eclipse.xtext.generator'
}
project {
name 'XtextWeb'
group 'org.eclipse.xtext'
artifact 'org.eclipse.xtext.web'
artifact 'org.eclipse.xtext.xbase.web'
artifact 'org.eclipse.xtext.web.servlet'
}
project {
name 'XtextMaven'
group 'org.eclipse.xtext'
artifact 'xtext-maven-plugin'
artifact {
name 'org.eclipse.xtext.maven.parent'
excludeExtension 'jar'
}
}
project {
name 'XtextXtend'
group 'org.eclipse.xtend'
artifact 'org.eclipse.xtend.core'
artifact 'org.eclipse.xtend.ide.common'
artifact 'xtend-maven-plugin'
artifact {
name 'xtend-archetype'
excludeClassifier 'javadoc'
}
artifact {
name 'org.eclipse.xtend.maven.parent'
excludeExtension 'jar'
}
}
}
task publishMavenXtext {
group = 'Publishing'
description = 'Publishes all Xtext Maven artifacts'
dependsOn 'publishXtextLib', 'publishXtextCore', 'publishXtextExtras', 'publishXtextWeb', 'publishXtextMaven', 'publishXtextXtend'
}
task deployMavenXtext {
group = 'Publishing'
description = 'Deploys all Xtext Maven artifacts to the local Maven repository'
dependsOn 'deployXtextLib', 'deployXtextCore', 'deployXtextExtras', 'deployXtextWeb', 'deployXtextMaven', 'deployXtextXtend'
}
if (osspub.signJars) {
task signMavenXtextJars {
group = 'Signing'
description = 'Signs all Xtext Maven artifacts'
dependsOn 'signXtextLibJars', 'signXtextCoreJars', 'signXtextExtrasJars', 'signXtextWebJars', 'signXtextMavenJars', 'signXtextXtendJars'
}
}