Today, I've made github repository, and set up Travis-CI. Continuous integration is essential on making a cryptocurrency. CodableCash is built with Java environment, so it is used with Maven.
The repository is made as Eclipse Project. We can clone the project and open it as Eclipse project. About how to open with eclipse, please take a look at following page.
https://github.com/alinous-core/codablecash/blob/master/SETUP_ECLIPSE.md
What I did in order to do that is below. It was not so troublesome task.
At first, open eclipse and create Maven project. Right clock on the Package Explorer, select "New Project". After that, select "Maven -> Maven Project" on the dialog.
Then a new project was made, and write "pom.xml" like below.
It is very easy. Just make ".travis.yml" file, and write following code there.
language: java
jdk:
- openjdk7
script: "mvn clean install"
after_success:
- mvn clean test
notifications:
email:
recipients:
- [email protected]
Create a new repository on github. And Turn travis CI on.
After making github, clone the repository into local folder. And copy the files on the Eclipse Project. And push it back. After this process, a github repository with Travis-CI is made.
I'll add new source code into this repository.