Skip to content

Commit

Permalink
chore: Fix YAKS JBang Java version
Browse files Browse the repository at this point in the history
  • Loading branch information
christophd committed Nov 3, 2023
1 parent 7e22996 commit 68dfab9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion java/tools/yaks-jbang/dist/YaksJBang.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* limitations under the License.
*/

//JAVA 11+
//JAVA 17+
//REPOS mavencentral
//DEPS org.citrusframework.yaks:yaks-parent:${yaks.jbang.version:0.17.0}@pom
//DEPS org.citrusframework.yaks:yaks-jbang:${yaks.jbang.version:0.17.0}
Expand Down
2 changes: 1 addition & 1 deletion java/tools/yaks-jbang/src/main/java/main/YaksJBang.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* limitations under the License.
*/

//JAVA 11+
//JAVA 17+
//REPOS mavencentral
//DEPS org.citrusframework.yaks:yaks-parent:${yaks.jbang.version:0.18.0-SNAPSHOT}@pom
//DEPS org.citrusframework.yaks:yaks-jbang:${yaks.jbang.version:0.18.0-SNAPSHOT}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public File getStatusFile(String pid) {

public File getOutputFile(String pid) {
if (yaksDir == null) {
yaksDir = new File(System.getProperty("user.home"), ".camel");
yaksDir = new File(System.getProperty("user.home"), ".yaks");
}
return new File(yaksDir, pid + "-output.json");
}
Expand Down

0 comments on commit 68dfab9

Please sign in to comment.