File tree Expand file tree Collapse file tree
java/io/numaproj/numaflow/info Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77 <groupId >io.numaproj.numaflow</groupId >
88 <artifactId >numaflow-java</artifactId >
9- <version >0.7.2 </version >
9+ <version >0.7.3 </version >
1010 <packaging >jar</packaging >
1111
1212 <name >numaflow-java</name >
13- <description >SDK to implement Numaflow User Defined Functions or Sinks in Java.</description >
13+ <description >SDK to implement Numaflow Source or User Defined Functions or Sinks in Java.</description >
1414 <url >https://numaflow.numaproj.io/</url >
1515
1616 <licenses >
388388 </pluginManagement >
389389 <resources >
390390 <resource >
391- <directory >src/main/java/io/numaproj/numaflow/info </directory >
391+ <directory >src/main/resources </directory >
392392 <filtering >true</filtering >
393+ <includes >
394+ <include >numaflow-java-sdk-version.properties</include >
395+ </includes >
393396 </resource >
394397 </resources >
395398 </build >
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public String getSDKVersion() {
2020 String version = "" ;
2121 try (InputStream in = getClass ()
2222 .getClassLoader ()
23- .getResourceAsStream ("version.properties" )) {
23+ .getResourceAsStream ("numaflow-java-sdk- version.properties" )) {
2424 if (in != null ) {
2525 Properties properties = new Properties ();
2626 properties .load (in );
File renamed without changes.
You can’t perform that action at this time.
0 commit comments