Skip to content

Commit ae31410

Browse files
Applied checkstyle and turned it on by default
1 parent e024f6f commit ae31410

File tree

313 files changed

+8700
-4458
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

313 files changed

+8700
-4458
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ jobs:
3737
destination: artifacts
3838
- store_test_results:
3939
path: ~/junit/
40-
destination: testartifacts
40+
destination: testartifacts

.editorconfig

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = tab
8+
indent_size = 4
9+
end_of_line = lf
10+
insert_final_newline = true
11+
12+
[*.yml]
13+
indent_style = space
14+
indent_size = 2

.settings.xml

+65-63
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,68 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<settings>
3-
<servers>
4-
<server>
5-
<id>repo.spring.io</id>
6-
<username>${env.CI_DEPLOY_USERNAME}</username>
7-
<password>${env.CI_DEPLOY_PASSWORD}</password>
8-
</server>
9-
</servers>
10-
<profiles>
11-
<profile>
12-
<!--
13-
N.B. this profile is only here to support users and IDEs that do not use Maven 3.3.
14-
It isn't needed on the command line if you use the wrapper script (mvnw) or if you use
15-
a native Maven with the right version. Eclipse users should points their Maven tooling to
16-
this settings file, or copy the profile into their ~/.m2/settings.xml.
17-
-->
18-
<id>spring</id>
19-
<activation><activeByDefault>true</activeByDefault></activation>
20-
<repositories>
21-
<repository>
22-
<id>spring-snapshots</id>
23-
<name>Spring Snapshots</name>
24-
<url>http://repo.spring.io/libs-snapshot-local</url>
25-
<snapshots>
26-
<enabled>true</enabled>
27-
</snapshots>
28-
</repository>
29-
<repository>
30-
<id>spring-milestones</id>
31-
<name>Spring Milestones</name>
32-
<url>http://repo.spring.io/libs-milestone-local</url>
33-
<snapshots>
34-
<enabled>false</enabled>
35-
</snapshots>
36-
</repository>
37-
<repository>
38-
<id>spring-releases</id>
39-
<name>Spring Releases</name>
40-
<url>http://repo.spring.io/release</url>
41-
<snapshots>
42-
<enabled>false</enabled>
43-
</snapshots>
44-
</repository>
45-
</repositories>
46-
<pluginRepositories>
47-
<pluginRepository>
48-
<id>spring-snapshots</id>
49-
<name>Spring Snapshots</name>
50-
<url>http://repo.spring.io/libs-snapshot-local</url>
51-
<snapshots>
52-
<enabled>true</enabled>
53-
</snapshots>
54-
</pluginRepository>
55-
<pluginRepository>
56-
<id>spring-milestones</id>
57-
<name>Spring Milestones</name>
58-
<url>http://repo.spring.io/libs-milestone-local</url>
59-
<snapshots>
60-
<enabled>false</enabled>
61-
</snapshots>
62-
</pluginRepository>
63-
</pluginRepositories>
64-
</profile>
65-
</profiles>
3+
<servers>
4+
<server>
5+
<id>repo.spring.io</id>
6+
<username>${env.CI_DEPLOY_USERNAME}</username>
7+
<password>${env.CI_DEPLOY_PASSWORD}</password>
8+
</server>
9+
</servers>
10+
<profiles>
11+
<profile>
12+
<!--
13+
N.B. this profile is only here to support users and IDEs that do not use Maven 3.3.
14+
It isn't needed on the command line if you use the wrapper script (mvnw) or if you use
15+
a native Maven with the right version. Eclipse users should points their Maven tooling to
16+
this settings file, or copy the profile into their ~/.m2/settings.xml.
17+
-->
18+
<id>spring</id>
19+
<activation>
20+
<activeByDefault>true</activeByDefault>
21+
</activation>
22+
<repositories>
23+
<repository>
24+
<id>spring-snapshots</id>
25+
<name>Spring Snapshots</name>
26+
<url>http://repo.spring.io/libs-snapshot-local</url>
27+
<snapshots>
28+
<enabled>true</enabled>
29+
</snapshots>
30+
</repository>
31+
<repository>
32+
<id>spring-milestones</id>
33+
<name>Spring Milestones</name>
34+
<url>http://repo.spring.io/libs-milestone-local</url>
35+
<snapshots>
36+
<enabled>false</enabled>
37+
</snapshots>
38+
</repository>
39+
<repository>
40+
<id>spring-releases</id>
41+
<name>Spring Releases</name>
42+
<url>http://repo.spring.io/release</url>
43+
<snapshots>
44+
<enabled>false</enabled>
45+
</snapshots>
46+
</repository>
47+
</repositories>
48+
<pluginRepositories>
49+
<pluginRepository>
50+
<id>spring-snapshots</id>
51+
<name>Spring Snapshots</name>
52+
<url>http://repo.spring.io/libs-snapshot-local</url>
53+
<snapshots>
54+
<enabled>true</enabled>
55+
</snapshots>
56+
</pluginRepository>
57+
<pluginRepository>
58+
<id>spring-milestones</id>
59+
<name>Spring Milestones</name>
60+
<url>http://repo.spring.io/libs-milestone-local</url>
61+
<snapshots>
62+
<enabled>false</enabled>
63+
</snapshots>
64+
</pluginRepository>
65+
</pluginRepositories>
66+
</profile>
67+
</profiles>
6668
</settings>

docs/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xmlns="http://maven.apache.org/POM/4.0.0"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.springframework.cloud</groupId>

0 commit comments

Comments
 (0)