Skip to content

Commit 6460694

Browse files
WIP
0 parents  commit 6460694

File tree

273 files changed

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

273 files changed

+24768
-0
lines changed

.editorconfig

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
root = true
2+
3+
[*.java]
4+
indent_style = tab
5+
indent_size = 4
6+
continuation_indent_size = 8
7+
8+
[*.groovy]
9+
indent_style = tab
10+
indent_size = 4
11+
continuation_indent_size = 8
12+
13+
[*.xml]
14+
indent_style = tab
15+
indent_size = 4
16+
continuation_indent_size = 8
17+
18+
[*.yml]
19+
indent_style = space
20+
indent_size = 2
21+
22+
[*.yaml]
23+
indent_style = space
24+
indent_size = 2

.github/CONTRIBUTING.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
2+
# Contributing
3+
4+
Spring Cloud is released under the non-restrictive Apache 2.0 license,
5+
and follows a very standard Github development process, using Github
6+
tracker for issues and merging pull requests into master. If you want
7+
to contribute even something trivial please do not hesitate, but
8+
follow the guidelines below.
9+
10+
## Sign the Contributor License Agreement
11+
Before we accept a non-trivial patch or pull request we will need you to sign the
12+
[Contributor License Agreement](https://cla.pivotal.io/sign/spring).
13+
Signing the contributor's agreement does not grant anyone commit rights to the main
14+
repository, but it does mean that we can accept your contributions, and you will get an
15+
author credit if we do. Active contributors might be asked to join the core team, and
16+
given the ability to merge pull requests.
17+
18+
## Code of Conduct
19+
This project adheres to the Contributor Covenant [code of
20+
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
21+
unacceptable behavior to [email protected].
22+
23+
## Code Conventions and Housekeeping
24+
None of these is essential for a pull request, but they will all help. They can also be
25+
added after the original pull request but before a merge.
26+
27+
* Use the Spring Framework code format conventions. If you use Eclipse
28+
you can import formatter settings using the
29+
`eclipse-code-formatter.xml` file from the
30+
[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
31+
[Eclipse Code Formatter Plugin](https://plugins.jetbrains.com/plugin/6546) to import the same file.
32+
* Make sure all new `.java` files to have a simple Javadoc class comment with at least an
33+
`@author` tag identifying you, and preferably at least a paragraph on what the class is
34+
for.
35+
* Add the ASF license header comment to all new `.java` files (copy from existing files
36+
in the project)
37+
* Add yourself as an `@author` to the .java files that you modify substantially (more
38+
than cosmetic changes).
39+
* Add some Javadocs and, if you change the namespace, some XSD doc elements.
40+
* A few unit tests would help a lot as well -- someone has to do it.
41+
* If no-one else is using your branch, please rebase it against the current master (or
42+
other target branch in the main project).
43+
* When writing a commit message please follow [these conventions](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html),
44+
if you are fixing an existing issue please add `Fixes gh-XXXX` at the end of the commit
45+
message (where XXXX is the issue number).

.github/ISSUE_TEMPLATE.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!--
2+
Thanks for raising a Spring Cloud issue. What sort of issue are you raising?
3+
4+
Question
5+
6+
Please ask questions about how to use something, or to understand why something isn't
7+
working as you expect it to, on Stack Overflow using the spring-cloud tag.
8+
9+
Bug report
10+
11+
Please provide details of the problem, including the version of Spring Cloud that you
12+
are using. If possible, please provide a test case or sample application that reproduces
13+
the problem. This makes it much easier for us to diagnose the problem and to verify that
14+
we have fixed it.
15+
16+
Enhancement
17+
18+
Please start by describing the problem that you are trying to solve. There may already
19+
be a solution, or there may be a way to solve it that you hadn't considered.
20+
-->
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
Please provide details of the problem, including the version of Spring Cloud that you
12+
are using.
13+
14+
**Sample**
15+
If possible, please provide a test case or sample application that reproduces
16+
the problem. This makes it much easier for us to diagnose the problem and to verify that
17+
we have fixed it.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/workflows/maven.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This workflow will build a Java project with Maven
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+
name: Build
5+
6+
on:
7+
push:
8+
branches: [ master ]
9+
pull_request:
10+
branches: [ master ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up JDK 1.8
20+
uses: actions/setup-java@v1
21+
with:
22+
java-version: 1.8
23+
- name: Cache local Maven repository
24+
uses: actions/cache@v2
25+
with:
26+
path: ~/.m2/repository
27+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
28+
restore-keys: |
29+
${{ runner.os }}-maven-
30+
- name: Build with Maven
31+
run: ./mvnw clean install -B -U

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
*~
2+
#*
3+
*#
4+
.#*
5+
.classpath
6+
.project
7+
.settings/
8+
.springBeans
9+
.apt_generated/
10+
target/
11+
_site/
12+
.idea
13+
*.iml
14+
*.swp
15+
.factorypath
16+
*.logtjmeter
17+
.checkstyle
18+
*.log
19+
.DS_Store
20+
/spring-cloud-sleuth-core/nb-configuration.xml
21+
/spring-cloud-sleuth-core/nbactions.xml
22+
jmh-result.csv
23+
pom.xml.versionsBackup
24+
.vscode
25+
.sts4-cache
26+
_includes
27+
.sdkmanrc
28+
results/jmh/*.csv

.mvn/jvm.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Xmx1024m -XX:CICompilerCount=1 -XX:TieredStopAtLevel=1 -Djava.security.egd=file:/dev/./urandom

.mvn/maven.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-DaltSnapshotDeploymentRepository=repo.spring.io::default::https://repo.spring.io/libs-snapshot-local -P spring

.mvn/wrapper/maven-wrapper.jar

48.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)