-
Notifications
You must be signed in to change notification settings - Fork 0
/
building.txt
executable file
·45 lines (31 loc) · 1.17 KB
/
building.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
=====================
BANK WORKTEST
Building Instructions
=====================
This directory contains all source code, documentation and build files needed to complete
the bank worktest assignment.
Prerequisites
-------------
In order to build and run the project you will (at least) need the following tools:
* JDK 1.7+
http://www.oracle.com/technetwork/java/javase/downloads/
* Apache Maven 3+
http://maven.apache.org
Build Instructions
------------------
To compile and test your solution once its complete, run:
$> mvn clean test
Obviously the tests will fail unless you have implemented some sort of solution.
If you have additional dependencies just add them to the pom.xml accordingly.
To find a specific dependency, go to http://search.maven.org/.
If a dependency is not available in the public Maven repo, you need to add
the jar file to a lib directory and use system scope to point it out
in the pom.xml.
Example:
<dependency>
<groupId>org.lib</groupId>
<artifactId>stuff</artifactId>
<version>1.2.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/stuff-1.2.3.jar</systemPath>
</dependency