Skip to content

Commit c29037c

Browse files
committed
Initial project
0 parents  commit c29037c

File tree

3 files changed

+229
-0
lines changed

3 files changed

+229
-0
lines changed

.gitignore

Lines changed: 168 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,168 @@
1+
### JetBrains template
2+
.idea/
3+
*.iml
4+
5+
# CMake
6+
cmake-build-debug/
7+
cmake-build-release/
8+
9+
# File-based project format
10+
*.iws
11+
12+
# IntelliJ
13+
out/
14+
15+
# mpeltonen/sbt-idea plugin
16+
.idea_modules/
17+
18+
# JIRA plugin
19+
atlassian-ide-plugin.xml
20+
21+
# Cursive Clojure plugin
22+
.idea/replstate.xml
23+
24+
# Crashlytics plugin (for Android Studio and IntelliJ)
25+
com_crashlytics_export_strings.xml
26+
crashlytics.properties
27+
crashlytics-build.properties
28+
fabric.properties
29+
30+
# Editor-based Rest Client
31+
.idea/httpRequests
32+
33+
### Example user template
34+
35+
.metadata
36+
bin/
37+
tmp/
38+
*.tmp
39+
*.bak
40+
*.swp
41+
*~.nib
42+
local.properties
43+
.settings/
44+
.loadpath
45+
.recommenders
46+
47+
# External tool builders
48+
.externalToolBuilders/
49+
50+
# Locally stored "Eclipse launch configurations"
51+
*.launch
52+
53+
# PyDev specific (Python IDE for Eclipse)
54+
*.pydevproject
55+
56+
# CDT-specific (C/C++ Development Tooling)
57+
.cproject
58+
59+
# CDT- autotools
60+
.autotools
61+
62+
# Java annotation processor (APT)
63+
.factorypath
64+
65+
# PDT-specific (PHP Development Tools)
66+
.buildpath
67+
68+
# sbteclipse plugin
69+
.target
70+
71+
# Tern plugin
72+
.tern-project
73+
74+
# TeXlipse plugin
75+
.texlipse
76+
77+
# STS (Spring Tool Suite)
78+
.springBeans
79+
80+
# Code Recommenders
81+
.recommenders/
82+
83+
# Scala IDE specific (Scala & Java development for Eclipse)
84+
.cache-main
85+
.scala_dependencies
86+
.worksheet
87+
88+
### macOS template
89+
# General
90+
.DS_Store
91+
.AppleDouble
92+
.LSOverride
93+
94+
# Icon must end with two \r
95+
Icon
96+
97+
# Thumbnails
98+
._*
99+
100+
# Files that might appear in the root of a volume
101+
.DocumentRevisions-V100
102+
.fseventsd
103+
.Spotlight-V100
104+
.TemporaryItems
105+
.Trashes
106+
.VolumeIcon.icns
107+
.com.apple.timemachine.donotpresent
108+
109+
# Directories potentially created on remote AFP share
110+
.AppleDB
111+
.AppleDesktop
112+
Network Trash Folder
113+
Temporary Items
114+
.apdisk
115+
116+
### Windows template
117+
# Windows thumbnail cache files
118+
Thumbs.db
119+
ehthumbs.db
120+
ehthumbs_vista.db
121+
122+
# Dump file
123+
*.stackdump
124+
125+
# Folder config file
126+
[Dd]esktop.ini
127+
128+
# Recycle Bin used on file shares
129+
$RECYCLE.BIN/
130+
131+
# Windows Installer files
132+
*.cab
133+
*.msi
134+
*.msix
135+
*.msm
136+
*.msp
137+
138+
# Windows shortcuts
139+
*.lnk
140+
141+
### Maven template
142+
target/
143+
pom.xml.tag
144+
pom.xml.releaseBackup
145+
pom.xml.versionsBackup
146+
pom.xml.next
147+
release.properties
148+
dependency-reduced-pom.xml
149+
buildNumber.properties
150+
.mvn/timing.properties
151+
152+
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
153+
!/.mvn/wrapper/maven-wrapper.jar
154+
155+
### Linux template
156+
*~
157+
158+
# temporary files which can be created if a process still has a handle open of a deleted file
159+
.fuse_hidden*
160+
161+
# KDE directory preferences
162+
.directory
163+
164+
# Linux trash folder which might appear on any partition or disk
165+
.Trash-*
166+
167+
# .nfs files are created when an open file is removed but is still being accessed
168+
.nfs*

README.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# SpringBoot Scala Integration
2+
3+
SpringBoot Scala Integration is a open source springboot, scala integration example.
4+
5+
### Technology distribution
6+
7+
---
8+
9+
|Name|Version|
10+
|:---:|---|
11+
|Java|1.8+|
12+
|SpringBoot|2.1.x|
13+
|Kotlin|2.12.x|
14+
15+
### Contributors(In no particular order)
16+
17+
---
18+
19+
- [qianmoQ](https://github.com/qianmoQ)
20+
21+
### Source Code Mirror
22+
23+
---
24+
25+
- [GitQub](https://gitqub.com/springboot-integration/springboot-scala-integration.git)
26+
- [GitHub](https://github.com/SpringBootIntegration/springboot-scala-integration.git)
27+
- [Gitee](https://gitee.com/SpringBootIntegratio/springboot-scala-integration.git)
28+
29+
### Wiki
30+
31+
---
32+
33+
- [Wiki](http://wiki.ttxit.com/display/SpringBootIntegration)
34+
35+
### Issues
36+
37+
---
38+
39+
- [JIRA](http://jira.ttxit.com/projects/SPRINATION)
40+
41+
### Contact us
42+
43+
---
44+
45+
|Name|Value|
46+
|:---:|---|
47+
|QQ|86613994|
48+
|WeChat|86613994|

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.edurt.ssi</groupId>
6+
<artifactId>springboot-scala-integration</artifactId>
7+
<packaging>jar</packaging>
8+
<version>1.0.0</version>
9+
10+
<name>springboot-scala-integration</name>
11+
<description>SpringBoot Scala Integration is a open source springboot, scala integration example.</description>
12+
13+
</project>

0 commit comments

Comments
 (0)