Skip to content

Commit fce849e

Browse files
committed
Initial Commit
0 parents  commit fce849e

12 files changed

+510
-0
lines changed

.gitignore

+162
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
1+
# Created by https://www.gitignore.io/api/java,macos,gradle,intellij+all
2+
# Edit at https://www.gitignore.io/?templates=java,macos,gradle,intellij+all
3+
4+
### Intellij+all ###
5+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
6+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7+
8+
# User-specific stuff
9+
.idea/**/workspace.xml
10+
.idea/**/tasks.xml
11+
.idea/**/usage.statistics.xml
12+
.idea/**/dictionaries
13+
.idea/**/shelf
14+
15+
# Generated files
16+
.idea/**/contentModel.xml
17+
18+
# Sensitive or high-churn files
19+
.idea/**/dataSources/
20+
.idea/**/dataSources.ids
21+
.idea/**/dataSources.local.xml
22+
.idea/**/sqlDataSources.xml
23+
.idea/**/dynamic.xml
24+
.idea/**/uiDesigner.xml
25+
.idea/**/dbnavigator.xml
26+
27+
# Gradle
28+
.idea/**/gradle.xml
29+
.idea/**/libraries
30+
31+
# Gradle and Maven with auto-import
32+
# When using Gradle or Maven with auto-import, you should exclude module files,
33+
# since they will be recreated, and may cause churn. Uncomment if using
34+
# auto-import.
35+
# .idea/modules.xml
36+
# .idea/*.iml
37+
# .idea/modules
38+
# *.iml
39+
# *.ipr
40+
41+
# CMake
42+
cmake-build-*/
43+
44+
# Mongo Explorer plugin
45+
.idea/**/mongoSettings.xml
46+
47+
# File-based project format
48+
*.iws
49+
50+
# IntelliJ
51+
out/
52+
53+
# mpeltonen/sbt-idea plugin
54+
.idea_modules/
55+
56+
# JIRA plugin
57+
atlassian-ide-plugin.xml
58+
59+
# Cursive Clojure plugin
60+
.idea/replstate.xml
61+
62+
# Crashlytics plugin (for Android Studio and IntelliJ)
63+
com_crashlytics_export_strings.xml
64+
crashlytics.properties
65+
crashlytics-build.properties
66+
fabric.properties
67+
68+
# Editor-based Rest Client
69+
.idea/httpRequests
70+
71+
# Android studio 3.1+ serialized cache file
72+
.idea/caches/build_file_checksums.ser
73+
74+
### Intellij+all Patch ###
75+
# Ignores the whole .idea folder and all .iml files
76+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
77+
78+
.idea/
79+
80+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
81+
82+
*.iml
83+
modules.xml
84+
.idea/misc.xml
85+
*.ipr
86+
87+
# Sonarlint plugin
88+
.idea/sonarlint
89+
90+
### Java ###
91+
# Compiled class file
92+
*.class
93+
94+
# Log file
95+
*.log
96+
97+
# BlueJ files
98+
*.ctxt
99+
100+
# Mobile Tools for Java (J2ME)
101+
.mtj.tmp/
102+
103+
# Package Files #
104+
*.jar
105+
*.war
106+
*.nar
107+
*.ear
108+
*.zip
109+
*.tar.gz
110+
*.rar
111+
112+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
113+
hs_err_pid*
114+
115+
### macOS ###
116+
# General
117+
.DS_Store
118+
.AppleDouble
119+
.LSOverride
120+
121+
# Icon must end with two \r
122+
Icon
123+
124+
# Thumbnails
125+
._*
126+
127+
# Files that might appear in the root of a volume
128+
.DocumentRevisions-V100
129+
.fseventsd
130+
.Spotlight-V100
131+
.TemporaryItems
132+
.Trashes
133+
.VolumeIcon.icns
134+
.com.apple.timemachine.donotpresent
135+
136+
# Directories potentially created on remote AFP share
137+
.AppleDB
138+
.AppleDesktop
139+
Network Trash Folder
140+
Temporary Items
141+
.apdisk
142+
143+
### Gradle ###
144+
.gradle
145+
build/
146+
147+
# Ignore Gradle GUI config
148+
gradle-app.setting
149+
150+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
151+
!gradle-wrapper.jar
152+
153+
# Cache of project
154+
.gradletasknamecache
155+
156+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
157+
# gradle/wrapper/gradle-wrapper.properties
158+
159+
### Gradle Patch ###
160+
**/build/
161+
162+
# End of https://www.gitignore.io/api/java,macos,gradle,intellij+all

LICENSE

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

README.md

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

build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
plugins {
2+
3+
}

gradle.properties

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
group=com.github.gregwhitaker
2+
version=0.1.0

gradle/wrapper/gradle-wrapper.jar

53.9 KB
Binary file not shown.
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.3-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)