Skip to content

Commit

Permalink
circle.yml and settings.xml added
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny-goldin committed Sep 14, 2014
1 parent 03a8a0c commit 63e23ff
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
17 changes: 17 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# https://circleci.com/docs/configuration
# https://circleci.com/docs/environment

machine:
java:
version: oraclejdk7
dependencies:
override:
- mvn -s settings.xml clean
cache_directories:
- ~/.m2
test:
override:
- mvn -s settings.xml clean package
general:
artifacts:
- target/notification.hpi
40 changes: 40 additions & 0 deletions settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<mirrors>
<mirror>
<mirrorOf>*</mirrorOf>
<name>remote-repos</name>
<url>http://jcenter.bintray.com/</url>
<id>remote-repos</id>
</mirror>
</mirrors>
<profiles>
<profile>
<id>jcenter</id>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>libs-releases</name>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>plugins-releases</name>
<url>http://jcenter.bintray.com</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>jcenter</activeProfile>
</activeProfiles>
</settings>

0 comments on commit 63e23ff

Please sign in to comment.