Strabon
changeset 1118:83f4554eb2aa
Flipped the default behaviour of a build regarding testing.
By default, no tests will be run.
By default, no tests will be run.
author | Kostis Kyzirakos <kkyzir@di.uoa.gr> |
---|---|
date | Sun Apr 28 12:04:09 2013 +0300 (2013-04-28) |
parents | 069d6147db4d |
children | f9116bfd4dd2 |
files | README pom.xml |
line diff
1.1 --- a/README Sat Apr 27 14:37:28 2013 +0300 1.2 +++ b/README Sun Apr 28 12:04:09 2013 +0300 1.3 @@ -59,12 +59,12 @@ 1.4 Assuming you have already downloaded Strabon and you are in the top-level 1.5 directory of Strabon, issue the following command to build it from command line: 1.6 1.7 - $ mvn package 1.8 + $ mvn clean package 1.9 1.10 -The above command runs automatically the JUnit tests. To skip them pass option 1.11 -`-DskipTests=true' to the above command. The complete command is the following: 1.12 +In order to run automatically the JUnit tests, pass the option `-DskipTests=true' 1.13 +to the above command. The complete command is the following: 1.14 1.15 - $ mvn -DskipTests=true package 1.16 + $ mvn -DskipTests=false clean package 1.17 1.18 In case of an error during building of Strabon and assuming that the error does 1.19 not come from the JUnit tests, please have a look at the `Known Issues' section
2.1 --- a/pom.xml Sat Apr 27 14:37:28 2013 +0300 2.2 +++ b/pom.xml Sun Apr 28 12:04:09 2013 +0300 2.3 @@ -152,7 +152,7 @@ 2.4 <xml.bind.version>2.1.7</xml.bind.version> 2.5 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 2.6 <project.build.targetEncoding>UTF-8</project.build.targetEncoding> 2.7 - <skipTests>false</skipTests> 2.8 + <skipTests>true</skipTests> 2.9 </properties> 2.10 2.11 <dependencyManagement>