Skip to content

Commit

Permalink
Fix java and dotnet builds
Browse files Browse the repository at this point in the history
  • Loading branch information
blampe committed Apr 18, 2024
1 parent 8f6e128 commit 12eb46c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ install_dotnet_sdk:: # Required by CI
find . -name '*.nupkg' -print -exec cp -p {} ${WORKING_DIR}/nuget \;

generate_dotnet: gen_dotnet_sdk # Required by CI
build_dotnet: # Required by CI
build_dotnet: build_dotnet_sdk # Required by CI

# Node.js SDK

Expand Down Expand Up @@ -113,8 +113,8 @@ build_python_sdk:: gen_python_sdk
rm ./bin/setup.py.bak && \
cd ./bin && python3 setup.py build sdist

generate_python: build_python_sdk # Required by CI
build_python: # Required by CI
generate_python: gen_python_sdk # Required by CI
build_python: build_python_sdk # Required by CI
install_python_sdk:: # Required by CI

# Java SDK
Expand All @@ -123,4 +123,6 @@ generate_java: # Required by CI
pulumi package gen-sdk ${SCHEMA_PATH} -o sdk --language java
cp ${WORKING_DIR}/README.md sdk/java
build_java: # Required by CI
cd sdk/java && gradle --console=plain build

install_java_sdk: # Required by CI
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,8 @@
"dependencies": {
"com.google.code.findbugs:jsr305": "3.0.2",
"com.google.code.gson:gson": "2.8.9",
"com.pulumi:pulumi": "0.9.9"
"com.pulumi:pulumi": "0.9.9",
"com.pulumi:kubernetes": "4.11.0"
},
"gradleNexusPublishPluginVersion": "1.1.0",
"gradleTest": ""
Expand Down
1 change: 1 addition & 0 deletions sdk/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ repositories {
dependencies {
implementation("com.google.code.findbugs:jsr305:3.0.2")
implementation("com.google.code.gson:gson:2.8.9")
implementation("com.pulumi:kubernetes:4.11.0")
implementation("com.pulumi:pulumi:0.9.9")
}

Expand Down

0 comments on commit 12eb46c

Please sign in to comment.