Skip to content

Commit ef83e6e

Browse files
author
曾梓健
committed
first init
0 parents  commit ef83e6e

File tree

6,259 files changed

+577932
-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.

6,259 files changed

+577932
-0
lines changed

.bomr/bomr.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
bomr:
2+
bom: spring-boot-project/spring-boot-dependencies/pom.xml
3+
upgrade:
4+
github:
5+
organization: spring-projects
6+
repository: spring-boot
7+
issue-labels:
8+
- 'type: dependency-upgrade'
9+
policy: same-minor-version
10+
prohibited:
11+
- project: derby
12+
versions:
13+
# 10.15 requires Java 9
14+
- '[10.15,)'
15+
verify:
16+
ignored-dependencies:
17+
# Avoid conflicting transitive requirements for
18+
# io.grpc:grpc-core:jar:[1.0.1,1.0.1] (Jetty),
19+
# io.grpc:grpc-core:jar:[1.14.0,1.14.0] (Micrometer's Azure Registry), and
20+
# io.grpc:grpc-core:jar:[1.15.0,1.15.0] (Micrometer's Stackdriver Registry)
21+
- 'io.micrometer:micrometer-registry-azure-monitor'
22+
- 'org.eclipse.jetty.gcloud:jetty-gcloud-session-manager'
23+
- 'org.eclipse.jetty:jetty-home'
24+
repositories:
25+
# Caffeine Simulator's dependencies
26+
- 'https://maven.imagej.net/content/repositories/public/'
27+
# Spring Data GemFire's GemFire dependencies
28+
- 'https://repo.spring.io/gemstone-release-pivotal-cache'

.editorconfig

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
root=true
2+
3+
[*.{groovy,java,kt,xml}]
4+
indent_style = tab
5+
indent_size = 4
6+
continuation_indent_size = 8

.github/ISSUE_TEMPLATE.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!--
2+
Thanks for raising a Spring Boot issue. Please take the time to review the following
3+
categories as some of them do not apply here.
4+
5+
🙅 "Please DO NOT Raise an Issue" Cases
6+
- Question
7+
STOP!! Please ask questions about how to use something, or to understand why something isn't
8+
working as you expect it to, on Stack Overflow using the spring-boot tag.
9+
- Security Vulnerability
10+
STOP!! Please don't raise security vulnerabilities here. Head over to https://pivotal.io/security to learn how to disclose them responsibly.
11+
- Managed Dependency Upgrade
12+
You DO NOT need to raise an issue for a managed dependency version upgrade as there's a semi-automatic process for checking managed dependencies for new versions before a release. BUT pull requests for upgrades that are more involved than just a version property change are still most welcome.
13+
- With an Immediate Pull Request
14+
An issue will be closed as a duplicate of the immediate pull request, so you don't have to raise an issue if you plan to create a pull request immediately.
15+
16+
🐞 Bug report (please don't include this emoji/text, just add your details)
17+
Please provide details of the problem, including the version of Spring Boot that you
18+
are using. If possible, please provide a test case or sample application that reproduces
19+
the problem. This makes it much easier for us to diagnose the problem and to verify that
20+
we have fixed it.
21+
22+
🎁 Enhancement (please don't include this emoji/text, just add your details)
23+
Please start by describing the problem that you are trying to solve. There may already
24+
be a solution, or there may be a way to solve it that you hadn't considered.
25+
26+
27+
TIP: You can always edit your issue if it isn't formatted correctly.
28+
See https://guides.github.com/features/mastering-markdown
29+
-->

.github/PULL_REQUEST_TEMPLATE.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!--
2+
Thanks for contributing to Spring Boot. Please review the following notes before
3+
submitting you pull request.
4+
5+
Security Vulnerabilities
6+
7+
STOP! If your contribution fixes a security vulnerability, please do not submit it.
8+
Instead, please head over to https://pivotal.io/security to learn how to disclose a
9+
vulnerability responsibly.
10+
11+
Dependency Upgrades
12+
13+
Please do not open a pull request for a straightforward dependency upgrade (one that
14+
only updates the version property). We have a semi-automated process for such upgrades
15+
that we prefer to use. However, if the upgrade is more involved (such as requiring
16+
changes for removed or deprecated API) your pull request is most welcome.
17+
18+
Describing Your Changes
19+
20+
If, having reviewed the notes above, you're ready to submit your pull request, please
21+
provide a brief description of the proposed changes. If they fix a bug, please
22+
describe the broken behaviour and how the changes fix it. If they make an enhancement,
23+
please describe the new functionality and why you believe it's useful. If your pull
24+
request relates to any existing issues, please reference them by using the issue number
25+
prefixed with #.
26+
-->

.gitignore

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
*#
2+
*.iml
3+
*.ipr
4+
*.iws
5+
*.jar
6+
*.sw?
7+
*~
8+
.#*
9+
.*.md.html
10+
.DS_Store
11+
.attach_pid*
12+
.classpath
13+
.factorypath
14+
.gradle
15+
.idea
16+
.metadata
17+
.project
18+
.recommenders
19+
.settings
20+
.springBeans
21+
/build
22+
/code
23+
MANIFEST.MF
24+
_site/
25+
activemq-data
26+
bin
27+
build
28+
build.log
29+
dependency-reduced-pom.xml
30+
dump.rdb
31+
interpolated*.xml
32+
lib/
33+
manifest.yml
34+
overridedb.*
35+
target
36+
transaction-logs
37+
.flattened-pom.xml
38+
secrets.yml
39+
.gradletasknamecache
40+
.sts4-cache

.mvn/jvm.config

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Xmx1536m

.mvn/wrapper/maven-wrapper.properties

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.5.4/apache-maven-3.5.4-bin.zip
2+
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.3/maven-wrapper-0.5.3.jar

.settings-template.xml

+160
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
4+
<profiles>
5+
<profile>
6+
<id>snapshot</id>
7+
<repositories>
8+
<repository>
9+
<id>spring-ext</id>
10+
<url>https://repo.spring.io/ext-release-local/</url>
11+
<releases>
12+
<enabled>true</enabled>
13+
</releases>
14+
<snapshots>
15+
<enabled>false</enabled>
16+
</snapshots>
17+
</repository>
18+
<repository>
19+
<id>spring-milestones</id>
20+
<name>Spring Milestones</name>
21+
<url>https://repo.spring.io/milestone</url>
22+
<snapshots>
23+
<enabled>false</enabled>
24+
</snapshots>
25+
</repository>
26+
<repository>
27+
<id>spring-snapshots</id>
28+
<name>Spring Snapshots</name>
29+
<url>https://repo.spring.io/snapshot</url>
30+
<snapshots>
31+
<enabled>true</enabled>
32+
</snapshots>
33+
</repository>
34+
<repository>
35+
<id>jboss</id>
36+
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
37+
<releases>
38+
<enabled>true</enabled>
39+
</releases>
40+
<snapshots>
41+
<enabled>false</enabled>
42+
</snapshots>
43+
</repository>
44+
<repository>
45+
<id>rabbit-milestones</id>
46+
<name>Rabbit Milestones</name>
47+
<url>https://dl.bintray.com/rabbitmq/maven-milestones</url>
48+
<snapshots>
49+
<enabled>false</enabled>
50+
</snapshots>
51+
</repository>
52+
</repositories>
53+
<pluginRepositories>
54+
<pluginRepository>
55+
<id>spring-milestones</id>
56+
<name>Spring Milestones</name>
57+
<url>https://repo.spring.io/milestone</url>
58+
<snapshots>
59+
<enabled>false</enabled>
60+
</snapshots>
61+
</pluginRepository>
62+
<pluginRepository>
63+
<id>spring-snapshots</id>
64+
<name>Spring Snapshots</name>
65+
<url>https://repo.spring.io/snapshot</url>
66+
<snapshots>
67+
<enabled>true</enabled>
68+
</snapshots>
69+
</pluginRepository>
70+
</pluginRepositories>
71+
</profile>
72+
<profile>
73+
<id>milestone</id>
74+
<repositories>
75+
<repository>
76+
<id>spring-ext</id>
77+
<url>https://repo.spring.io/ext-release-local/</url>
78+
<releases>
79+
<enabled>true</enabled>
80+
</releases>
81+
<snapshots>
82+
<enabled>false</enabled>
83+
</snapshots>
84+
</repository>
85+
<repository>
86+
<id>jboss</id>
87+
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
88+
<releases>
89+
<enabled>true</enabled>
90+
</releases>
91+
<snapshots>
92+
<enabled>false</enabled>
93+
</snapshots>
94+
</repository>
95+
<repository>
96+
<id>spring-milestones</id>
97+
<name>Spring Milestones</name>
98+
<url>https://repo.spring.io/milestone</url>
99+
<snapshots>
100+
<enabled>false</enabled>
101+
</snapshots>
102+
</repository>
103+
<repository>
104+
<id>rabbit-milestones</id>
105+
<name>Rabbit Milestones</name>
106+
<url>https://dl.bintray.com/rabbitmq/maven-milestones</url>
107+
<snapshots>
108+
<enabled>false</enabled>
109+
</snapshots>
110+
</repository>
111+
</repositories>
112+
<pluginRepositories>
113+
<pluginRepository>
114+
<id>spring-milestones</id>
115+
<name>Spring Milestones</name>
116+
<url>https://repo.spring.io/snapshot</url>
117+
<snapshots>
118+
<enabled>false</enabled>
119+
</snapshots>
120+
</pluginRepository>
121+
</pluginRepositories>
122+
</profile>
123+
<profile>
124+
<id>release</id>
125+
<repositories>
126+
<repository>
127+
<id>spring-ext</id>
128+
<url>https://repo.spring.io/ext-release-local/</url>
129+
<releases>
130+
<enabled>true</enabled>
131+
</releases>
132+
<snapshots>
133+
<enabled>false</enabled>
134+
</snapshots>
135+
</repository>
136+
<repository>
137+
<id>jboss</id>
138+
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
139+
<releases>
140+
<enabled>true</enabled>
141+
</releases>
142+
<snapshots>
143+
<enabled>false</enabled>
144+
</snapshots>
145+
</repository>
146+
</repositories>
147+
</profile>
148+
</profiles>
149+
<activeProfiles>
150+
<activeProfile>@profile@</activeProfile>
151+
</activeProfiles>
152+
<servers>
153+
<server>
154+
<id>central</id>
155+
<configuration>
156+
<timeout>120000</timeout>
157+
</configuration>
158+
</server>
159+
</servers>
160+
</settings>

CODE_OF_CONDUCT.adoc

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
= Contributor Code of Conduct
2+
3+
As contributors and maintainers of this project, and in the interest of fostering an open
4+
and welcoming community, we pledge to respect all people who contribute through reporting
5+
issues, posting feature requests, updating documentation, submitting pull requests or
6+
patches, and other activities.
7+
8+
We are committed to making participation in this project a harassment-free experience for
9+
everyone, regardless of level of experience, gender, gender identity and expression,
10+
sexual orientation, disability, personal appearance, body size, race, ethnicity, age,
11+
religion, or nationality.
12+
13+
Examples of unacceptable behavior by participants include:
14+
15+
* The use of sexualized language or imagery
16+
* Personal attacks
17+
* Trolling or insulting/derogatory comments
18+
* Public or private harassment
19+
* Publishing other's private information, such as physical or electronic addresses,
20+
without explicit permission
21+
* Other unethical or unprofessional conduct
22+
23+
Project maintainers have the right and responsibility to remove, edit, or reject comments,
24+
commits, code, wiki edits, issues, and other contributions that are not aligned to this
25+
Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors
26+
that they deem inappropriate, threatening, offensive, or harmful.
27+
28+
By adopting this Code of Conduct, project maintainers commit themselves to fairly and
29+
consistently applying these principles to every aspect of managing this project. Project
30+
maintainers who do not follow or enforce the Code of Conduct may be permanently removed
31+
from the project team.
32+
33+
This Code of Conduct applies both within project spaces and in public spaces when an
34+
individual is representing the project or its community.
35+
36+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by
37+
contacting a project maintainer at [email protected] . All complaints will
38+
be reviewed and investigated and will result in a response that is deemed necessary and
39+
appropriate to the circumstances. Maintainers are obligated to maintain confidentiality
40+
with regard to the reporter of an incident.
41+
42+
This Code of Conduct is adapted from the
43+
https://contributor-covenant.org[Contributor Covenant], version 1.3.0, available at
44+
https://contributor-covenant.org/version/1/3/0/[contributor-covenant.org/version/1/3/0/]

0 commit comments

Comments
 (0)