Skip to content

Commit 2f7cf78

Browse files
Applied checkstyle
1 parent 37df4c4 commit 2f7cf78

File tree

380 files changed

+7691
-5201
lines changed

Some content is hidden

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

380 files changed

+7691
-5201
lines changed

.editorconfig

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
root=true
1+
root = true
22

33
[*.java]
44
indent_style = tab
@@ -13,4 +13,12 @@ continuation_indent_size = 8
1313
[*.xml]
1414
indent_style = tab
1515
indent_size = 4
16-
continuation_indent_size = 8
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

.mvn/jvm.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-Xmx1024m -XX:CICompilerCount=1 -XX:TieredStopAtLevel=1 -Djava.security.egd=file:/dev/./urandom
1+
-Xmx1024m -XX:CICompilerCount=1 -XX:TieredStopAtLevel=1 -Djava.security.egd=file:/dev/./urandom

.mvn/wrapper/maven-wrapper.jar

1 Byte
Binary file not shown.

.mvn/wrapper/maven-wrapper.properties

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
17-
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.0/apache-maven-3.5.0-bin.zip
16+
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.5.0/apache-maven-3.5.0-bin.zip

.settings.xml

+74-70
Original file line numberDiff line numberDiff line change
@@ -16,74 +16,78 @@
1616
-->
1717

1818
<settings>
19-
<servers>
20-
<server>
21-
<id>repo.spring.io</id>
22-
<username>${env.CI_DEPLOY_USERNAME}</username>
23-
<password>${env.CI_DEPLOY_PASSWORD}</password>
24-
</server>
25-
</servers>
26-
<profiles>
27-
<profile>
28-
<!--
29-
N.B. this profile is only here to support users and IDEs that do not use Maven 3.3.
30-
It isn't needed on the command line if you use the wrapper script (mvnw) or if you use
31-
a native Maven with the right version. Eclipse users should points their Maven tooling to
32-
this settings file, or copy the profile into their ~/.m2/settings.xml.
33-
-->
34-
<id>spring</id>
35-
<activation><activeByDefault>true</activeByDefault></activation>
36-
<repositories>
37-
<repository>
38-
<id>spring-snapshots</id>
39-
<name>Spring Snapshots</name>
40-
<url>http://repo.spring.io/libs-snapshot-local</url>
41-
<snapshots>
42-
<enabled>true</enabled>
43-
</snapshots>
44-
</repository>
45-
<repository>
46-
<id>spring-milestones</id>
47-
<name>Spring Milestones</name>
48-
<url>http://repo.spring.io/libs-milestone-local</url>
49-
<snapshots>
50-
<enabled>false</enabled>
51-
</snapshots>
52-
</repository>
53-
<repository>
54-
<id>spring-releases</id>
55-
<name>Spring Releases</name>
56-
<url>http://repo.spring.io/release</url>
57-
<snapshots>
58-
<enabled>false</enabled>
59-
</snapshots>
60-
</repository>
61-
</repositories>
62-
<pluginRepositories>
63-
<pluginRepository>
64-
<id>spring-snapshots</id>
65-
<name>Spring Snapshots</name>
66-
<url>http://repo.spring.io/libs-snapshot-local</url>
67-
<snapshots>
68-
<enabled>true</enabled>
69-
</snapshots>
70-
</pluginRepository>
71-
<pluginRepository>
72-
<id>spring-milestones</id>
73-
<name>Spring Milestones</name>
74-
<url>http://repo.spring.io/libs-milestone-local</url>
75-
<snapshots>
76-
<enabled>false</enabled>
77-
</snapshots>
78-
</pluginRepository>
79-
</pluginRepositories>
80-
</profile>
81-
<profile>
82-
<!--
83-
Turns on jdk8 for tests
84-
-->
85-
<id>ide</id>
86-
<activation><activeByDefault>true</activeByDefault></activation>
87-
</profile>
88-
</profiles>
19+
<servers>
20+
<server>
21+
<id>repo.spring.io</id>
22+
<username>${env.CI_DEPLOY_USERNAME}</username>
23+
<password>${env.CI_DEPLOY_PASSWORD}</password>
24+
</server>
25+
</servers>
26+
<profiles>
27+
<profile>
28+
<!--
29+
N.B. this profile is only here to support users and IDEs that do not use Maven 3.3.
30+
It isn't needed on the command line if you use the wrapper script (mvnw) or if you use
31+
a native Maven with the right version. Eclipse users should points their Maven tooling to
32+
this settings file, or copy the profile into their ~/.m2/settings.xml.
33+
-->
34+
<id>spring</id>
35+
<activation>
36+
<activeByDefault>true</activeByDefault>
37+
</activation>
38+
<repositories>
39+
<repository>
40+
<id>spring-snapshots</id>
41+
<name>Spring Snapshots</name>
42+
<url>http://repo.spring.io/libs-snapshot-local</url>
43+
<snapshots>
44+
<enabled>true</enabled>
45+
</snapshots>
46+
</repository>
47+
<repository>
48+
<id>spring-milestones</id>
49+
<name>Spring Milestones</name>
50+
<url>http://repo.spring.io/libs-milestone-local</url>
51+
<snapshots>
52+
<enabled>false</enabled>
53+
</snapshots>
54+
</repository>
55+
<repository>
56+
<id>spring-releases</id>
57+
<name>Spring Releases</name>
58+
<url>http://repo.spring.io/release</url>
59+
<snapshots>
60+
<enabled>false</enabled>
61+
</snapshots>
62+
</repository>
63+
</repositories>
64+
<pluginRepositories>
65+
<pluginRepository>
66+
<id>spring-snapshots</id>
67+
<name>Spring Snapshots</name>
68+
<url>http://repo.spring.io/libs-snapshot-local</url>
69+
<snapshots>
70+
<enabled>true</enabled>
71+
</snapshots>
72+
</pluginRepository>
73+
<pluginRepository>
74+
<id>spring-milestones</id>
75+
<name>Spring Milestones</name>
76+
<url>http://repo.spring.io/libs-milestone-local</url>
77+
<snapshots>
78+
<enabled>false</enabled>
79+
</snapshots>
80+
</pluginRepository>
81+
</pluginRepositories>
82+
</profile>
83+
<profile>
84+
<!--
85+
Turns on jdk8 for tests
86+
-->
87+
<id>ide</id>
88+
<activation>
89+
<activeByDefault>true</activeByDefault>
90+
</activation>
91+
</profile>
92+
</profiles>
8993
</settings>

.springformat

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

0 commit comments

Comments
 (0)