Skip to content

Commit

Permalink
bump version to 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abainczyk committed May 28, 2019
1 parent 44c3edb commit f00edee
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Make sure you have Java 8 installed on your system.
We advise to use a modern web browser like Google Chrome, Mozilla Firefox or Microsoft Edge with JavaScript enabled.

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

Expand Down Expand Up @@ -49,7 +49,7 @@ cd alex
mvn install package [-DskipTests]
```

The bundle can then be found at `build/target/alex-build-1.7.0-SNAPSHOT.war`.
The bundle can then be found at `build/target/alex-build-1.7.0.war`.

## Connecting to a database

Expand All @@ -71,7 +71,7 @@ spring.jpa.hibernate.ddl-auto=update

Then, start ALEX like this:

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


## Using LTSMin
Expand Down
2 changes: 1 addition & 1 deletion backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>de.learnlib.alex</groupId>
<artifactId>alex-parent</artifactId>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ server.port=8000
# ALEX
# Path to user files
alex.filesRootDir=./target/files
alex.version=1.7.0-SNAPSHOT
alex.version=1.7.0

# Paths to web driver executables, will be saved in the database on first start
chromeDriver=
Expand Down
2 changes: 1 addition & 1 deletion build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>alex-parent</artifactId>
<groupId>de.learnlib.alex</groupId>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion documentation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>alex-parent</artifactId>
<groupId>de.learnlib.alex</groupId>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion documentation/src/main/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alex-docs",
"version": "1.7.0-SNAPSHOT",
"version": "1.7.0",
"description": "Documentation for ALEX.",
"licence": {
"type": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion frontend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>alex-parent</artifactId>
<groupId>de.learnlib.alex</groupId>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/main/javascript/environments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/** The version of ALEX. */
export const version = '1.7.0-SNAPSHOT';
export const version = '1.7.0';

/** API URL */
export const apiUrl = process.env.API_URL;
2 changes: 1 addition & 1 deletion frontend/src/main/javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alex",
"version": "1.7.0-SNAPSHOT",
"version": "1.7.0",
"description": "A web application for inferring Mealy machines of web applications and RESTful web services via active automata learning.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>alex-parent</artifactId>
<groupId>de.learnlib.alex</groupId>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion plugins/testsuite-generator-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>de.learnlib.alex</groupId>
<artifactId>plugins-parent</artifactId>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion plugins/testsuite-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>de.learnlib.alex</groupId>
<artifactId>plugins-parent</artifactId>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<groupId>de.learnlib.alex</groupId>
<artifactId>alex-parent</artifactId>
<version>1.7.0-SNAPSHOT</version>
<version>1.7.0</version>
<packaging>pom</packaging>

<name>Automata Learning Experience (ALEX)</name>
Expand Down

0 comments on commit f00edee

Please sign in to comment.