Compare commits
3 Commits
0c4b42e0ee
...
eb77f0a3d7
Author | SHA1 | Date | |
---|---|---|---|
![]() |
eb77f0a3d7 | ||
![]() |
71f1547c6a | ||
![]() |
1b63f2807c |
@ -1,8 +1,6 @@
|
|||||||
name: Groowt Check and Publish
|
name: Groowt Check and Publish
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
tags:
|
tags:
|
||||||
- v*
|
- v*
|
||||||
jobs:
|
jobs:
|
||||||
@ -20,7 +18,6 @@ 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 &&
|
||||||
@ -30,7 +27,6 @@ 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 = 'groowt-all'
|
artifactId = 'all'
|
||||||
from components.java
|
from components.java
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@ jar {
|
|||||||
publishing {
|
publishing {
|
||||||
publications {
|
publications {
|
||||||
create('di', MavenPublication) {
|
create('di', MavenPublication) {
|
||||||
artifactId = 'groowt-util-di'
|
artifactId = 'util-di'
|
||||||
from components.java
|
from components.java
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -19,7 +19,7 @@ jar {
|
|||||||
publishing {
|
publishing {
|
||||||
publications {
|
publications {
|
||||||
create('extensible', MavenPublication) {
|
create('extensible', MavenPublication) {
|
||||||
artifactId = 'groowt-util-extensible'
|
artifactId = 'util-extensible'
|
||||||
from components.java
|
from components.java
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@ jar {
|
|||||||
publishing {
|
publishing {
|
||||||
publications {
|
publications {
|
||||||
create('fp', MavenPublication) {
|
create('fp', MavenPublication) {
|
||||||
artifactId = 'groowt-util-fp'
|
artifactId = 'util-fp'
|
||||||
from components.java
|
from components.java
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -22,10 +22,14 @@ java {
|
|||||||
withSourcesJar()
|
withSourcesJar()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
jar {
|
||||||
|
archiveBaseName = 'groowt-view-components'
|
||||||
|
}
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
publications {
|
publications {
|
||||||
create('viewComponents', MavenPublication) {
|
create('viewComponents', MavenPublication) {
|
||||||
artifactId = 'groowt-view-components'
|
artifactId = 'view-components'
|
||||||
from components.java
|
from components.java
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,10 +25,14 @@ java {
|
|||||||
withSourcesJar()
|
withSourcesJar()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
jar {
|
||||||
|
archiveBaseName = 'groowt-views'
|
||||||
|
}
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
publications {
|
publications {
|
||||||
create('views', MavenPublication) {
|
create('views', MavenPublication) {
|
||||||
artifactId = 'groowt-views'
|
artifactId = 'views'
|
||||||
from components.java
|
from components.java
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -219,6 +219,10 @@ 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,6 +133,10 @@ 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