Skip to content

Commit

Permalink
fix: missing version.properties file in the sdk (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
nagarajatantry authored Apr 25, 2024
1 parent 7a25b70 commit 14c2052
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

<groupId>io.numaproj.numaflow</groupId>
<artifactId>numaflow-java</artifactId>
<version>0.7.2</version>
<version>0.7.3</version>
<packaging>jar</packaging>

<name>numaflow-java</name>
<description>SDK to implement Numaflow User Defined Functions or Sinks in Java.</description>
<description>SDK to implement Numaflow Source or User Defined Functions or Sinks in Java.</description>
<url>https://numaflow.numaproj.io/</url>

<licenses>
Expand Down Expand Up @@ -388,8 +388,11 @@
</pluginManagement>
<resources>
<resource>
<directory>src/main/java/io/numaproj/numaflow/info</directory>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>numaflow-java-sdk-version.properties</include>
</includes>
</resource>
</resources>
</build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public String getSDKVersion() {
String version = "";
try (InputStream in = getClass()
.getClassLoader()
.getResourceAsStream("version.properties")) {
.getResourceAsStream("numaflow-java-sdk-version.properties")) {
if (in != null) {
Properties properties = new Properties();
properties.load(in);
Expand Down

0 comments on commit 14c2052

Please sign in to comment.