Skip to content

Commit

Permalink
Extracted from seed as an addon
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienlauer committed Oct 15, 2015
1 parent 270c378 commit 34972c1
Show file tree
Hide file tree
Showing 25 changed files with 1,501 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Eclipse
.classpath
.project
.settings/

# Intellij
.idea/
*.iml

# Maven
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties

#Vim
*~
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Use docker-based infrastructure
sudo: false

language: java

jdk:
- oraclejdk8

cache:
directories:
- "$HOME/.m2/repository"

install: /bin/true

script:
- mvn -q -B -U -Pstaging,javadoc,compatibility install jacoco:report
- mvn -q -B coveralls:report -DrepoToken=$COVERALLS_TOKEN

after_success:
- echo "<settings><servers><server><id>sonatype-nexus-snapshots</id><username>\${env.SONATYPE_USER}</username><password>\${env.SONATYPE_PASS}</password></server></servers></settings>" > ~/settings.xml
- "[[ $TRAVIS_PULL_REQUEST == \"false\" && $TRAVIS_BRANCH == \"master\" ]] && mvn -q deploy --settings ~/settings.xml -DskipTests=true -Pjavadoc"
3 changes: 3 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# This source code refers to The SeedStack authors for copyright purposes.
# The master list of authors is in the SeedStack meta repository,
# visible at https://github.com/seedstack/seedstack/blob/master/AUTHORS.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Version 1.0.0 (2015-07-30)

* [new] Initial Open-Source release.
3 changes: 3 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# This source code was written by the SeedStack contributors.
# The master list of contributors is in the SeedStack meta repository,
# visible at https://github.com/seedstack/seedstack/blob/master/CONTRIBUTORS.

0 comments on commit 34972c1

Please sign in to comment.