Skip to content

Commit

Permalink
align go module name and the current version
Browse files Browse the repository at this point in the history
  • Loading branch information
pbusko committed May 22, 2024
1 parent e1e8e30 commit 268edc8
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion cmd/helper/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"github.com/paketo-buildpacks/libpak/bard"
"github.com/paketo-buildpacks/libpak/sherpa"

"github.com/paketo-buildpacks/apache-tomcat/v7/helper"
"github.com/paketo-buildpacks/apache-tomcat/v8/helper"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/main/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"github.com/paketo-buildpacks/libpak"
"github.com/paketo-buildpacks/libpak/bard"

"github.com/paketo-buildpacks/apache-tomcat/v7/tomcat"
"github.com/paketo-buildpacks/apache-tomcat/v8/tomcat"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/paketo-buildpacks/apache-tomcat/v7
module github.com/paketo-buildpacks/apache-tomcat/v8

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion helper/access_logging_support_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
. "github.com/onsi/gomega"
"github.com/sclevine/spec"

"github.com/paketo-buildpacks/apache-tomcat/v7/helper"
"github.com/paketo-buildpacks/apache-tomcat/v8/helper"
)

func testAccessLoggingSupport(t *testing.T, context spec.G, it spec.S) {
Expand Down
2 changes: 1 addition & 1 deletion tomcat/base_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"github.com/paketo-buildpacks/libpak"
"github.com/sclevine/spec"

"github.com/paketo-buildpacks/apache-tomcat/v7/tomcat"
"github.com/paketo-buildpacks/apache-tomcat/v8/tomcat"
)

func testBase(t *testing.T, context spec.G, it spec.S) {
Expand Down
2 changes: 1 addition & 1 deletion tomcat/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
"github.com/heroku/color"

"github.com/buildpacks/libcnb"
"github.com/paketo-buildpacks/apache-tomcat/v7/internal/util"
"github.com/paketo-buildpacks/apache-tomcat/v8/internal/util"
"github.com/paketo-buildpacks/libjvm"
"github.com/paketo-buildpacks/libpak"
"github.com/paketo-buildpacks/libpak/bard"
Expand Down
2 changes: 1 addition & 1 deletion tomcat/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"github.com/paketo-buildpacks/libpak"
"github.com/sclevine/spec"

"github.com/paketo-buildpacks/apache-tomcat/v7/tomcat"
"github.com/paketo-buildpacks/apache-tomcat/v8/tomcat"
)

func testBuild(t *testing.T, context spec.G, it spec.S) {
Expand Down
2 changes: 1 addition & 1 deletion tomcat/detect.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"path/filepath"

"github.com/buildpacks/libcnb"
"github.com/paketo-buildpacks/apache-tomcat/v7/internal/util"
"github.com/paketo-buildpacks/apache-tomcat/v8/internal/util"
"github.com/paketo-buildpacks/libjvm"
"github.com/paketo-buildpacks/libpak"
"github.com/paketo-buildpacks/libpak/bard"
Expand Down
2 changes: 1 addition & 1 deletion tomcat/detect_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
. "github.com/onsi/gomega"
"github.com/sclevine/spec"

"github.com/paketo-buildpacks/apache-tomcat/v7/tomcat"
"github.com/paketo-buildpacks/apache-tomcat/v8/tomcat"
)

func testDetect(t *testing.T, context spec.G, it spec.S) {
Expand Down
2 changes: 1 addition & 1 deletion tomcat/home_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"github.com/paketo-buildpacks/libpak"
"github.com/sclevine/spec"

"github.com/paketo-buildpacks/apache-tomcat/v7/tomcat"
"github.com/paketo-buildpacks/apache-tomcat/v8/tomcat"
)

func testHome(t *testing.T, context spec.G, it spec.S) {
Expand Down

0 comments on commit 268edc8

Please sign in to comment.