vijithaepa/AntProject
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Alogorithms
===========
Java imlementations for Algorithms as Traversal, Searching, Sorting...etc
Contents :
==========
.
├── pom.xml
├── README.txt
└── src
├── main
│ ├── java
│ │ └── com
│ │ ├── alogorithm
│ │ │ └── sorting
│ │ │ └── SortingAlgorithm.java
│ │ └── genaral
│ │ └── pascaltrangle
│ │ └── PascalTraingle.java
│ └── resources
└── test
├── java
│ └── com
│ ├── alogorithm
│ │ └── sorting
│ │ └── TestSortingAlgorithms.java
│ └── genaral
│ └── pascaltrangle
│ └── TestPascalTraingle.java
└── resources
Building the Project.
====================
Pre-requisites
--------------
JDK 1.6.x or higher
Maven 2 or higher
set java_home and m2_home.
Steps:
------
1 - Go to the project home directory /Algorithm/, and run
- mvn clean package
- This might take a few seconds to download all the dependencies to your local M2 repo.
2 - To run the tests,
- mvn clean test
Running the application.
========================
This package developed for Testing purpose. So runing method is not implemented.