Skip to content

Commit 310e1e0

Browse files
committed
Releasing 3.5.2.CR3
1 parent da85c6c commit 310e1e0

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
</parent>
2525

2626
<artifactId>vertx-shell</artifactId>
27-
<version>3.5.2-SNAPSHOT</version>
27+
<version>3.5.2.CR3</version>
2828

2929
<name>Vert.x Shell</name>
3030

3131
<properties>
32-
<stack.version>3.5.2-SNAPSHOT</stack.version>
32+
<stack.version>3.5.2.CR3</stack.version>
3333
<termd.version>1.1.3</termd.version>
3434
<codegen.rxjava.deprecated>true</codegen.rxjava.deprecated>
3535
</properties>

src/main/asciidoc/groovy/index.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The shell can be started as a service directly either from the command line or a
1919
.Starting a shell service available via Telnet
2020
[source,subs="+attributes"]
2121
----
22-
vertx run -conf '{"telnetOptions":{"port":5000}}' maven:io.vertx:vertx-shell:3.5.2.CR2
22+
vertx run -conf '{"telnetOptions":{"port":5000}}' maven:io.vertx:vertx-shell:3.5.2.CR3
2323
----
2424

2525
or
@@ -32,7 +32,7 @@ keytool -genkey -keyalg RSA -keystore ssh.jks -keysize 2048 -validity 1095 -dnam
3232
# create the auth config
3333
echo user.admin=password > auth.properties
3434
# start the shell
35-
vertx run -conf '{"sshOptions":{"port":4000,"keyPairOptions":{"path":"ssh.jks","password":"secret"},"authOptions":{"provider":"shiro","config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR2
35+
vertx run -conf '{"sshOptions":{"port":4000,"keyPairOptions":{"path":"ssh.jks","password":"secret"},"authOptions":{"provider":"shiro","config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR3
3636
----
3737

3838
or
@@ -44,7 +44,7 @@ or
4444
keytool -genkey -keyalg RSA -keystore keystore.jks -keysize 2048 -validity 1095 -dname CN=localhost -keypass secret -storepass secret
4545
# create the auth config
4646
echo user.admin=password > auth.properties
47-
vertx run -conf '{"httpOptions":{"port":8080,"ssl":true,"keyStoreOptions":{"path":"keystore.jks","password":"secret"},"authOptions":{"provider":""shiro,"config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR2
47+
vertx run -conf '{"httpOptions":{"port":8080,"ssl":true,"keyStoreOptions":{"path":"keystore.jks","password":"secret"},"authOptions":{"provider":""shiro,"config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR3
4848
----
4949

5050
You can also deploy this service inside your own verticle:
@@ -114,7 +114,7 @@ vertx.deployVerticle("maven:{maven-groupId}:{maven-artifactId}:{maven-version}",
114114
----
115115

116116
NOTE: when Vert.x Shell is already on your classpath you can use `service:io.vertx.ext.shell` instead
117-
or `maven:io.vertx:vertx-shell:3.5.2.CR2`
117+
or `maven:io.vertx:vertx-shell:3.5.2.CR3`
118118

119119
=== Programmatic service
120120

src/main/asciidoc/java/index.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The shell can be started as a service directly either from the command line or a
1919
.Starting a shell service available via Telnet
2020
[source,subs="+attributes"]
2121
----
22-
vertx run -conf '{"telnetOptions":{"port":5000}}' maven:io.vertx:vertx-shell:3.5.2.CR2
22+
vertx run -conf '{"telnetOptions":{"port":5000}}' maven:io.vertx:vertx-shell:3.5.2.CR3
2323
----
2424

2525
or
@@ -32,7 +32,7 @@ keytool -genkey -keyalg RSA -keystore ssh.jks -keysize 2048 -validity 1095 -dnam
3232
# create the auth config
3333
echo user.admin=password > auth.properties
3434
# start the shell
35-
vertx run -conf '{"sshOptions":{"port":4000,"keyPairOptions":{"path":"ssh.jks","password":"secret"},"authOptions":{"provider":"shiro","config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR2
35+
vertx run -conf '{"sshOptions":{"port":4000,"keyPairOptions":{"path":"ssh.jks","password":"secret"},"authOptions":{"provider":"shiro","config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR3
3636
----
3737

3838
or
@@ -44,7 +44,7 @@ or
4444
keytool -genkey -keyalg RSA -keystore keystore.jks -keysize 2048 -validity 1095 -dname CN=localhost -keypass secret -storepass secret
4545
# create the auth config
4646
echo user.admin=password > auth.properties
47-
vertx run -conf '{"httpOptions":{"port":8080,"ssl":true,"keyStoreOptions":{"path":"keystore.jks","password":"secret"},"authOptions":{"provider":""shiro,"config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR2
47+
vertx run -conf '{"httpOptions":{"port":8080,"ssl":true,"keyStoreOptions":{"path":"keystore.jks","password":"secret"},"authOptions":{"provider":""shiro,"config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR3
4848
----
4949

5050
You can also deploy this service inside your own verticle:
@@ -103,7 +103,7 @@ vertx.deployVerticle("maven:{maven-groupId}:{maven-artifactId}:{maven-version}",
103103
----
104104

105105
NOTE: when Vert.x Shell is already on your classpath you can use `service:io.vertx.ext.shell` instead
106-
or `maven:io.vertx:vertx-shell:3.5.2.CR2`
106+
or `maven:io.vertx:vertx-shell:3.5.2.CR3`
107107

108108
=== Programmatic service
109109

src/main/asciidoc/js/index.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The shell can be started as a service directly either from the command line or a
1919
.Starting a shell service available via Telnet
2020
[source,subs="+attributes"]
2121
----
22-
vertx run -conf '{"telnetOptions":{"port":5000}}' maven:io.vertx:vertx-shell:3.5.2.CR2
22+
vertx run -conf '{"telnetOptions":{"port":5000}}' maven:io.vertx:vertx-shell:3.5.2.CR3
2323
----
2424

2525
or
@@ -32,7 +32,7 @@ keytool -genkey -keyalg RSA -keystore ssh.jks -keysize 2048 -validity 1095 -dnam
3232
# create the auth config
3333
echo user.admin=password > auth.properties
3434
# start the shell
35-
vertx run -conf '{"sshOptions":{"port":4000,"keyPairOptions":{"path":"ssh.jks","password":"secret"},"authOptions":{"provider":"shiro","config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR2
35+
vertx run -conf '{"sshOptions":{"port":4000,"keyPairOptions":{"path":"ssh.jks","password":"secret"},"authOptions":{"provider":"shiro","config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR3
3636
----
3737

3838
or
@@ -44,7 +44,7 @@ or
4444
keytool -genkey -keyalg RSA -keystore keystore.jks -keysize 2048 -validity 1095 -dname CN=localhost -keypass secret -storepass secret
4545
# create the auth config
4646
echo user.admin=password > auth.properties
47-
vertx run -conf '{"httpOptions":{"port":8080,"ssl":true,"keyStoreOptions":{"path":"keystore.jks","password":"secret"},"authOptions":{"provider":""shiro,"config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR2
47+
vertx run -conf '{"httpOptions":{"port":8080,"ssl":true,"keyStoreOptions":{"path":"keystore.jks","password":"secret"},"authOptions":{"provider":""shiro,"config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR3
4848
----
4949

5050
You can also deploy this service inside your own verticle:
@@ -114,7 +114,7 @@ vertx.deployVerticle("maven:{maven-groupId}:{maven-artifactId}:{maven-version}",
114114
----
115115

116116
NOTE: when Vert.x Shell is already on your classpath you can use `service:io.vertx.ext.shell` instead
117-
or `maven:io.vertx:vertx-shell:3.5.2.CR2`
117+
or `maven:io.vertx:vertx-shell:3.5.2.CR3`
118118

119119
=== Programmatic service
120120

src/main/asciidoc/kotlin/index.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The shell can be started as a service directly either from the command line or a
1919
.Starting a shell service available via Telnet
2020
[source,subs="+attributes"]
2121
----
22-
vertx run -conf '{"telnetOptions":{"port":5000}}' maven:io.vertx:vertx-shell:3.5.2.CR2
22+
vertx run -conf '{"telnetOptions":{"port":5000}}' maven:io.vertx:vertx-shell:3.5.2.CR3
2323
----
2424

2525
or
@@ -32,7 +32,7 @@ keytool -genkey -keyalg RSA -keystore ssh.jks -keysize 2048 -validity 1095 -dnam
3232
# create the auth config
3333
echo user.admin=password > auth.properties
3434
# start the shell
35-
vertx run -conf '{"sshOptions":{"port":4000,"keyPairOptions":{"path":"ssh.jks","password":"secret"},"authOptions":{"provider":"shiro","config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR2
35+
vertx run -conf '{"sshOptions":{"port":4000,"keyPairOptions":{"path":"ssh.jks","password":"secret"},"authOptions":{"provider":"shiro","config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR3
3636
----
3737

3838
or
@@ -44,7 +44,7 @@ or
4444
keytool -genkey -keyalg RSA -keystore keystore.jks -keysize 2048 -validity 1095 -dname CN=localhost -keypass secret -storepass secret
4545
# create the auth config
4646
echo user.admin=password > auth.properties
47-
vertx run -conf '{"httpOptions":{"port":8080,"ssl":true,"keyStoreOptions":{"path":"keystore.jks","password":"secret"},"authOptions":{"provider":""shiro,"config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR2
47+
vertx run -conf '{"httpOptions":{"port":8080,"ssl":true,"keyStoreOptions":{"path":"keystore.jks","password":"secret"},"authOptions":{"provider":""shiro,"config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR3
4848
----
4949

5050
You can also deploy this service inside your own verticle:
@@ -107,7 +107,7 @@ vertx.deployVerticle("maven:{maven-groupId}:{maven-artifactId}:{maven-version}",
107107
----
108108

109109
NOTE: when Vert.x Shell is already on your classpath you can use `service:io.vertx.ext.shell` instead
110-
or `maven:io.vertx:vertx-shell:3.5.2.CR2`
110+
or `maven:io.vertx:vertx-shell:3.5.2.CR3`
111111

112112
=== Programmatic service
113113

src/main/asciidoc/ruby/index.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The shell can be started as a service directly either from the command line or a
1919
.Starting a shell service available via Telnet
2020
[source,subs="+attributes"]
2121
----
22-
vertx run -conf '{"telnetOptions":{"port":5000}}' maven:io.vertx:vertx-shell:3.5.2.CR2
22+
vertx run -conf '{"telnetOptions":{"port":5000}}' maven:io.vertx:vertx-shell:3.5.2.CR3
2323
----
2424

2525
or
@@ -32,7 +32,7 @@ keytool -genkey -keyalg RSA -keystore ssh.jks -keysize 2048 -validity 1095 -dnam
3232
# create the auth config
3333
echo user.admin=password > auth.properties
3434
# start the shell
35-
vertx run -conf '{"sshOptions":{"port":4000,"keyPairOptions":{"path":"ssh.jks","password":"secret"},"authOptions":{"provider":"shiro","config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR2
35+
vertx run -conf '{"sshOptions":{"port":4000,"keyPairOptions":{"path":"ssh.jks","password":"secret"},"authOptions":{"provider":"shiro","config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR3
3636
----
3737

3838
or
@@ -44,7 +44,7 @@ or
4444
keytool -genkey -keyalg RSA -keystore keystore.jks -keysize 2048 -validity 1095 -dname CN=localhost -keypass secret -storepass secret
4545
# create the auth config
4646
echo user.admin=password > auth.properties
47-
vertx run -conf '{"httpOptions":{"port":8080,"ssl":true,"keyStoreOptions":{"path":"keystore.jks","password":"secret"},"authOptions":{"provider":""shiro,"config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR2
47+
vertx run -conf '{"httpOptions":{"port":8080,"ssl":true,"keyStoreOptions":{"path":"keystore.jks","password":"secret"},"authOptions":{"provider":""shiro,"config":{"properties_path":"file:auth.properties"}}}}' maven:io.vertx:vertx-shell:3.5.2.CR3
4848
----
4949

5050
You can also deploy this service inside your own verticle:
@@ -114,7 +114,7 @@ vertx.deploy_verticle("maven:{maven-groupId}:{maven-artifactId}:{maven-version}"
114114
----
115115

116116
NOTE: when Vert.x Shell is already on your classpath you can use `service:io.vertx.ext.shell` instead
117-
or `maven:io.vertx:vertx-shell:3.5.2.CR2`
117+
or `maven:io.vertx:vertx-shell:3.5.2.CR3`
118118

119119
=== Programmatic service
120120

0 commit comments

Comments
 (0)