Skip to content

Commit

Permalink
Initial project setup
Browse files Browse the repository at this point in the history
  • Loading branch information
whiskeysierra committed Jul 25, 2015
1 parent 50fbe4a commit 9f33c2d
Show file tree
Hide file tree
Showing 7 changed files with 388 additions and 12 deletions.
18 changes: 11 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Created by http://gitignore.io

### IntelliJ ###
*.iml
*.ipr
*.iws
.idea/

### Maven ###
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties

.java-version
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: java

sudo: false

jdk:
- oraclejdk8

script: mvn clean verify

after_success:
- mvn coveralls:report

notifications:
email:
on_failure: change
8 changes: 4 additions & 4 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
Expand Down Expand Up @@ -178,15 +179,15 @@
APPENDIX: How to apply the Apache License to your work.

To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "{}"
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright {yyyy} {name of copyright owner}
Copyright [2015] [Zalando SE]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -198,5 +199,4 @@
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

limitations under the License.
1 change: 1 addition & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Willi Schönborn <[email protected]>
35 changes: 34 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,34 @@
# null-problemo
# Null Problemo

[![Build Status](https://img.shields.io/travis/zalando/null-problemo.svg)](https://travis-ci.org/zalando/null-problemo)
[![Coverage Status](https://img.shields.io/coveralls/zalando/null-problemo.svg)](https://coveralls.io/r/zalando/null-problemo)
[![Release](https://img.shields.io/github/release/zalando/null-problemo.svg)](https://github.com/zalando/null-problemo/releases)
[![Maven Central](https://img.shields.io/maven-central/v/org.zalando/null-problemo.svg)](https://maven-badges.herokuapp.com/maven-central/org.zalando/null-problemo)

## Dependency

```xml
<dependency>
<groupId>org.zalando</groupId>
<artifactId>null-problemo</artifactId>
<version>${null-problemo.version}</version>
</dependency>
```

## Usage

## License

Copyright [2015] Zalando SE

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Loading

0 comments on commit 9f33c2d

Please sign in to comment.