-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Postcode Validator | ||
|
||
This program is built on `Java 8` and is dependant on Stream API. | ||
It also requires `maven 3.3.9+` | ||
|
||
The code can be compiled and executed using maven via commandline or latest java supported IDE. | ||
|
||
Following line is used to compile the code (using command-line): | ||
```sh | ||
$ cd PostCode | ||
$ mvn clean install | ||
``` | ||
|
||
To run the tests: | ||
```sh | ||
$ mvn test | ||
``` | ||
|
||
To run the main program to read csv file and create respective valid/invalid files: | ||
```sh | ||
$ mvn exec:java | ||
``` | ||
**You would need to enter number '1' or '2' to perform the task** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
# This is the place where main import_data.csv is supposed to be present | ||
# This is the place where main `import_data.csv` is supposed to be present |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
# This is the place where test import_data.csv is supposed to be present | ||
# This is the place where test `import_data.csv` is supposed to be present |