Skip to content

Commit f7d7309

Browse files
committed
Version 4.0.1
1 parent cd1944b commit f7d7309

File tree

16 files changed

+21
-21
lines changed

16 files changed

+21
-21
lines changed

graphwalker-cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.graphwalker</groupId>
99
<artifactId>graphwalker-project</artifactId>
10-
<version>4.1.0-SNAPSHOT</version>
10+
<version>4.0.1</version>
1111
</parent>
1212

1313
<artifactId>graphwalker-cli</artifactId>

graphwalker-cli/src/test/resources/template/perl.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ use warnings;
44

55
##
66
## 1) Generate perl stub source code:
7-
## java -jar graphwalker-4.0.0-SNAPSHOT.jar source -i model.graphml perl.template > model.perl
7+
## java -jar graphwalker-4.0.1.jar source -i model.graphml perl.template > model.perl
88
##
99
## 2) Start graphwalker:
10-
## java -jar graphwalker-4.0.0-SNAPSHOT.jar online -s RESTFUL -m model.graphml "random(edge_coverage(100))"
10+
## java -jar graphwalker-4.0.1.jar online -s RESTFUL -m model.graphml "random(edge_coverage(100))"
1111
##
1212
## 3) Run the per program:
1313
## perl login.perl http://localhost:8887/graphwalker

graphwalker-cli/src/test/resources/template/python.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ HEADER<{{
22
import requests,json
33
##
44
## 1) Generate python stub source code:
5-
## java -jar graphwalker-4.0.0-SNAPSHOT.jar source -i model.graphml python.template > model.py
5+
## java -jar graphwalker-4.0.1.jar source -i model.graphml python.template > model.py
66
##
77
## 2) Start graphwalker:
8-
## java -jar graphwalker-4.0.0-SNAPSHOT.jar online --service RESTFUL -m model.graphml "random(edge_coverage(100))"
8+
## java -jar graphwalker-4.0.1.jar online --service RESTFUL -m model.graphml "random(edge_coverage(100))"
99
##
1010
## 3) Run the per program:
1111
## python model.py

graphwalker-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.graphwalker</groupId>
99
<artifactId>graphwalker-project</artifactId>
10-
<version>4.1.0-SNAPSHOT</version>
10+
<version>4.0.1</version>
1111
</parent>
1212

1313
<artifactId>graphwalker-core</artifactId>

graphwalker-dsl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.graphwalker</groupId>
99
<artifactId>graphwalker-project</artifactId>
10-
<version>4.1.0-SNAPSHOT</version>
10+
<version>4.0.1</version>
1111
</parent>
1212

1313
<artifactId>graphwalker-dsl</artifactId>

graphwalker-io/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.graphwalker</groupId>
99
<artifactId>graphwalker-project</artifactId>
10-
<version>4.1.0-SNAPSHOT</version>
10+
<version>4.0.1</version>
1111
</parent>
1212

1313
<artifactId>graphwalker-io</artifactId>

graphwalker-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.graphwalker</groupId>
99
<artifactId>graphwalker-project</artifactId>
10-
<version>4.1.0-SNAPSHOT</version>
10+
<version>4.0.1</version>
1111
</parent>
1212

1313
<artifactId>graphwalker-java</artifactId>

graphwalker-maven-archetype/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A GraphWalker maven archetype. To help create boilerplate GraphWalker maven proj
77
To create a sample project:
88

99
~~~sh
10-
%> mvn archetype:generate -B -DarchetypeGroupId=org.graphwalker -DarchetypeArtifactId=graphwalker-maven-archetype -DarchetypeVersion=4.0.0-SNAPSHOT -DgroupId=com.company -DartifactId=myProject
10+
%> mvn archetype:generate -B -DarchetypeGroupId=org.graphwalker -DarchetypeArtifactId=graphwalker-maven-archetype -DgroupId=com.company -DartifactId=myProject -DarchetypeVersion=LATESTmvn archetype:generate -B -DarchetypeGroupId=org.graphwalker -DarchetypeArtifactId=graphwalker-maven-archetype -DgroupId=com.company -DartifactId=myProject -DarchetypeVersion=LATEST
1111
~~~
1212

1313
Then cd into the project:
@@ -16,6 +16,6 @@ Then cd into the project:
1616
~~~
1717
Build and run the test:
1818
~~~sh
19-
%> mvn :graphwalker:test
19+
%> mvn compile exec:java -Dexec.mainClass="com.company.Runner"
2020
~~~
2121

graphwalker-maven-archetype/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.graphwalker</groupId>
99
<artifactId>graphwalker-project</artifactId>
10-
<version>4.1.0-SNAPSHOT</version>
10+
<version>4.0.1</version>
1111
</parent>
1212

1313
<name>GraphWalker Maven Archetype</name>

graphwalker-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.graphwalker</groupId>
99
<artifactId>graphwalker-project</artifactId>
10-
<version>4.1.0-SNAPSHOT</version>
10+
<version>4.0.1</version>
1111
</parent>
1212

1313
<artifactId>graphwalker-maven-plugin</artifactId>

0 commit comments

Comments
 (0)