Skip to content

Commit ce85e8a

Browse files
initial commit
0 parents  commit ce85e8a

File tree

139 files changed

+96127
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+96127
-0
lines changed

.gitignore

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
/src/test/h2-data/account.trace.db
2+
.DS_Store
3+
target
4+
### Eclipse template
5+
*.pydevproject
6+
.metadata
7+
.gradle
8+
bin/
9+
tmp/
10+
*.tmp
11+
*.bak
12+
*.swp
13+
*~.nib
14+
local.properties
15+
.settings/
16+
.loadpath
17+
18+
# Eclipse Core
19+
.project
20+
21+
# External tool builders
22+
.externalToolBuilders/
23+
24+
# Locally stored "Eclipse launch configurations"
25+
*.launch
26+
27+
# CDT-specific
28+
.cproject
29+
30+
# JDT-specific (Eclipse Java Development Tools)
31+
.classpath
32+
33+
# Java annotation processor (APT)
34+
.factorypath
35+
36+
# PDT-specific
37+
.buildpath
38+
39+
# sbteclipse plugin
40+
.target
41+
42+
# TeXlipse plugin
43+
.texlipse
44+
### NetBeans template
45+
nbproject/private/
46+
build/
47+
nbbuild/
48+
dist/
49+
nbdist/
50+
nbactions.xml
51+
nb-configuration.xml
52+
.nb-gradle/
53+
### JetBrains template
54+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
55+
56+
*.iml
57+
58+
## Directory-based project format:
59+
.idea/
60+
# if you remove the above rule, at least ignore the following:
61+
62+
# User-specific stuff:
63+
# .idea/workspace.xml
64+
# .idea/tasks.xml
65+
# .idea/dictionaries
66+
67+
# Sensitive or high-churn files:
68+
# .idea/dataSources.ids
69+
# .idea/dataSources.xml
70+
# .idea/sqlDataSources.xml
71+
# .idea/dynamic.xml
72+
# .idea/uiDesigner.xml
73+
74+
# Gradle:
75+
# .idea/gradle.xml
76+
# .idea/libraries
77+
78+
# Mongo Explorer plugin:
79+
# .idea/mongoSettings.xml
80+
81+
## File-based project format:
82+
*.ipr
83+
*.iws
84+
85+
## Plugin-specific files:
86+
87+
# IntelliJ
88+
/out/
89+
90+
# mpeltonen/sbt-idea plugin
91+
.idea_modules/
92+
93+
# JIRA plugin
94+
atlassian-ide-plugin.xml
95+
96+
# Crashlytics plugin (for Android Studio and IntelliJ)
97+
com_crashlytics_export_strings.xml
98+
crashlytics.properties
99+
crashlytics-build.properties
100+
101+
# Created by .ignore support plugin (hsz.mobi)
102+
103+
# Google Cloud Credentials
104+
OpenAPI-5643b6a2692f.json

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: java
2+
script: mvn clean verify
3+
jdk:
4+
- oraclejdk8
5+
before_install:
6+
- wget https://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip
7+
- unzip -qq apache-maven-3.3.9-bin.zip
8+
- export M2_HOME=$PWD/apache-maven-3.3.9
9+
- export PATH=$M2_HOME/bin:$PATH

LICENSE

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
MIT License
2+
3+
Open API Diff
4+
5+
Copyright (c) 2017 Allan Højgaard Jensen
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE.

0 commit comments

Comments
 (0)