A arctic, north-bluish color palette Java library.
-Official implementation of Nord.
+Implementation of the Nord project.
---
@@ -39,12 +39,12 @@ Build and install nord-java into your local repository without GPG signing:
mvn clean install
```
-Signed artifacts may be build by using the `sign-gpg` profile with a provided `gpg.keyname` property:
+Signed artifacts may be build by using the `sign-gpg` profile with a provided `gpg.keyname` property:
```
mvn clean install -Dgpg.keyname=YourGPGKeyId
```
-A continuous integration build is running at [Travis-CI](https://travis-ci.org/arcticicestudio/nord-java).
+Continuous integration builds are running at [Travis-CI](https://travis-ci.org/arcticicestudio/nord-java) and [Circle CI](https://circleci.com/bb/arcticicestudio/nord-java).
## Usage Guide
This is a basic guide to show the common usage of the nord-java API.
diff --git a/circle.yml b/circle.yml
new file mode 100644
index 0000000..48eb847
--- /dev/null
+++ b/circle.yml
@@ -0,0 +1,26 @@
+# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+# title Circle CI Build Configuration +
+# project nord-java +
+# version +
+# repository https://github.com/arcticicestudio/nord-java +
+# author Arctic Ice Studio +
+# email development@arcticicestudio.com +
+# copyright Copyright (C) 2016 +
+# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+#
+# [References]
+# Circle CI
+# (https://circleci.com/docs)
+machine:
+ java:
+ version: oraclejdk8
+general:
+ artifacts:
+ - ./target/*.jar
+test:
+ post:
+ - mkdir -p $CIRCLE_TEST_REPORTS/junit/
+ - find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
+ override:
+ - mvn clean verify assembly:single -P code-coverage,assemble
+ - find . -type f -regextype posix-egrep -regex ".*/target/(.*asc|.*jar|.*md5|.*pom|.*sha1|.*tar.gz|.*zip)" -exec cp {} $CIRCLE_ARTIFACTS \;