Skip to content

Commit e61626b

Browse files
committed
Bumping versions
1 parent 1b92536 commit e61626b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -316,10 +316,10 @@ To have Intellij work with Checkstyle, you have to install the `Checkstyle` plug
316316

317317
image::https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/{spring-cloud-build-branch}/docs/src/main/asciidoc/images/intellij-checkstyle.png[Checkstyle]
318318

319-
Go to `File` -> `Settings` -> `Other settings` -> `Checkstyle`. There click on the `+` icon in the `Configuration file` section. There, you'll have to define where the checkstyle rules should be picked from. In the image above, we've picked the rules from the cloned Spring Cloud Build repository. However, you can point to the Spring Cloud Build's GitHub repository (e.g. for the `checkstyle.xml` : `https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/4.0.x/spring-cloud-build-tools/src/main/resources/checkstyle.xml`). We need to provide the following variables:
319+
Go to `File` -> `Settings` -> `Other settings` -> `Checkstyle`. There click on the `+` icon in the `Configuration file` section. There, you'll have to define where the checkstyle rules should be picked from. In the image above, we've picked the rules from the cloned Spring Cloud Build repository. However, you can point to the Spring Cloud Build's GitHub repository (e.g. for the `checkstyle.xml` : `https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/spring-cloud-build-tools/src/main/resources/checkstyle.xml`). We need to provide the following variables:
320320

321-
- `checkstyle.header.file` - please point it to the Spring Cloud Build's, `spring-cloud-build-tools/src/main/resources/checkstyle-header.txt` file either in your cloned repo or via the `https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/4.0.x/spring-cloud-build-tools/src/main/resources/checkstyle-header.txt` URL.
322-
- `checkstyle.suppressions.file` - default suppressions. Please point it to the Spring Cloud Build's, `spring-cloud-build-tools/src/checkstyle/checkstyle-suppressions.xml` file either in your cloned repo or via the `https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/4.0.x/spring-cloud-build-tools/src/checkstyle/checkstyle-suppressions.xml` URL.
321+
- `checkstyle.header.file` - please point it to the Spring Cloud Build's, `spring-cloud-build-tools/src/main/resources/checkstyle-header.txt` file either in your cloned repo or via the `https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/spring-cloud-build-tools/src/main/resources/checkstyle-header.txt` URL.
322+
- `checkstyle.suppressions.file` - default suppressions. Please point it to the Spring Cloud Build's, `spring-cloud-build-tools/src/checkstyle/checkstyle-suppressions.xml` file either in your cloned repo or via the `https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/spring-cloud-build-tools/src/checkstyle/checkstyle-suppressions.xml` URL.
323323
- `checkstyle.additional.suppressions.file` - this variable corresponds to suppressions in your local project. E.g. you're working on `spring-cloud-contract`. Then point to the `project-root/src/checkstyle/checkstyle-suppressions.xml` folder. Example for `spring-cloud-contract` would be: `/home/username/spring-cloud-contract/src/checkstyle/checkstyle-suppressions.xml`.
324324

325325
IMPORTANT: Remember to set the `Scan Scope` to `All sources` since we apply checkstyle rules for production and test sources.

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.cloud</groupId>
1616
<artifactId>spring-cloud-build</artifactId>
17-
<version>4.0.4-SNAPSHOT</version>
17+
<version>4.0.6-SNAPSHOT</version>
1818
<relativePath/> <!-- lookup parent from repository -->
1919
</parent>
2020

@@ -30,9 +30,9 @@
3030
</modules>
3131

3232
<properties>
33-
<spring-cloud-commons.version>4.0.4-SNAPSHOT</spring-cloud-commons.version>
34-
<spring-cloud-stream.version>4.0.4-SNAPSHOT</spring-cloud-stream.version>
35-
<spring-cloud-function.version>4.0.5-SNAPSHOT</spring-cloud-function.version>
33+
<spring-cloud-commons.version>4.0.5-SNAPSHOT</spring-cloud-commons.version>
34+
<spring-cloud-stream.version>4.0.5-SNAPSHOT</spring-cloud-stream.version>
35+
<spring-cloud-function.version>4.0.6-SNAPSHOT</spring-cloud-function.version>
3636
<bintray.package>bus</bintray.package>
3737
</properties>
3838

spring-cloud-bus-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>spring-cloud-dependencies-parent</artifactId>
88
<groupId>org.springframework.cloud</groupId>
9-
<version>4.0.4-SNAPSHOT</version>
9+
<version>4.0.6-SNAPSHOT</version>
1010
<relativePath/>
1111
</parent>
1212
<artifactId>spring-cloud-bus-dependencies</artifactId>

0 commit comments

Comments
 (0)