Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/license-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: License Header Check

on:
pull_request:
branches: [ master, develop ]
branches: [ master, release/* ]
push:
branches: [ master, develop ]
branches: [ master, release/* ]

jobs:
license-check:
Expand Down
14 changes: 0 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,6 @@ jobs:
FLAMINGOCK_JRELEASER_GPG_SECRET_KEY: ${{ secrets.FLAMINGOCK_JRELEASER_GPG_SECRET_KEY }}
FLAMINGOCK_JRELEASER_GPG_PASSPHRASE: ${{ secrets.FLAMINGOCK_JRELEASER_GPG_PASSPHRASE }}

flamingock-core-api:
needs: [ build ]
uses: ./.github/workflows/module-release-graalvm.yml
with:
module: flamingock-core-api
secrets:
FLAMINGOCK_JRELEASER_GITHUB_TOKEN: ${{ secrets.FLAMINGOCK_JRELEASER_GITHUB_TOKEN }}
FLAMINGOCK_JRELEASER_MAVENCENTRAL_USERNAME: ${{ secrets.FLAMINGOCK_JRELEASER_MAVENCENTRAL_USERNAME }}
FLAMINGOCK_JRELEASER_MAVENCENTRAL_PASSWORD: ${{ secrets.FLAMINGOCK_JRELEASER_MAVENCENTRAL_PASSWORD }}
FLAMINGOCK_JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.FLAMINGOCK_JRELEASER_GPG_PUBLIC_KEY }}
FLAMINGOCK_JRELEASER_GPG_SECRET_KEY: ${{ secrets.FLAMINGOCK_JRELEASER_GPG_SECRET_KEY }}
FLAMINGOCK_JRELEASER_GPG_PASSPHRASE: ${{ secrets.FLAMINGOCK_JRELEASER_GPG_PASSPHRASE }}

flamingock-core-commons:
needs: [ build ]
uses: ./.github/workflows/module-release-graalvm.yml
Expand Down Expand Up @@ -530,7 +517,6 @@ jobs:
needs: [
flamingock-core,
flamingock-core-commons,
flamingock-core-api,
flamingock-processor,
flamingock-graalvm,
flamingock-cloud,
Expand Down
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ allprojects {
group = "io.flamingock"
version = "1.2.0-beta.3"

extra["templateApiVersion"] = "1.3.0"
extra["generalUtilVersion"] = "1.3.0"
extra["templateApiVersion"] = "1.3.1"
extra["generalUtilVersion"] = "1.5.0"
extra["coreApiVersion"] = "1.3.0"

repositories {
mavenLocal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
val coreProjects = setOf(
"flamingock-core",
"flamingock-core-commons",
"flamingock-core-api",
"flamingock-processor",
"flamingock-graalvm",
"flamingock-test-support"
Expand Down
3 changes: 2 additions & 1 deletion cloud/flamingock-cloud/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
val coreApiVersion: String by extra
dependencies {
// Core
implementation(project(":core:flamingock-core"))
api(project(":core:flamingock-core-api"))
api("io.flamingock:flamingock-core-api:${coreApiVersion}")
// target systems
api(project(":core:target-systems:nontransactional-target-system"))
api(project(":core:target-systems:couchbase-target-system"))
Expand Down
3 changes: 2 additions & 1 deletion community/flamingock-community/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
val coreApiVersion: String by extra
dependencies {
// Core
api(project(":core:flamingock-core"))
api(project(":core:flamingock-core-api"))
api("io.flamingock:flamingock-core-api:${coreApiVersion}")
// target systems
api(project(":core:target-systems:nontransactional-target-system"))
api(project(":core:target-systems:couchbase-target-system"))
Expand Down
19 changes: 0 additions & 19 deletions core/flamingock-core-api/build.gradle.kts

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading