Compare commits
No commits in common. "eb77f0a3d701bdb7ffcbb7d9ade77466cb59440e" and "0c4b42e0eeab2c1b0be063d9f1549d0d6f3a743e" have entirely different histories.
eb77f0a3d7
...
0c4b42e0ee
@ -1,6 +1,8 @@
|
||||
name: Groowt Check and Publish
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
tags:
|
||||
- v*
|
||||
jobs:
|
||||
@ -18,6 +20,7 @@ jobs:
|
||||
run: ./gradlew check
|
||||
- name: Publish to git.jessebrault.com
|
||||
run: >
|
||||
./gradlew publishGroowtAllPublicationToGiteaRepository &&
|
||||
./gradlew publishViewsPublicationToGiteaRepository &&
|
||||
./gradlew publishViewComponentsPublicationToGiteaRepository &&
|
||||
./gradlew publishWebViewComponentsPublicationToGiteaRepository &&
|
||||
@ -27,6 +30,7 @@ jobs:
|
||||
./gradlew publishFpPublicationToGiteaRepository
|
||||
- name: Publish to archiva.jessebrault.com
|
||||
run: >
|
||||
./gradlew publishGroowtAllPublicationToJbArchivaInternalRepository &&
|
||||
./gradlew publishViewsPublicationToJbArchivaInternalRepository &&
|
||||
./gradlew publishViewComponentsPublicationToJbArchivaInternalRepository &&
|
||||
./gradlew publishWebViewComponentsPublicationToJbArchivaInternalRepository &&
|
||||
|
@ -16,7 +16,7 @@ dependencies {
|
||||
publishing {
|
||||
publications {
|
||||
create('groowtAll', MavenPublication) {
|
||||
artifactId = 'all'
|
||||
artifactId = 'groowt-all'
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
|
@ -24,7 +24,7 @@ jar {
|
||||
publishing {
|
||||
publications {
|
||||
create('di', MavenPublication) {
|
||||
artifactId = 'util-di'
|
||||
artifactId = 'groowt-util-di'
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
|
@ -19,7 +19,7 @@ jar {
|
||||
publishing {
|
||||
publications {
|
||||
create('extensible', MavenPublication) {
|
||||
artifactId = 'util-extensible'
|
||||
artifactId = 'groowt-util-extensible'
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
|
@ -24,7 +24,7 @@ jar {
|
||||
publishing {
|
||||
publications {
|
||||
create('fp', MavenPublication) {
|
||||
artifactId = 'util-fp'
|
||||
artifactId = 'groowt-util-fp'
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
|
@ -22,14 +22,10 @@ java {
|
||||
withSourcesJar()
|
||||
}
|
||||
|
||||
jar {
|
||||
archiveBaseName = 'groowt-view-components'
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
create('viewComponents', MavenPublication) {
|
||||
artifactId = 'view-components'
|
||||
artifactId = 'groowt-view-components'
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
|
@ -25,14 +25,10 @@ java {
|
||||
withSourcesJar()
|
||||
}
|
||||
|
||||
jar {
|
||||
archiveBaseName = 'groowt-views'
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
create('views', MavenPublication) {
|
||||
artifactId = 'views'
|
||||
artifactId = 'groowt-views'
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
|
@ -219,10 +219,6 @@ tasks.named('sourcesJar', Jar) {
|
||||
dependsOn 'generateAllAntlr'
|
||||
}
|
||||
|
||||
jar {
|
||||
archiveBaseName = 'groowt-web-view-components-compiler'
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
create('webViewComponentsCompiler', MavenPublication) {
|
||||
|
@ -133,10 +133,6 @@ java {
|
||||
withSourcesJar()
|
||||
}
|
||||
|
||||
jar {
|
||||
archiveBaseName = 'groowt-web-view-components'
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
create('webViewComponents', MavenPublication) {
|
||||
|
Loading…
Reference in New Issue
Block a user