Skip to content

Commit

Permalink
Apply plugins consistently in Gradle documentation examples
Browse files Browse the repository at this point in the history
Closes gh-34038
  • Loading branch information
wilkinsona committed Feb 27, 2023
1 parent 74946dd commit 81882ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// tag::apply[]
plugins {
id 'java'
id 'org.springframework.boot' version '{gradle-project-version}'
}

// tag::apply[]
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
// end::apply[]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
war
java
id("org.springframework.boot") version "{gradle-project-version}"
}

Expand Down

0 comments on commit 81882ec

Please sign in to comment.