diff --git a/.github/workflows/release-sdk.yaml b/.github/workflows/release-sdk.yaml index 30e8c902..37b06b1c 100644 --- a/.github/workflows/release-sdk.yaml +++ b/.github/workflows/release-sdk.yaml @@ -12,7 +12,7 @@ jobs: - uses: actions/setup-java@v4 with: - java-version: 21 + java-version: 1 distribution: 'temurin' server-id: oss-sonatype server-username: SONATYPE_USERNAME diff --git a/settings.gradle b/settings.gradle index 6ca7e0b6..c2eb0b4d 100644 --- a/settings.gradle +++ b/settings.gradle @@ -3,9 +3,9 @@ plugins { } rootProject.name = "lodging-connectivity-java-sdk" -include(":examples") +include(":examples", ":code") -def allModules = [':examples'] +def allModules = [':examples', ":code"] // Get the module to exclude from project properties or environment variables def excludeModule = gradle.startParameter.projectProperties['excludeModule'] ?: System.getenv('EXCLUDE_MODULE')