This is the Java repository we'll work out of during this training event.
Clone the repo:
Git:
$ git clone [email protected]:testdouble/java-testing-example.git
Svn:
$ svn co https://github.com/testdouble/java-testing-example
Or download a ZIP of main manually and expand the contents someplace on your system
- Have a JDK installed
- Have Maven installed and available on your PATH or IDE
- Have Firefox installed
You can verify the project builds correctly from your IDE or from the command line.
Open a command prompt and verify that all needed bins are on your path and up to date:
$ java -version
# ^ should be at least 1.6
$ mvn -v
# ^ should be at least 3.0.0
Finally, verify that mvn install
succeeds.
You should see output like the following:
$ cd java-testing-example
$ mvn install
# ...
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running com.acme.app.HelloWorldProxyTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.357 sec
Running com.acme.app.HelloWorldTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Results :
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ app ---
[INFO] Building jar: junit-mocha-example/target/app-0.0.1-SNAPSHOT.jar
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ app ---
[INFO] Installing junit-mocha-example/target/app-0.0.1-SNAPSHOT.jar to /Users/justin/.m2/repository/com/acme/app/0.0.1-SNAPSHOT/app-0.0.1-SNAPSHOT.jar
[INFO] Installing junit-mocha-example/pom.xml to /Users/justin/.m2/repository/com/acme/app/0.0.1-SNAPSHOT/app-0.0.1-SNAPSHOT.pom
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 9.159 s
[INFO] Finished at: 2015-08-26T13:49:46-04:00
[INFO] Final Memory: 20M/177M
[INFO] ------------------------------------------------------------------------
First, right-click the Project Explorer and select Import -> Import:
Next, choose Maven -> Existing Maven Projects:
Tell Eclipse where you've downloaded or checked out the project and click Finish:
You should see a progress bar as the project is imported:
Once the project is imported, right-click the project, then choose Run As -> Maven install:
If everything has succeeded, you should see a successful build in Eclipse's console:
Once you've verified you have the project working, continue configuring your environment to start work as described in this wiki page