Skip to content

Commit b6e89fe

Browse files
authored
Merge pull request #89 from xuwei-k/slash-syntax-jetty-start
avoid old sbt syntax
2 parents 3d1e5f3 + 307f6e3 commit b6e89fe

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

3.0/async/pekko-examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Corresponds to the guide at [http://scalatra.org/guides/3.0/async/pekko.html](ht
88
$ git clone https://github.com/scalatra/scalatra-website-examples.git
99
$ cd scalatra-website-examples/3.0/async/pekko-examples
1010
$ chmod +x sbt
11-
$ ./sbt ~jetty:start
11+
$ ./sbt ~Jetty/start
1212
```
1313

1414
First, open [http://localhost:8080/ask](http://localhost:8080/ask) in your browser. You'll see the "question and answer" in the browser.

3.0/formats/scalatra-forms/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A full tutorial on the use of validation forms is available on the
1111
```sh
1212
$ cd 3.0/formats/scalatra-forms
1313
$ chmod u+x sbt
14-
$ ./sbt ~jetty:start
14+
$ ./sbt ~Jetty/start
1515
```
1616

1717
Open [http://localhost:8080](http://localhost:8080) in your browser.

3.0/http/authentication-demo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Corresponds to the guide at [http://scalatra.org/guides/3.0/http/authentication.
99
$ git clone https://github.com/scalatra/scalatra-website-examples.git
1010
$ cd scalatra-website-examples/3.0/http/authentication-demo
1111
$ chmod +x sbt
12-
$ ./sbt ~jetty:start
12+
$ ./sbt ~Jetty/start
1313
```
1414

1515
Then open [http://localhost:8080](http://localhost:8080) in your browser.

3.0/http/scalatra-gzip/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Corresponds to the guide at [http://scalatra.org/guides/3.0/http/gzip.html](http
88
$ git clone https://github.com/scalatra/scalatra-website-examples.git
99
$ cd scalatra-website-examples/3.0/http/scalatra-gzip
1010
$ chmod +x sbt
11-
$ ./sbt ~jetty:start
11+
$ ./sbt ~Jetty/start
1212
```
1313

1414
Open [http://localhost:8080/](http://localhost:8080/) in your browser.

3.0/http/scalatra-http-demo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
$ git clone https://github.com/scalatra/scalatra-website-examples.git
77
$ cd scalatra-website-examples/3.0/http/scalatra-http-demo
88
$ chmod +x sbt
9-
$ ./sbt ~jetty:start
9+
$ ./sbt ~Jetty/start
1010
```
1111

1212
Open [http://localhost:8080/](http://localhost:8080/) in your browser.

3.0/http/scentry-auth-demo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
$ git clone https://github.com/scalatra/scalatra-website-examples.git
77
$ cd scalatra-website-examples/3.0/http/scentry-auth-demo
88
$ chmod +x sbt
9-
$ ./sbt ~jetty:start
9+
$ ./sbt ~Jetty/start
1010
```
1111

1212
Open [http://localhost:8080/](http://localhost:8080/) in your browser.

3.0/persistence/scalatra-slick/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Corresponds to the guide at [http://scalatra.org/guides/2.8/persistence/slick.ht
88
$ git clone https://github.com/scalatra/scalatra-website-examples.git
99
$ cd scalatra-website-examples/2.8/persistence/scalatra-slick
1010
$ chmod +x sbt
11-
$ ./sbt ~jetty:start
11+
$ ./sbt ~Jetty/start
1212
```
1313

1414
Open below links in your browser.

3.0/persistence/scalatra-squeryl/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ There's a scalatest example showing the use of before and after blocks to config
1919
$ git clone https://github.com/scalatra/scalatra-website-examples.git
2020
$ cd scalatra-website-examples/3.0/persistence/scalatra-squeryl
2121
$ chmod +x sbt
22-
$ ./sbt ~jetty:start
22+
$ ./sbt ~Jetty/start
2323
```
2424

2525
Go to [http://localhost:8080/create-db](http://localhost:8080/create-db). This will create the database schema.

3.0/swagger-example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ to demonstrate Scalatra's Swagger functionality.
1212
$ git clone https://github.com/scalatra/scalatra-website-examples.git
1313
$ cd scalatra-website-examples/3.0/swagger-example
1414
$ chmod +x sbt
15-
$ ./sbt ~jetty:start
15+
$ ./sbt ~Jetty/start
1616
```
1717

1818
You can see the pet store APIs specification at [http://localhost:8080/api-docs/swagger.json](http://localhost:8080/api-docs/swagger.json).

3.0/views/scalatra-twirl/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Corresponds to the guide at [http://scalatra.org/guides/3.0/views/twirl.html](ht
88
$ git clone https://github.com/scalatra/scalatra-website-examples.git
99
$ cd scalatra-website-examples/3.0/views/scalatra-twirl
1010
$ chmod +x sbt
11-
$ ./sbt ~jetty:start
11+
$ ./sbt ~Jetty/start
1212
```
1313

1414
Open [http://localhost:8080/](http://localhost:8080/) in your browser.

0 commit comments

Comments
 (0)