Skip to content

Commit

Permalink
Bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jultty committed Mar 10, 2024
1 parent 9095a83 commit f17127a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ Once built, you can start the server using:
java -jar build/libs/mirante-<version>.jar
```

Replace `<version>` with the current version, for example: `java -jar build/libs/mirante-0.1.2-SNAPSHOT.jar`.
Replace `<version>` with the current version, for example: `java -jar build/libs/mirante-0.2.0-SNAPSHOT.jar`.

If you are unsure about the current version number, look into the `build/libs` directory for what files were generated, or check the `build.gradle` file.

HTML forms meant as a minimal working front-end demo are available under `src/web/`. Given default port `8080` is usually in use, the forms send requests to port `8888` instead.
HTML forms meant as a minimal working front-end demo are available under `src/web/`. Given default port `8080` is usually in use, the forms send requests to port `8888` instead.

To use them, set port 8888 when running:

Expand Down Expand Up @@ -71,6 +71,6 @@ The following options allow access to the H2 console:
- **Driver class:** `org.h2.Driver`
- **JDBC URL:** `jdbc:h2:mem:mirante`
- **User Name:** `dev`
- **Password:** Empty
- **Password:** Empty

If you have [Devbox](https://www.jetpack.io/devbox/) available on your system, you can run `devbox shell` to get a development environment with JDK 17 and Gradle 8 already set up. You can also use `devbox run <script>` to run `build`, `test` and `run` scripts. These scripts will all run inside the Devbox shell and come with port `8888` preconfigured.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'mirante.api'
version = '0.1.2-SNAPSHOT'
version = '0.2.0-SNAPSHOT'

configurations {
umlDoclet
Expand Down
2 changes: 1 addition & 1 deletion devbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"scripts": {
"test": [ "gradle test" ],
"build": [ "gradle build" ],
"run": [ "java -Dserver.port=8888 -jar build/libs/mirante-0.1.2-SNAPSHOT.jar" ]
"run": [ "java -Dserver.port=8888 -jar build/libs/mirante-0.2.0-SNAPSHOT.jar" ]
}
}
}

0 comments on commit f17127a

Please sign in to comment.