Skip to content

Commit 5bbc925

Browse files
committed
Fix invalid package name in builds
1 parent 00564c4 commit 5bbc925

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

ballerina/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ plugins {
2424

2525
description = 'Ballerina HubSpot CRM Products Connector - Ballerina'
2626

27-
def packageName = "hubspot.crm.object.products"
27+
def packageName = "hubspot.crm.obj.products"
2828
def packageOrg = "ballerinax"
2929
def tomlVersion = stripBallerinaExtensionVersion("${project.version}")
3030
def ballerinaTomlFilePlaceHolder = new File("${project.rootDir}/build-config/resources/Ballerina.toml")

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ allprojects {
5858
def moduleVersion = project.version.replace("-SNAPSHOT", "")
5959

6060
task build {
61-
dependsOn(':hubspot.crm.object.products-ballerina:build')
61+
dependsOn(':hubspot.crm.obj.products-ballerina:build')
6262
}
6363

6464
release {

examples/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Examples
22

3-
The `ballerinax/hubspot.crm.object.products` connector provides practical examples illustrating usage in various scenarios.
3+
The `ballerinax/hubspot.crm.obj.products` connector provides practical examples illustrating usage in various scenarios.
44

55
[//]: # (TODO: Add examples)
6-
1.
7-
2.
6+
1.
7+
2.
88

99
## Prerequisites
1010

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ plugins {
2929

3030
rootProject.name = 'module-ballerinax-hubspot.crm.object.products'
3131

32-
include ':hubspot.crm.object.products-ballerina'
32+
include ':hubspot.crm.obj.products-ballerina'
3333

34-
project(':hubspot.crm.object.products-ballerina').projectDir = file("ballerina")
34+
project(':hubspot.crm.obj.products-ballerina').projectDir = file("ballerina")
3535

3636
gradleEnterprise {
3737
buildScan {

0 commit comments

Comments
 (0)