Skip to content

Commit 69fe0c7

Browse files
committed
Initial commit
0 parents  commit 69fe0c7

37 files changed

+3375
-0
lines changed

.gitignore

Lines changed: 250 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,250 @@
1+
2+
# Created by https://www.gitignore.io/api/osx,java,linux,maven,windows,intellij,jetbrains+all
3+
# Edit at https://www.gitignore.io/?templates=osx,java,linux,maven,windows,intellij,jetbrains+all
4+
5+
### Intellij ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
# User-specific stuff
10+
.idea/**/workspace.xml
11+
.idea/**/tasks.xml
12+
.idea/**/usage.statistics.xml
13+
.idea/**/dictionaries
14+
.idea/**/shelf
15+
16+
# Generated files
17+
.idea/**/contentModel.xml
18+
native-libs/**
19+
20+
# Sensitive or high-churn files
21+
.idea/**/dataSources/
22+
.idea/**/dataSources.ids
23+
.idea/**/dataSources.local.xml
24+
.idea/**/sqlDataSources.xml
25+
.idea/**/dynamic.xml
26+
.idea/**/uiDesigner.xml
27+
.idea/**/dbnavigator.xml
28+
29+
# Gradle
30+
.idea/**/gradle.xml
31+
.idea/**/libraries
32+
33+
# Gradle and Maven with auto-import
34+
# When using Gradle or Maven with auto-import, you should exclude module files,
35+
# since they will be recreated, and may cause churn. Uncomment if using
36+
# auto-import.
37+
# .idea/modules.xml
38+
# .idea/*.iml
39+
# .idea/modules
40+
# *.iml
41+
# *.ipr
42+
43+
# CMake
44+
cmake-build-*/
45+
46+
# Mongo Explorer plugin
47+
.idea/**/mongoSettings.xml
48+
49+
# File-based project format
50+
*.iws
51+
52+
# IntelliJ
53+
out/
54+
55+
# mpeltonen/sbt-idea plugin
56+
.idea_modules/
57+
58+
# JIRA plugin
59+
atlassian-ide-plugin.xml
60+
61+
# Cursive Clojure plugin
62+
.idea/replstate.xml
63+
64+
# Crashlytics plugin (for Android Studio and IntelliJ)
65+
com_crashlytics_export_strings.xml
66+
crashlytics.properties
67+
crashlytics-build.properties
68+
fabric.properties
69+
70+
# Editor-based Rest Client
71+
.idea/httpRequests
72+
73+
# Android studio 3.1+ serialized cache file
74+
.idea/caches/build_file_checksums.ser
75+
76+
### Intellij Patch ###
77+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
78+
79+
# *.iml
80+
# modules.xml
81+
# .idea/misc.xml
82+
# *.ipr
83+
84+
# Sonarlint plugin
85+
.idea/sonarlint
86+
87+
### Java ###
88+
# Compiled class file
89+
*.class
90+
91+
# Log file
92+
*.log
93+
94+
# BlueJ files
95+
*.ctxt
96+
97+
# Mobile Tools for Java (J2ME)
98+
.mtj.tmp/
99+
100+
# Package Files #
101+
*.jar
102+
*.war
103+
*.nar
104+
*.ear
105+
*.zip
106+
*.tar.gz
107+
*.rar
108+
109+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
110+
hs_err_pid*
111+
112+
### JetBrains+all ###
113+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
114+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
115+
116+
# User-specific stuff
117+
118+
# Generated files
119+
120+
# Sensitive or high-churn files
121+
122+
# Gradle
123+
124+
# Gradle and Maven with auto-import
125+
# When using Gradle or Maven with auto-import, you should exclude module files,
126+
# since they will be recreated, and may cause churn. Uncomment if using
127+
# auto-import.
128+
# .idea/modules.xml
129+
# .idea/*.iml
130+
# .idea/modules
131+
# *.iml
132+
# *.ipr
133+
134+
# CMake
135+
136+
# Mongo Explorer plugin
137+
138+
# File-based project format
139+
140+
# IntelliJ
141+
142+
# mpeltonen/sbt-idea plugin
143+
144+
# JIRA plugin
145+
146+
# Cursive Clojure plugin
147+
148+
# Crashlytics plugin (for Android Studio and IntelliJ)
149+
150+
# Editor-based Rest Client
151+
152+
# Android studio 3.1+ serialized cache file
153+
154+
### JetBrains+all Patch ###
155+
# Ignores the whole .idea folder and all .iml files
156+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
157+
158+
.idea/
159+
160+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
161+
162+
*.iml
163+
modules.xml
164+
.idea/misc.xml
165+
*.ipr
166+
167+
# Sonarlint plugin
168+
169+
### Linux ###
170+
*~
171+
172+
# temporary files which can be created if a process still has a handle open of a deleted file
173+
.fuse_hidden*
174+
175+
# KDE directory preferences
176+
.directory
177+
178+
# Linux trash folder which might appear on any partition or disk
179+
.Trash-*
180+
181+
# .nfs files are created when an open file is removed but is still being accessed
182+
.nfs*
183+
184+
### Maven ###
185+
target/
186+
pom.xml.tag
187+
pom.xml.releaseBackup
188+
pom.xml.versionsBackup
189+
pom.xml.next
190+
release.properties
191+
dependency-reduced-pom.xml
192+
buildNumber.properties
193+
.mvn/timing.properties
194+
.mvn/wrapper/maven-wrapper.jar
195+
196+
### OSX ###
197+
# General
198+
.DS_Store
199+
.AppleDouble
200+
.LSOverride
201+
202+
# Icon must end with two \r
203+
Icon
204+
205+
# Thumbnails
206+
._*
207+
208+
# Files that might appear in the root of a volume
209+
.DocumentRevisions-V100
210+
.fseventsd
211+
.Spotlight-V100
212+
.TemporaryItems
213+
.Trashes
214+
.VolumeIcon.icns
215+
.com.apple.timemachine.donotpresent
216+
217+
# Directories potentially created on remote AFP share
218+
.AppleDB
219+
.AppleDesktop
220+
Network Trash Folder
221+
Temporary Items
222+
.apdisk
223+
224+
### Windows ###
225+
# Windows thumbnail cache files
226+
Thumbs.db
227+
Thumbs.db:encryptable
228+
ehthumbs.db
229+
ehthumbs_vista.db
230+
231+
# Dump file
232+
*.stackdump
233+
234+
# Folder config file
235+
[Dd]esktop.ini
236+
237+
# Recycle Bin used on file shares
238+
$RECYCLE.BIN/
239+
240+
# Windows Installer files
241+
*.cab
242+
*.msi
243+
*.msix
244+
*.msm
245+
*.msp
246+
247+
# Windows shortcuts
248+
*.lnk
249+
250+
# End of https://www.gitignore.io/api/osx,java,linux,maven,windows,intellij,jetbrains+all

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: java
2+
jdk:
3+
- openjdk8
4+
script:
5+
- mvn test-compile && mvn test jacoco:report
6+
after_success:
7+
- mvn coveralls:report

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
5+
and this project adheres to [Semantic Versioning](http://semver.org/).
6+
7+
## [Unreleased]
8+
9+
[Unreleased]: https://github.com/bad-opensource/spring-cache-dynamo/compare/HEAD

0 commit comments

Comments
 (0)