Compare commits
3 Commits
0c4b42e0ee
...
eb77f0a3d7
Author | SHA1 | Date | |
---|---|---|---|
![]() |
eb77f0a3d7 | ||
![]() |
71f1547c6a | ||
![]() |
1b63f2807c |
@ -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 &&
|
||||
|
@ -16,7 +16,7 @@ dependencies {
|
||||
publishing {
|
||||
publications {
|
||||
create('groowtAll', MavenPublication) {
|
||||
artifactId = 'groowt-all'
|
||||
artifactId = 'all'
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
|
@ -24,7 +24,7 @@ jar {
|
||||
publishing {
|
||||
publications {
|
||||
create('di', MavenPublication) {
|
||||
artifactId = 'groowt-util-di'
|
||||
artifactId = 'util-di'
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
|
@ -19,7 +19,7 @@ jar {
|
||||
publishing {
|
||||
publications {
|
||||
create('extensible', MavenPublication) {
|
||||
artifactId = 'groowt-util-extensible'
|
||||
artifactId = 'util-extensible'
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
|
@ -24,7 +24,7 @@ jar {
|
||||
publishing {
|
||||
publications {
|
||||
create('fp', MavenPublication) {
|
||||
artifactId = 'groowt-util-fp'
|
||||
artifactId = 'util-fp'
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
}
|
||||
}
|
||||
|
@ -25,10 +25,14 @@ java {
|
||||
withSourcesJar()
|
||||
}
|
||||
|
||||
jar {
|
||||
archiveBaseName = 'groowt-views'
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
create('views', MavenPublication) {
|
||||
artifactId = 'groowt-views'
|
||||
artifactId = 'views'
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
|
@ -219,6 +219,10 @@ tasks.named('sourcesJar', Jar) {
|
||||
dependsOn 'generateAllAntlr'
|
||||
}
|
||||
|
||||
jar {
|
||||
archiveBaseName = 'groowt-web-view-components-compiler'
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
create('webViewComponentsCompiler', MavenPublication) {
|
||||
|
@ -133,6 +133,10 @@ java {
|
||||
withSourcesJar()
|
||||
}
|
||||
|
||||
jar {
|
||||
archiveBaseName = 'groowt-web-view-components'
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
create('webViewComponents', MavenPublication) {
|
||||
|
Loading…
Reference in New Issue
Block a user