You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# -DskipTests is required, to run the tests one needs to compile ../test-projects/ (see below)
43
34
mvn package -DskipTests
44
35
```
45
36
46
-
3) Locate the Nopol jar file produced at step 2)
37
+
2) Locate the Nopol jar file produced at step 1)
47
38
48
39
```
49
40
$ ls target/*jar
@@ -52,21 +43,21 @@ target/nopol-0.2-SNAPSHOT-jar-with-dependencies.jar # we use this one
52
43
```
53
44
In the following, `nopol.jar` refers to the jar file with dependencies (`target/nopol-<VERSION>-SNAPSHOT-jar-with-dependencies.jar`)
54
45
55
-
4) Compile the test-projects
46
+
3) Compile the test-projects
56
47
57
48
```
58
49
$ cd ../test-projects/
59
50
# compiling app (in target/classes) and tests (in target/test-classes), but don't run the tests (they obviously fail, because the goal is to repair them)
60
51
$ mvn test -DskipTests
61
52
```
62
-
4b) Optional: run the tests of Nopol to check your installation
53
+
3b) Optional: run the tests of Nopol to check your installation
63
54
64
55
```
65
56
$ cd ../nopol/
66
57
$ mvn test
67
58
```
68
59
69
-
5) Execute Nopol (parameters explained below)
60
+
4) Execute Nopol (parameters explained below)
70
61
71
62
(Long commands are broken in several lines, separated by a backslash, which means an escaped linebreak in Unix shells.)
0 commit comments