Skip to content

Commit

Permalink
Renamed namespaces after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
sitole committed Apr 14, 2023
1 parent f21a4d0 commit d3c3adb
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 24 deletions.
14 changes: 7 additions & 7 deletions hubspot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ publishing {
publications {
create<MavenPublication>("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 {
Expand All @@ -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")
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.goforboom.hubspot.domain
package org.boomevents.hubspot.domain

import java.math.BigInteger
import java.time.LocalDateTime
Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.goforboom.hubspot.domain.customobject
package org.boomevents.hubspot.domain.customobject

data class CustomObjectRequest<P>(
val properties: P
Expand Down
Original file line number Diff line number Diff line change
@@ -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)
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.goforboom.hubspot.domain.customobject.exceptions
package org.boomevents.hubspot.domain.customobject.exceptions

import java.math.BigInteger

Expand Down

0 comments on commit d3c3adb

Please sign in to comment.