Skip to content

Commit

Permalink
Implement RFC 0050: Partial Rename Buildpacks
Browse files Browse the repository at this point in the history
    Partially renames 'Paketo <tech> Buildpack' to 'Paketo Buildpack for <tech>' where present in README or Go code.

    Implements RFC 0050, paketo-buildpacks/rfcs#233, for this project.

    This is done for a subset of buildpacks:

    - spring-boot
    - appdynamics
    - datadog
    - jprofiler
    - google-stackdriver
    - adoptium
    - sbt
    - maven
    - gradle
    - syft
    - executable-jar

    This should unblock the builders until the rest of the buildpacks can be released under the new name.

Signed-off-by: Daniel Mikusa <[email protected]>
  • Loading branch information
Daniel Mikusa committed Sep 1, 2022
1 parent 999bd64 commit 337fee2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Empty file added smoke/XXAP9YKX
Empty file.
6 changes: 3 additions & 3 deletions smoke/java_native_image_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ func testJavaNativeImage(t *testing.T, context spec.G, it spec.S) {
Eventually(container).Should(BeAvailable())

Expect(logs).To(ContainLines(ContainSubstring("Paketo BellSoft Liberica Buildpack")))
Expect(logs).To(ContainLines(ContainSubstring("Paketo Maven Buildpack")))
Expect(logs).To(ContainLines(ContainSubstring("Paketo Executable JAR Buildpack")))
Expect(logs).To(ContainLines(ContainSubstring("Paketo Spring Boot Buildpack")))
Expect(logs).To(ContainLines(ContainSubstring("Paketo Buildpack for Maven")))
Expect(logs).To(ContainLines(ContainSubstring("Paketo Buildpack for Executable JAR")))
Expect(logs).To(ContainLines(ContainSubstring("Paketo Buildpack for Spring Boot")))
Expect(logs).To(ContainLines(ContainSubstring("Paketo Native Image Buildpack")))
})
})
Expand Down
6 changes: 3 additions & 3 deletions smoke/java_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ func testJava(t *testing.T, context spec.G, it spec.S) {
Eventually(container).Should(BeAvailable())

Expect(logs).To(ContainLines(ContainSubstring("Paketo BellSoft Liberica Buildpack")))
Expect(logs).To(ContainLines(ContainSubstring("Paketo Maven Buildpack")))
Expect(logs).To(ContainLines(ContainSubstring("Paketo Executable JAR Buildpack")))
Expect(logs).To(ContainLines(ContainSubstring("Paketo Spring Boot Buildpack")))
Expect(logs).To(ContainLines(ContainSubstring("Paketo Buildpack for Maven")))
Expect(logs).To(ContainLines(ContainSubstring("Paketo Buildpack for Executable JAR")))
Expect(logs).To(ContainLines(ContainSubstring("Paketo Buildpack for Spring Boot")))
})
})
}

0 comments on commit 337fee2

Please sign in to comment.