Skip to content

Commit 5ddb0d5

Browse files
committed
remove packer dependency
1 parent d6e2331 commit 5ddb0d5

File tree

5 files changed

+7
-245
lines changed

5 files changed

+7
-245
lines changed

builder/classic/builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ import (
1111
"github.com/hashicorp/go-oracle-terraform/compute"
1212
"github.com/hashicorp/go-oracle-terraform/opc"
1313
"github.com/hashicorp/hcl/v2/hcldec"
14+
ocommon "github.com/hashicorp/packer-plugin-oracle/builder/common"
1415
"github.com/hashicorp/packer-plugin-sdk/communicator"
1516
"github.com/hashicorp/packer-plugin-sdk/multistep"
1617
"github.com/hashicorp/packer-plugin-sdk/multistep/commonsteps"
1718
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
18-
ocommon "github.com/hashicorp/packer/builder/oracle/common"
1919
)
2020

2121
// BuilderId uniquely identifies the builder

builder/oci/builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import (
77
"fmt"
88

99
"github.com/hashicorp/hcl/v2/hcldec"
10+
ocommon "github.com/hashicorp/packer-plugin-oracle/builder/common"
1011
"github.com/hashicorp/packer-plugin-sdk/communicator"
1112
"github.com/hashicorp/packer-plugin-sdk/multistep"
1213
"github.com/hashicorp/packer-plugin-sdk/multistep/commonsteps"
1314
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
14-
ocommon "github.com/hashicorp/packer/builder/oracle/common"
1515
"github.com/oracle/oci-go-sdk/v36/core"
1616
)
1717

builder/version/version.go

Lines changed: 0 additions & 13 deletions
This file was deleted.

go.mod

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,17 @@ go 1.16
44

55
require (
66
github.com/go-ini/ini v1.62.0
7+
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e // indirect
78
github.com/hashicorp/go-cleanhttp v0.5.2
89
github.com/hashicorp/go-oracle-terraform v0.17.0
910
github.com/hashicorp/hcl/v2 v2.9.1
10-
github.com/hashicorp/packer v1.7.2
1111
github.com/hashicorp/packer-plugin-sdk v0.2.0
1212
github.com/oracle/oci-go-sdk/v36 v36.2.0
13+
github.com/smartystreets/goconvey v1.6.4 // indirect
14+
github.com/stretchr/objx v0.3.0 // indirect
1315
github.com/stretchr/testify v1.7.0
1416
github.com/zclconf/go-cty v1.8.1
1517
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
18+
gopkg.in/ini.v1 v1.62.0 // indirect
19+
gopkg.in/jarcoal/httpmock.v1 v1.0.0-20181117152235-275e9df93516 // indirect
1620
)

0 commit comments

Comments
 (0)