Skip to content

Commit

Permalink
Align module name with its package name by changing it from :common -…
Browse files Browse the repository at this point in the history
…> :core
  • Loading branch information
05nelsonm committed Dec 19, 2024
1 parent f2ae88c commit d850838
Show file tree
Hide file tree
Showing 17 changed files with 7 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// - Show manifest properties: true
// - Show declarations: true

// Library unique name: <org.kotlincrypto.core:common>
// Library unique name: <org.kotlincrypto.core:core>
open annotation class org.kotlincrypto.core/ExperimentalKotlinCryptoApi : kotlin/Annotation { // org.kotlincrypto.core/ExperimentalKotlinCryptoApi|null[0]
constructor <init>() // org.kotlincrypto.core/ExperimentalKotlinCryptoApi.<init>|<init>(){}[0]
}
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
POM_ARTIFACT_ID=common
POM_ARTIFACT_ID=core
POM_NAME=KotlinCrypto Core Common
POM_DESCRIPTION=Common core cryptography components
2 changes: 1 addition & 1 deletion library/digest/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ kmpConfiguration {
common {
sourceSetMain {
dependencies {
api(project(":library:common"))
api(project(":library:core"))
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion library/mac/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ kmpConfiguration {
common {
sourceSetMain {
dependencies {
api(project(":library:common"))
api(project(":library:core"))
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion library/xof/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ kmpConfiguration {
sourceSetMain {
dependencies {
implementation(libs.kotlincrypto.endians.endians)
api(project(":library:common"))
api(project(":library:core"))
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if (CHECK_PUBLICATION != null) {
include(":tools:check-publication")
} else {
listOf(
"common",
"core",
"digest",
"mac",
"xof",
Expand Down
2 changes: 1 addition & 1 deletion tools/check-publication/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ kmpConfiguration {
common {
sourceSetMain {
dependencies {
implementation("$group:common:$version")
implementation("$group:core:$version")
implementation("$group:digest:$version")
implementation("$group:mac:$version")
implementation("$group:xof:$version")
Expand Down

0 comments on commit d850838

Please sign in to comment.