diff --git a/hubspot/build.gradle.kts b/hubspot/build.gradle.kts index fe31595..52c9149 100644 --- a/hubspot/build.gradle.kts +++ b/hubspot/build.gradle.kts @@ -54,13 +54,13 @@ publishing { publications { create("sdk") { pom { - groupId = "com.goforboom" + groupId = "org.boomevents" artifactId = "hubspot-sdk" version = version name.set("HubSpot SDK") description.set("Implementation of HubSpot API for Java/Kotlin in tiny SDK") - url.set("https://github.com/goforboom/hubspot") + url.set("https://github.com/boomevents/hubspot") licenses { license { @@ -71,16 +71,16 @@ publishing { developers { developer { - id.set("goforboom") + id.set("boomevents") name.set("BOOM") - email.set("dev@goforboom.com") + email.set("dev@boomevents.com") } } scm { - connection.set("scm:git:git://github.com:goforboom/hubspot.git") - developerConnection.set("scm:git:ssh://github.com:goforboom/hubspot.git") - url.set("https://github.com/goforboom/hubspot") + connection.set("scm:git:git://github.com:boomevents/hubspot.git") + developerConnection.set("scm:git:ssh://github.com:boomevents/hubspot.git") + url.set("https://github.com/boomevents/hubspot") } } diff --git a/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/DataEntity.kt b/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/DataEntity.kt index 0f0b0a7..76898ca 100644 --- a/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/DataEntity.kt +++ b/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/DataEntity.kt @@ -1,4 +1,4 @@ -package com.goforboom.hubspot.domain +package org.boomevents.hubspot.domain import java.math.BigInteger import java.time.LocalDateTime diff --git a/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/company/Company.kt b/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/company/Company.kt index 4b9d5a3..324f0c9 100644 --- a/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/company/Company.kt +++ b/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/company/Company.kt @@ -1,6 +1,6 @@ package org.boomevents.hubspot.domain.company -import com.goforboom.hubspot.domain.DataEntity +import org.boomevents.hubspot.domain.DataEntity import java.math.BigInteger import java.time.LocalDateTime diff --git a/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/CustomObject.kt b/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/CustomObject.kt index cb842e5..dbebf77 100644 --- a/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/CustomObject.kt +++ b/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/CustomObject.kt @@ -1,6 +1,6 @@ -package com.goforboom.hubspot.domain.customobject +package org.boomevents.hubspot.domain.customobject -import com.goforboom.hubspot.domain.DataEntity +import org.boomevents.hubspot.domain.DataEntity import java.math.BigInteger import java.time.LocalDateTime diff --git a/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/CustomObjectClient.kt b/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/CustomObjectClient.kt index 44dac3a..5de7445 100644 --- a/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/CustomObjectClient.kt +++ b/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/CustomObjectClient.kt @@ -1,12 +1,12 @@ -package com.goforboom.hubspot.domain.customobject - -import com.goforboom.hubspot.model.http.RequestMethod -import com.goforboom.hubspot.model.http.Requester -import com.goforboom.hubspot.Client -import com.goforboom.hubspot.ClientRequestCatalog -import com.goforboom.hubspot.domain.customobject.exceptions.CustomObjectNotFoundException -import com.goforboom.hubspot.model.http.exceptions.HttpRequestException -import com.goforboom.hubspot.model.mapper.Mapper +package org.boomevents.hubspot.domain.customobject + +import org.boomevents.hubspot.model.http.RequestMethod +import org.boomevents.hubspot.model.http.Requester +import org.boomevents.hubspot.Client +import org.boomevents.hubspot.ClientRequestCatalog +import org.boomevents.hubspot.domain.customobject.exceptions.CustomObjectNotFoundException +import org.boomevents.hubspot.model.http.exceptions.HttpRequestException +import org.boomevents.hubspot.model.mapper.Mapper import java.math.BigInteger class CustomObjectClient( diff --git a/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/CustomObjectRequest.kt b/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/CustomObjectRequest.kt index 0e42572..ed356ad 100644 --- a/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/CustomObjectRequest.kt +++ b/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/CustomObjectRequest.kt @@ -1,4 +1,4 @@ -package com.goforboom.hubspot.domain.customobject +package org.boomevents.hubspot.domain.customobject data class CustomObjectRequest

( val properties: P diff --git a/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/exceptions/CustomObjectException.kt b/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/exceptions/CustomObjectException.kt index d00c97f..8caff0e 100644 --- a/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/exceptions/CustomObjectException.kt +++ b/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/exceptions/CustomObjectException.kt @@ -1,5 +1,5 @@ -package com.goforboom.hubspot.domain.customobject.exceptions +package org.boomevents.hubspot.domain.customobject.exceptions -import com.goforboom.hubspot.exceptions.HubSpotException +import org.boomevents.hubspot.exceptions.HubSpotException abstract class CustomObjectException(override val message: String) : HubSpotException(message) diff --git a/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/exceptions/CustomObjectNotFoundException.kt b/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/exceptions/CustomObjectNotFoundException.kt index 6d1589e..dbd894c 100644 --- a/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/exceptions/CustomObjectNotFoundException.kt +++ b/hubspot/src/main/kotlin/org/boomevents/hubspot/domain/customobject/exceptions/CustomObjectNotFoundException.kt @@ -1,4 +1,4 @@ -package com.goforboom.hubspot.domain.customobject.exceptions +package org.boomevents.hubspot.domain.customobject.exceptions import java.math.BigInteger