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