-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6460694
Showing
273 changed files
with
24,768 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
root = true | ||
|
||
[*.java] | ||
indent_style = tab | ||
indent_size = 4 | ||
continuation_indent_size = 8 | ||
|
||
[*.groovy] | ||
indent_style = tab | ||
indent_size = 4 | ||
continuation_indent_size = 8 | ||
|
||
[*.xml] | ||
indent_style = tab | ||
indent_size = 4 | ||
continuation_indent_size = 8 | ||
|
||
[*.yml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.yaml] | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
|
||
# Contributing | ||
|
||
Spring Cloud is released under the non-restrictive Apache 2.0 license, | ||
and follows a very standard Github development process, using Github | ||
tracker for issues and merging pull requests into master. If you want | ||
to contribute even something trivial please do not hesitate, but | ||
follow the guidelines below. | ||
|
||
## Sign the Contributor License Agreement | ||
Before we accept a non-trivial patch or pull request we will need you to sign the | ||
[Contributor License Agreement](https://cla.pivotal.io/sign/spring). | ||
Signing the contributor's agreement does not grant anyone commit rights to the main | ||
repository, but it does mean that we can accept your contributions, and you will get an | ||
author credit if we do. Active contributors might be asked to join the core team, and | ||
given the ability to merge pull requests. | ||
|
||
## Code of Conduct | ||
This project adheres to the Contributor Covenant [code of | ||
conduct](https://github.com/spring-cloud/spring-cloud-build/blob/master/docs/src/main/asciidoc/code-of-conduct.adoc). By participating, you are expected to uphold this code. Please report | ||
unacceptable behavior to [email protected]. | ||
|
||
## Code Conventions and Housekeeping | ||
None of these is essential for a pull request, but they will all help. They can also be | ||
added after the original pull request but before a merge. | ||
|
||
* Use the Spring Framework code format conventions. If you use Eclipse | ||
you can import formatter settings using the | ||
`eclipse-code-formatter.xml` file from the | ||
[Spring Cloud Build](https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/spring-cloud-dependencies-parent/eclipse-code-formatter.xml) project. If using IntelliJ, you can use the | ||
[Eclipse Code Formatter Plugin](https://plugins.jetbrains.com/plugin/6546) to import the same file. | ||
* Make sure all new `.java` files to have a simple Javadoc class comment with at least an | ||
`@author` tag identifying you, and preferably at least a paragraph on what the class is | ||
for. | ||
* Add the ASF license header comment to all new `.java` files (copy from existing files | ||
in the project) | ||
* Add yourself as an `@author` to the .java files that you modify substantially (more | ||
than cosmetic changes). | ||
* Add some Javadocs and, if you change the namespace, some XSD doc elements. | ||
* A few unit tests would help a lot as well -- someone has to do it. | ||
* If no-one else is using your branch, please rebase it against the current master (or | ||
other target branch in the main project). | ||
* When writing a commit message please follow [these conventions](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html), | ||
if you are fixing an existing issue please add `Fixes gh-XXXX` at the end of the commit | ||
message (where XXXX is the issue number). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!-- | ||
Thanks for raising a Spring Cloud issue. What sort of issue are you raising? | ||
Question | ||
Please ask questions about how to use something, or to understand why something isn't | ||
working as you expect it to, on Stack Overflow using the spring-cloud tag. | ||
Bug report | ||
Please provide details of the problem, including the version of Spring Cloud that you | ||
are using. If possible, please provide a test case or sample application that reproduces | ||
the problem. This makes it much easier for us to diagnose the problem and to verify that | ||
we have fixed it. | ||
Enhancement | ||
Please start by describing the problem that you are trying to solve. There may already | ||
be a solution, or there may be a way to solve it that you hadn't considered. | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
Please provide details of the problem, including the version of Spring Cloud that you | ||
are using. | ||
|
||
**Sample** | ||
If possible, please provide a test case or sample application that reproduces | ||
the problem. This makes it much easier for us to diagnose the problem and to verify that | ||
we have fixed it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# This workflow will build a Java project with Maven | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | ||
|
||
name: Build | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
- name: Cache local Maven repository | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.m2/repository | ||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- name: Build with Maven | ||
run: ./mvnw clean install -B -U |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
*~ | ||
#* | ||
*# | ||
.#* | ||
.classpath | ||
.project | ||
.settings/ | ||
.springBeans | ||
.apt_generated/ | ||
target/ | ||
_site/ | ||
.idea | ||
*.iml | ||
*.swp | ||
.factorypath | ||
*.logtjmeter | ||
.checkstyle | ||
*.log | ||
.DS_Store | ||
/spring-cloud-sleuth-core/nb-configuration.xml | ||
/spring-cloud-sleuth-core/nbactions.xml | ||
jmh-result.csv | ||
pom.xml.versionsBackup | ||
.vscode | ||
.sts4-cache | ||
_includes | ||
.sdkmanrc | ||
results/jmh/*.csv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-Xmx1024m -XX:CICompilerCount=1 -XX:TieredStopAtLevel=1 -Djava.security.egd=file:/dev/./urandom |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
-DaltSnapshotDeploymentRepository=repo.spring.io::default::https://repo.spring.io/libs-snapshot-local -P spring |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# | ||
# Copyright 2013-2018 the original author or authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.0/apache-maven-3.5.0-bin.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
~ Copyright 2013-2018 the original author or authors. | ||
~ | ||
~ Licensed under the Apache License, Version 2.0 (the "License"); | ||
~ you may not use this file except in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ https://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, | ||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
~ See the License for the specific language governing permissions and | ||
~ limitations under the License. | ||
--> | ||
|
||
<settings> | ||
<servers> | ||
<server> | ||
<id>repo.spring.io</id> | ||
<username>${env.CI_DEPLOY_USERNAME}</username> | ||
<password>${env.CI_DEPLOY_PASSWORD}</password> | ||
</server> | ||
</servers> | ||
<profiles> | ||
<profile> | ||
<!-- | ||
N.B. this profile is only here to support users and IDEs that do not use Maven 3.3. | ||
It isn't needed on the command line if you use the wrapper script (mvnw) or if you use | ||
a native Maven with the right version. Eclipse users should points their Maven tooling to | ||
this settings file, or copy the profile into their ~/.m2/settings.xml. | ||
--> | ||
<id>spring</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<repositories> | ||
<repository> | ||
<id>spring-snapshots</id> | ||
<name>Spring Snapshots</name> | ||
<url>https://repo.spring.io/snapshot</url> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</repository> | ||
<repository> | ||
<id>spring-milestones</id> | ||
<name>Spring Milestones</name> | ||
<url>https://repo.spring.io/milestone</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
<repository> | ||
<id>spring-releases</id> | ||
<name>Spring Releases</name> | ||
<url>https://repo.spring.io/release</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
<pluginRepositories> | ||
<pluginRepository> | ||
<id>spring-snapshots</id> | ||
<name>Spring Snapshots</name> | ||
<url>https://repo.spring.io/snapshot</url> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</pluginRepository> | ||
<pluginRepository> | ||
<id>spring-milestones</id> | ||
<name>Spring Milestones</name> | ||
<url>https://repo.spring.io/milestone</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
</profile> | ||
<profile> | ||
<!-- | ||
Turns on jdk8 for tests | ||
--> | ||
<id>ide</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
</profile> | ||
</profiles> | ||
</settings> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
Oops, something went wrong.