Skip to content

Commit a888f11

Browse files
authored
Align module name with its package name by changing it from :common -> :core (#68)
1 parent f2ae88c commit a888f11

File tree

17 files changed

+7
-7
lines changed

17 files changed

+7
-7
lines changed
File renamed without changes.
File renamed without changes.

library/common/api/common.klib.api renamed to library/core/api/core.klib.api

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// - Show manifest properties: true
66
// - Show declarations: true
77

8-
// Library unique name: <org.kotlincrypto.core:common>
8+
// Library unique name: <org.kotlincrypto.core:core>
99
open annotation class org.kotlincrypto.core/ExperimentalKotlinCryptoApi : kotlin/Annotation { // org.kotlincrypto.core/ExperimentalKotlinCryptoApi|null[0]
1010
constructor <init>() // org.kotlincrypto.core/ExperimentalKotlinCryptoApi.<init>|<init>(){}[0]
1111
}
File renamed without changes.

library/common/gradle.properties renamed to library/core/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
POM_ARTIFACT_ID=common
14+
POM_ARTIFACT_ID=core
1515
POM_NAME=KotlinCrypto Core Common
1616
POM_DESCRIPTION=Common core cryptography components

library/digest/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ kmpConfiguration {
2222
common {
2323
sourceSetMain {
2424
dependencies {
25-
api(project(":library:common"))
25+
api(project(":library:core"))
2626
}
2727
}
2828
}

library/mac/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ kmpConfiguration {
2222
common {
2323
sourceSetMain {
2424
dependencies {
25-
api(project(":library:common"))
25+
api(project(":library:core"))
2626
}
2727
}
2828
}

library/xof/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ kmpConfiguration {
2323
sourceSetMain {
2424
dependencies {
2525
implementation(libs.kotlincrypto.endians.endians)
26-
api(project(":library:common"))
26+
api(project(":library:core"))
2727
}
2828
}
2929
}

settings.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if (CHECK_PUBLICATION != null) {
3232
include(":tools:check-publication")
3333
} else {
3434
listOf(
35-
"common",
35+
"core",
3636
"digest",
3737
"mac",
3838
"xof",

tools/check-publication/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ kmpConfiguration {
3939
common {
4040
sourceSetMain {
4141
dependencies {
42-
implementation("$group:common:$version")
42+
implementation("$group:core:$version")
4343
implementation("$group:digest:$version")
4444
implementation("$group:mac:$version")
4545
implementation("$group:xof:$version")

0 commit comments

Comments
 (0)