Skip to content

Commit

Permalink
new version 7.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maritabreuer committed Jan 21, 2025
1 parent a383dff commit b31d935
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docs/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -1230,19 +1230,19 @@ including the `Automata` tool class `AutomataTool`. For running the

**With Powershell on Windows**
```powershell
java -jar target/libs/automaton-7.7.0-SNAPSHOT-tool.jar `
java -jar target/libs/automaton-7.7.0-tool.jar `
-i src/test/resources/automata/parser/PingPong.aut `
-s st/PingPong.autsym
```
**With Bash on Unix**
```bash
java -jar target/libs/automaton-7.7.0-SNAPSHOT-tool.jar \
java -jar target/libs/automaton-7.7.0-tool.jar \
-i src/test/resources/automata/parser/PingPong.aut \
-s st/PingPong.autsym
```
**With cmd on Windows**
```batch
java -jar target/libs/automaton-7.7.0-SNAPSHOT-tool.jar ^
java -jar target/libs/automaton-7.7.0-tool.jar ^
-i src/test/resources/automata/parser/PingPong.aut ^
-s st/PingPong.autsym
```
Expand Down
4 changes: 2 additions & 2 deletions docs/Gradle.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,9 +316,9 @@ configurations {
}
dependencies {
// resolve the grammars of myolddsl
legacyGrammar "de.monticore.languages:myolddsl:7.7.0-SNAPSHOT:grammars"
legacyGrammar "de.monticore.languages:myolddsl:7.7.0:grammars"
// we also have to add the implementation/java classes
implementation "de.monticore.languages:myolddsl:7.7.0-SNAPSHOT"
implementation "de.monticore.languages:myolddsl:7.7.0"
}
tasks.generateMCGrammars.configure {
// Add the legacy-grammars to the symbol/model path of the generation
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ org.gradle.caching=true
# org.gradle.caching.debug=true

# versions used
version=7.7.0-SNAPSHOT
version=7.7.0
previous_mc_version =7.6.0

commons_cli_version = 1.4
se_commons_version =7.7.0-SNAPSHOT
se_commons_version =7.7.0
antlr_version =4.12.0
junit_version =5.10.3
emf_compare_version =1.2.0
Expand Down
4 changes: 2 additions & 2 deletions monticore-generator/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ useLocalRepo=true
showTestOutput=false

# versions used
version=7.7.0-SNAPSHOT
version=7.7.0
previous_mc_version =7.6.0

se_commons_version =7.7.0-SNAPSHOT
se_commons_version =7.7.0
antlr_version =4.12.0
junit_version =5.10.3
cd4a_version =7.6.0
Expand Down

0 comments on commit b31d935

Please sign in to comment.