Skip to content

Commit 8cc1535

Browse files
committed
#1 - Setup repository
0 parents  commit 8cc1535

File tree

5 files changed

+83
-0
lines changed

5 files changed

+83
-0
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
target/
2+
.idea/
3+
.settings/
4+
*.iml
5+
.project
6+
.classpath
7+
.springBeans
8+
.sonar4clipse
9+
*.sonar4clipseExternals
10+
*.graphml

.travis.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
language: java
2+
3+
matrix:
4+
include:
5+
- jdk: oraclejdk8
6+
env: JDK='Oracle JDK 8'
7+
- jdk: oraclejdk9
8+
env: JDK='Oracle JDK 9'
9+
- env:
10+
- JDK='Oracle JDK 10'
11+
- NO_JACOCO='true'
12+
before_install: wget https://github.com/sormuras/bach/raw/master/install-jdk.sh && . ./install-jdk.sh -F 10 -L BCL
13+
- env:
14+
- JDK='Oracle JDK 11'
15+
- NO_JACOCO='true'
16+
before_install: wget https://github.com/sormuras/bach/raw/master/install-jdk.sh && . ./install-jdk.sh -F 11 -L BCL
17+
allow_failures:
18+
- env:
19+
- JDK='Oracle JDK 11'
20+
- NO_JACOCO='true'
21+
22+
addons:
23+
apt:
24+
packages:
25+
- oracle-java8-installer
26+
27+
cache:
28+
directories:
29+
- $HOME/.m2
30+
31+
sudo: false
32+
33+
services:
34+
- docker
35+
- postgresql
36+
37+
install: true
38+
39+
script:
40+
- "mvn -version"
41+
- "mvn clean dependency:list test -Pall-dbs${NO_JACOCO:+',no-jacoco'} -Dsort -U"

CODE_OF_CONDUCT.adoc

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
= Contributor Code of Conduct
2+
3+
As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4+
5+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality.
6+
7+
Examples of unacceptable behavior by participants include:
8+
9+
* The use of sexualized language or imagery
10+
* Personal attacks
11+
* Trolling or insulting/derogatory comments
12+
* Public or private harassment
13+
* Publishing other's private information, such as physical or electronic addresses,
14+
without explicit permission
15+
* Other unethical or unprofessional conduct
16+
17+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
18+
19+
By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team.
20+
21+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.
22+
23+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting a project maintainer at [email protected].
24+
All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances.
25+
Maintainers are obligated to maintain confidentiality with regard to the reporter of an incident.
26+
27+
This Code of Conduct is adapted from the http://contributor-covenant.org[Contributor Covenant], version 1.3.0, available at http://contributor-covenant.org/version/1/3/0/[contributor-covenant.org/version/1/3/0/].

CONTRIBUTING.adoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
= Spring Data contribution guidelines
2+
3+
You find the contribution guidelines for Spring Data projects https://github.com/spring-projects/spring-data-build/blob/master/CONTRIBUTING.adoc[here].

lombok.config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
lombok.nonNull.exceptionType = IllegalArgumentException
2+
lombok.log.fieldName = LOG

0 commit comments

Comments
 (0)