Skip to content

Commit 7736287

Browse files
authored
Merge pull request #494 from IETS3/bugfix/ghp-publication
[breaking] publication: remove allScripts publication
2 parents 4d4fa4a + 169fabf commit 7736287

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

build.gradle

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -218,12 +218,6 @@ task buildAndRunTests(type: TestLanguages, dependsOn: buildLanguages) {
218218

219219
check.dependsOn buildAndRunTests
220220

221-
task packageAllScripts(type: Zip, dependsOn: buildAllScripts) {
222-
archiveBaseName = 'org.iets3.opensource.allScripts'
223-
from artifactsDir
224-
include 'org.iets3.opensource.allScripts.build/**'
225-
}
226-
227221
task packageLanguages(type: Zip, dependsOn: buildLanguages) {
228222
archiveBaseName = 'org.iets3.opensource'
229223
from artifactsDir
@@ -247,7 +241,7 @@ task packageDistroWithDependencies(type: Zip, dependsOn: buildDistroWithDependen
247241
include 'org.iets3.opensource.distro/**'
248242
}
249243

250-
assemble.dependsOn packageAllScripts, packageLanguages, packageTests
244+
assemble.dependsOn packageLanguages, packageTests
251245

252246
publishing {
253247
repositories {
@@ -263,11 +257,6 @@ publishing {
263257
}
264258

265259
publications {
266-
allScripts(MavenPublication) {
267-
groupId 'org.iets3.opensource'
268-
artifactId 'allScripts'
269-
artifact packageAllScripts
270-
}
271260
openSource(MavenPublication) {
272261
groupId 'org.iets3'
273262
artifactId 'opensource'

0 commit comments

Comments
 (0)