-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Pierre Stridsberg
authored and
Pierre Stridsberg
committed
Apr 13, 2018
0 parents
commit c61a588
Showing
24 changed files
with
1,281 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
# Known text files | ||
*.css text diff=css | ||
*.java text diff=java | ||
*.js text | ||
*.json text | ||
*.jsp text | ||
*.jspf text | ||
*.jspx text | ||
*.htm text diff=html | ||
*.html text diff=html | ||
*.properties text | ||
*.sh text | ||
*.md text | ||
*.txt text | ||
*.xml text | ||
*.yml text | ||
|
||
# Known binary files | ||
*.class binary | ||
*.gif binary | ||
*.ico binary | ||
*.jar binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.png binary | ||
*.war binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Git folder # | ||
/.git/ | ||
|
||
# Compilation folders # | ||
/bin/ | ||
/target/ | ||
/build/ | ||
|
||
# Java compile files # | ||
*.class | ||
|
||
# Package files # | ||
*.jar | ||
*.war | ||
*.ear | ||
*.db | ||
|
||
# Log files # | ||
/*.log | ||
/*.log.* | ||
|
||
# Output folders # | ||
/test-output/ | ||
|
||
# Eclipse files # | ||
.buildpath | ||
.classpath | ||
.cproject | ||
.externalToolBuilders/ | ||
.launch | ||
.loadpath | ||
.metadata | ||
.project | ||
.settings/ | ||
bin/** | ||
tmp/** | ||
tmp/**/* | ||
*.tmp | ||
*.nak | ||
*.swp | ||
*~.nib | ||
*.pydevproject | ||
local.properties | ||
/src/main/resources/rebel.xml | ||
.springBeans | ||
|
||
# IntelliJ Idea files # | ||
.idea | ||
*.iml | ||
|
||
# Windows files # | ||
Thumbs.db | ||
Desktop.ini | ||
|
||
# OS files # | ||
.DS_Store | ||
.svn | ||
._* | ||
.Spotlight-V100 | ||
.Trashes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Travis CI Configuration file | ||
# @link https://travis-ci.org/ | ||
|
||
# Using Java for the project | ||
language: java | ||
matrix: | ||
include: | ||
# Code artifacts deployed with OpenJDK7 | ||
- jdk: openjdk7 | ||
env: DEPLOY=true | ||
# Documentation deployed with JDK8 | ||
- jdk: oraclejdk8 | ||
env: DEPLOY_DOCS=true | ||
|
||
before_install: | ||
# Gets scripts | ||
- git clone -b v1.1.3 --single-branch https://github.com/Bernardo-MG/ci-shell-scripts.git ~/.scripts | ||
# Sets scripts as executable | ||
- chmod -R +x ~/.scripts/* | ||
# Prepares CI environment | ||
- source ~/.scripts/travis/load-travis-environment.sh | ||
before_script: | ||
# Creates Maven settings | ||
- ~/.scripts/java/maven/create-maven-settings.sh $VERSION_TYPE | ||
script: | ||
# Unit and integration tests are run | ||
- mvn clean verify | ||
after_success: | ||
# Documentation deployment script | ||
- ~/.scripts/java/maven/deploy-site.sh $DO_DEPLOY_DOCS deployment | ||
# Code artifacts deployment script | ||
- ~/.scripts/java/maven/deploy.sh $DO_DEPLOY deployment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2017 Bernardo Martínez Garrido | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Oops, something went wrong.