Skip to content

Commit 7c62df0

Browse files
rename build scripts
1 parent f17adc4 commit 7c62df0

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ Pull requests are always welcome and can be a quick way to get your fix or impro
99
- By contributing to Ktorm, you agree that your contributions will be licensed under [Apache License 2.0](LICENSE).
1010
- Coding Conventions are very important. Refer to the [Kotlin Style Guide](https://kotlinlang.org/docs/reference/coding-conventions.html) for the recommended coding standards of Ktorm.
1111
- If you've added code that should be tested, add tests and ensure they all pass. If you've changed APIs, update the documentation.
12-
- If it's your first time contributing to Ktorm, please also update [this file](buildSrc/src/main/kotlin/ktorm.maven-publish.gradle.kts), add your GitHub ID to the developer's info, which will let more people know your contributions.
12+
- If it's your first time contributing to Ktorm, please also update [this file](buildSrc/src/main/kotlin/ktorm.publish.gradle.kts), add your GitHub ID to the developer's info, which will let more people know your contributions.

buildSrc/src/main/kotlin/ktorm.module-conventions.gradle.kts buildSrc/src/main/kotlin/ktorm.module.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ plugins {
88
id("org.moditect.gradleplugin")
99
id("io.gitlab.arturbosch.detekt")
1010
id("ktorm.source-header-check")
11-
id("ktorm.maven-publish")
11+
id("ktorm.publish")
1212
}
1313

1414
repositories {
1515
mavenCentral()
1616
}
1717

1818
dependencies {
19-
api(kotlin("stdlib-jdk8"))
19+
api(kotlin("stdlib"))
2020
api(kotlin("reflect"))
2121
testImplementation(kotlin("test-junit"))
2222
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:${detekt.toolVersion}")

buildSrc/src/main/kotlin/ktorm.tuples-generation.gradle.kts buildSrc/src/main/kotlin/ktorm.tuples-codegen.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ val generateTuples by tasks.registering {
297297
* limitations under the License.
298298
*/
299299
300-
// Auto-generated by ktorm.tuples-generation.gradle.kts, DO NOT EDIT!
300+
// Auto-generated by ktorm.tuples-codegen.gradle.kts, DO NOT EDIT!
301301
302302
package org.ktorm.entity
303303

detekt.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ style:
409409
maxJumpCount: 2
410410
MagicNumber:
411411
active: true
412-
ignoreNumbers: '-1,0,1,2,3'
412+
ignoreNumbers: '-1,0,1,2,3,60'
413413
ignoreHashCodeFunction: true
414414
ignorePropertyDeclaration: false
415415
ignoreConstantDeclaration: true

ktorm-core/ktorm-core.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
plugins {
3-
id("ktorm.module-conventions")
4-
id("ktorm.tuples-generation")
3+
id("ktorm.module")
4+
id("ktorm.tuples-codegen")
55
}
66

77
dependencies {

ktorm-global/ktorm-global.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
plugins {
3-
id("ktorm.module-conventions")
3+
id("ktorm.module")
44
}
55

66
dependencies {

ktorm-jackson/ktorm-jackson.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
plugins {
3-
id("ktorm.module-conventions")
3+
id("ktorm.module")
44
}
55

66
dependencies {

ktorm-support-mysql/ktorm-support-mysql.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
plugins {
3-
id("ktorm.module-conventions")
3+
id("ktorm.module")
44
}
55

66
dependencies {

ktorm-support-oracle/ktorm-support-oracle.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
plugins {
3-
id("ktorm.module-conventions")
3+
id("ktorm.module")
44
}
55

66
dependencies {

ktorm-support-postgresql/ktorm-support-postgresql.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
plugins {
3-
id("ktorm.module-conventions")
3+
id("ktorm.module")
44
}
55

66
dependencies {

ktorm-support-sqlite/ktorm-support-sqlite.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
plugins {
3-
id("ktorm.module-conventions")
3+
id("ktorm.module")
44
}
55

66
dependencies {

ktorm-support-sqlserver/ktorm-support-sqlserver.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
plugins {
3-
id("ktorm.module-conventions")
3+
id("ktorm.module")
44
}
55

66
dependencies {

0 commit comments

Comments
 (0)