-
Notifications
You must be signed in to change notification settings - Fork 0
DXP-2486 Add streamx run, stream and batch commands for StreamX 2.0 (and remove streamx publish/unpublish/cloud/dev/init commands for now) #219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
243064b
eb63811
288ccf8
e8ac81a
9761683
46a6874
74f6c6d
cad43e5
c8ca778
9776c77
dca7a18
18fdda4
f08a25d
16501c8
dd8a24b
0b9fcd3
2145fc8
403fd23
d3f7eae
1f13cc6
811cab5
6b6e62d
ec213a6
c6eba11
cd8b684
976a3d6
0158222
58337de
8e1100e
3ba20b4
ee83d91
a0b9cc6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,7 +12,7 @@ | |
|
|
||
| <name>StreamX Cli : Core</name> | ||
| <properties> | ||
| <maven.compiler.release>17</maven.compiler.release> | ||
| <maven.compiler.release>21</maven.compiler.release> | ||
|
|
||
| <skipITs>true</skipITs> | ||
| <quarkus.package.type>uber-jar</quarkus.package.type> | ||
|
|
@@ -44,13 +44,9 @@ | |
| <artifactId>bcpkix-jdk18on</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>dev.streamx</groupId> | ||
| <groupId>com.streamx</groupId> | ||
| <artifactId>streamx-runner</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>dev.streamx</groupId> | ||
| <artifactId>streamx-operator-mesh-api</artifactId> | ||
| </dependency> | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To be restored / added when the cloud-related CLI operations are refined |
||
| <dependency> | ||
| <groupId>com.fasterxml.jackson.datatype</groupId> | ||
| <artifactId>jackson-datatype-jdk8</artifactId> | ||
|
|
@@ -60,7 +56,7 @@ | |
| <artifactId>jackson-datatype-jsr310</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>dev.streamx</groupId> | ||
| <groupId>com.streamx</groupId> | ||
| <artifactId>ingestion-client</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,6 @@ | |
|
|
||
| import static dev.streamx.cli.util.Output.print; | ||
|
|
||
| import dev.streamx.cli.command.dev.DevCommand; | ||
| import dev.streamx.cli.command.run.RunCommand; | ||
| import jakarta.enterprise.context.ApplicationScoped; | ||
| import java.util.Set; | ||
|
|
@@ -13,7 +12,7 @@ | |
| public class BannerPrinter { | ||
|
|
||
| private static final Set<String> COMMANDS_REQUIRING_PRINTING_BANNER = | ||
| Set.of(DevCommand.COMMAND_NAME, RunCommand.COMMAND_NAME); | ||
| Set.of(RunCommand.COMMAND_NAME); | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The not migrated (so - removed) commands are
|
||
|
|
||
| private static final String BANNER = """ | ||
| ____ _ __ __ | ||
|
|
||
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The builds fail on java 17 when importing com.streamx ingestion client that's built with java 21