Compare commits

...

3 Commits

Author SHA1 Message Date
Jesse Brault
eb77f0a3d7 Remove groowt all publishing.
All checks were successful
Groowt Check and Publish / ci (push) Successful in 5m38s
2025-02-16 10:27:12 -06:00
Jesse Brault
71f1547c6a Update archive base names and artifact ids. 2025-02-16 10:26:00 -06:00
Jesse Brault
1b63f2807c Set action to only run when versioned tag is pushed. 2025-02-16 10:02:37 -06:00
9 changed files with 22 additions and 10 deletions

View File

@ -1,8 +1,6 @@
name: Groowt Check and Publish
on:
push:
branches:
- main
tags:
- v*
jobs:
@ -20,7 +18,6 @@ jobs:
run: ./gradlew check
- name: Publish to git.jessebrault.com
run: >
./gradlew publishGroowtAllPublicationToGiteaRepository &&
./gradlew publishViewsPublicationToGiteaRepository &&
./gradlew publishViewComponentsPublicationToGiteaRepository &&
./gradlew publishWebViewComponentsPublicationToGiteaRepository &&
@ -30,7 +27,6 @@ jobs:
./gradlew publishFpPublicationToGiteaRepository
- name: Publish to archiva.jessebrault.com
run: >
./gradlew publishGroowtAllPublicationToJbArchivaInternalRepository &&
./gradlew publishViewsPublicationToJbArchivaInternalRepository &&
./gradlew publishViewComponentsPublicationToJbArchivaInternalRepository &&
./gradlew publishWebViewComponentsPublicationToJbArchivaInternalRepository &&

View File

@ -16,7 +16,7 @@ dependencies {
publishing {
publications {
create('groowtAll', MavenPublication) {
artifactId = 'groowt-all'
artifactId = 'all'
from components.java
}
}

View File

@ -24,7 +24,7 @@ jar {
publishing {
publications {
create('di', MavenPublication) {
artifactId = 'groowt-util-di'
artifactId = 'util-di'
from components.java
}
}

View File

@ -19,7 +19,7 @@ jar {
publishing {
publications {
create('extensible', MavenPublication) {
artifactId = 'groowt-util-extensible'
artifactId = 'util-extensible'
from components.java
}
}

View File

@ -24,7 +24,7 @@ jar {
publishing {
publications {
create('fp', MavenPublication) {
artifactId = 'groowt-util-fp'
artifactId = 'util-fp'
from components.java
}
}

View File

@ -22,10 +22,14 @@ java {
withSourcesJar()
}
jar {
archiveBaseName = 'groowt-view-components'
}
publishing {
publications {
create('viewComponents', MavenPublication) {
artifactId = 'groowt-view-components'
artifactId = 'view-components'
from components.java
}
}

View File

@ -25,10 +25,14 @@ java {
withSourcesJar()
}
jar {
archiveBaseName = 'groowt-views'
}
publishing {
publications {
create('views', MavenPublication) {
artifactId = 'groowt-views'
artifactId = 'views'
from components.java
}
}

View File

@ -219,6 +219,10 @@ tasks.named('sourcesJar', Jar) {
dependsOn 'generateAllAntlr'
}
jar {
archiveBaseName = 'groowt-web-view-components-compiler'
}
publishing {
publications {
create('webViewComponentsCompiler', MavenPublication) {

View File

@ -133,6 +133,10 @@ java {
withSourcesJar()
}
jar {
archiveBaseName = 'groowt-web-view-components'
}
publishing {
publications {
create('webViewComponents', MavenPublication) {