Skip to content

Commit

Permalink
release: Update uber jar shadedClassifierName (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangmichaellll committed Feb 10, 2021
1 parent 2be6ade commit b0eb9e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -214,7 +214,7 @@
</relocation>
</relocations>
<shadedArtifactAttached>true</shadedArtifactAttached>
<finalName>pubsublite-spark-sql-streaming-with-dependencies-${project.version}</finalName>
<shadedClassifierName>with-dependencies</shadedClassifierName>
</configuration>
</execution>
</executions>
Expand Down
Expand Up @@ -225,11 +225,11 @@ private void setUpVariables() {
connectorVersion = env.get(CONNECTOR_VERSION);
sampleJarName = String.format("pubsublite-spark-snippets-%s.jar", sampleVersion);
connectorJarName =
String.format("pubsublite-spark-sql-streaming-with-dependencies-%s.jar", connectorVersion);
String.format("pubsublite-spark-sql-streaming-%s-with-dependencies.jar", connectorVersion);
sampleJarNameInGCS = String.format("pubsublite-spark-snippets-%s-%s.jar", sampleVersion, runId);
connectorJarNameInGCS =
String.format(
"pubsublite-spark-sql-streaming-with-dependencies-%s-%s.jar", connectorVersion, runId);
"pubsublite-spark-sql-streaming-%s-with-dependencies-%s.jar", connectorVersion, runId);
sampleJarLoc = String.format("%s/samples/snippets/target/%s", workingDir, sampleJarName);
connectorJarLoc = String.format("%s/target/%s", workingDir, connectorJarName);
}
Expand Down

0 comments on commit b0eb9e0

Please sign in to comment.