famous-mouse-60188
05/27/2026, 8:36 AMadamant-lawyer-19698
05/27/2026, 9:06 AM<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>${mainClass}</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.7.1</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>${mainClass}</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-my-jar-with-dependencies</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<mainClass>${mainClass}</mainClass>
<commandlineArgs>${mainArgs}</commandlineArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-wrapper-plugin</artifactId>
<version>3.3.2</version>
<configuration>
<mavenVersion>3.9.9</mavenVersion>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>adamant-lawyer-19698
05/27/2026, 9:07 AM-rw-r--r-- 1 user staff 148M May 26 22:08 deploy-infra-1.1-SNAPSHOT-jar-with-dependencies.jarfuture-hairdresser-70637
05/27/2026, 10:50 AMmaven-shade-plugin used as well.
With Gradle Shadow you may have had duplicate META-INF/services? i.e. use mergeServiceFiles() per this
I don't want to make assumptions, check out runtime.options.binary if you haven't; it may be helpfulfamous-mouse-60188
05/29/2026, 3:49 AMfamous-mouse-60188
05/29/2026, 3:54 AMerror: failed to discover package requirements: language host could not determine Pulumi packages: could not find ./sbt, sbt on the $PATH: exec: "sbt": executable file not found in $PATHfuture-hairdresser-70637
05/29/2026, 2:27 PMbuild.sbt in your pulumi project directory? seems odd for it to be asking for sbt if you aren't using it and don't have it installed thoughfamous-mouse-60188
06/02/2026, 12:17 AMfamous-mouse-60188
06/03/2026, 12:13 AM.sbtfamous-mouse-60188
06/03/2026, 12:13 AMpulumi up ???famous-mouse-60188
06/03/2026, 12:14 AMfuture-hairdresser-70637
06/03/2026, 12:16 AMbinary that would be one reason; feel free to paste your Pulumi.yaml and we can lookfamous-mouse-60188
06/03/2026, 2:45 AMname: kubernetes-azure-spinnaker # Project name
description: Spinnaker Stack on Azure Kubernetes
runtime:
name: java
options:
binary: gradle run --console=plain
# Point directly to the generated Bash script, NOT a .jar file
# binary: kubernetes-azure-spinnaker/bin/kubernetes-azure-spinnaker
packages:
azure-native:
version: 3.18.0
config:
pulumi:tags:
value:
pulumi:template: azure-java
azure-native:location:
description: The Azure location to deploy resources to
value: eastus
resourceGroupName:
description: The name of the resource group
value: anz-devops-sre-platform-engineering-research-dev
# plugins:
# providers:
# - name: azure-native
# version: 3.18.0future-hairdresser-70637
06/03/2026, 5:52 PMbinary should be "A string that specifies the path of a pre-build Java JAR file or a JBang entry-point file to execute"famous-mouse-60188
06/04/2026, 10:24 PM