Skip to content

Commit ef72d0f

Browse files
author
Alexander Bainczyk
committed
bump version to 2.0.0
1 parent 9ab3616 commit ef72d0f

File tree

24 files changed

+31
-31
lines changed

24 files changed

+31
-31
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN tar -xzf ltsmin-v3.0.2-linux.tgz
1818
RUN mv v3.0.2 ltsmin
1919

2020
FROM openjdk:12
21-
COPY --from=builder-backend /root/workdir/build/target/alex-2.0.0-SNAPSHOT.war /usr/share/java/alex/alex.war
21+
COPY --from=builder-backend /root/workdir/build/target/alex-2.0.0.war /usr/share/java/alex/alex.war
2222
COPY --from=builder-ltsmin /root/workdir/ltsmin /opt/ltsmin
2323
WORKDIR /var/lib/alex
2424
EXPOSE 8000

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Make sure you have Java 8 or 11 installed on your system.
1919
We advise to use a modern web browser like Google Chrome, Mozilla Firefox or Microsoft Edge with JavaScript enabled.
2020

2121
1. [Download](https://github.com/LearnLib/alex/releases/latest) the latest version.
22-
2. Open a terminal and start ALEX via `java -jar alex-2.0.0-SNAPSHOT.war [--server.port=XXXX]`.
22+
2. Open a terminal and start ALEX via `java -jar alex-2.0.0.war [--server.port=XXXX]`.
2323
3. Wait until the command line prints something like `de.learnlib.alex.App - Started App in XX.XXX seconds`.
2424
3. Open *http://localhost:8000* in a web browser.
2525

@@ -49,7 +49,7 @@ cd alex
4949
mvn install package [-DskipTests]
5050
```
5151

52-
The bundle can then be found at `build/target/alex-2.0.0-SNAPSHOT.war`.
52+
The bundle can then be found at `build/target/alex-2.0.0.war`.
5353

5454
Only build the REST API and skip the frontend with `mvn package -P!build-frontend`
5555

@@ -73,7 +73,7 @@ spring.jpa.hibernate.ddl-auto=update
7373

7474
Then, start ALEX like this:
7575

76-
`java -jar alex-buid-2.0.0-SNAPSHOT.war "--spring.config.location=/path/to/your/application.properties"`
76+
`java -jar alex-buid-2.0.0.war "--spring.config.location=/path/to/your/application.properties"`
7777

7878

7979
## Using LTSMin
@@ -83,7 +83,7 @@ If you want to use its capabilities, download version **3.0.2** and append the `
8383
The value for the argument should be the *bin* directory where the compiled binaries of LTSMin are located.
8484
Example:
8585

86-
`java -jar alex-2.0.0-SNAPSHOT.war --ltsmin.path="/path/to/ltsmin/bin"`
86+
`java -jar alex-2.0.0.war --ltsmin.path="/path/to/ltsmin/bin"`
8787

8888

8989

backend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>de.learnlib.alex</groupId>
2525
<artifactId>alex-parent</artifactId>
26-
<version>2.0.0-SNAPSHOT</version>
26+
<version>2.0.0</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

backend/src/main/resources/application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ server.compression.min-response-size=5120
2323
# ALEX
2424
# Path to user files
2525
alex.filesRootDir=./target/files
26-
alex.version=2.0.0-SNAPSHOT
26+
alex.version=2.0.0
2727
alex.admin.email=admin@alex.example
2828
alex.admin.password=admin
2929
alex.admin.username=admin

backend/src/test/resources/application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ server.compression.mime-types=text/html,text/xml,text/plain,text/css,text/javasc
1313
server.compression.min-response-size=1024
1414

1515
alex.filesRootDir=./target/test-files
16-
alex.version=2.0.0-SNAPSHOT
16+
alex.version=2.0.0
1717
alex.admin.email=admin@alex.example
1818
alex.admin.password=admin
1919
alex.admin.username=admin

backend/src/test/resources/integrationtest/ALEX-rest.project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.0-SNAPSHOT",
2+
"version": "2.0.0",
33
"type": "project",
44
"project": {
55
"name": "ALEX",

backend/src/test/resources/integrationtest/ALEX-web.project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.0-SNAPSHOT",
2+
"version": "2.0.0",
33
"type": "project",
44
"project": {
55
"name": "ALEX",

build/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<artifactId>alex-parent</artifactId>
2525
<groupId>de.learnlib.alex</groupId>
26-
<version>2.0.0-SNAPSHOT</version>
26+
<version>2.0.0</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

documentation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>alex-parent</artifactId>
77
<groupId>de.learnlib.alex</groupId>
8-
<version>2.0.0-SNAPSHOT</version>
8+
<version>2.0.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

documentation/src/main/docs/.vuepress/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const env = require('./env.default.js');
22

33
module.exports = {
44
base: env.BASE,
5-
title: 'ALEX Docs (v2.0.0-SNAPSHOT)',
5+
title: 'ALEX Docs (v2.0.0)',
66
description: 'User documentation for ALEX',
77
dest: './.vuepress/dist',
88
markdown: {

0 commit comments

Comments
 (0)