Skip to content

Commit 4087c20

Browse files
!fix: changed package name
1 parent e5ba31c commit 4087c20

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build and Test
33
on: push
44

55
jobs:
6-
publish:
6+
build-test:
77
runs-on: ubuntu-latest
88

99
steps:

parkour/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
`java-library`
44
}
55

6-
group = "dev.cybercoder_nishant"
6+
group = "io.github.cybercodernaj"
77
version = libs.versions.lib.get()
88

99
repositories {

parkour/src/main/kotlin/dev/cybercoder_nishant/parkour/Parser.kt renamed to parkour/src/main/kotlin/io/github/cybercodernaj/parkour/Parser.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.cybercoder_nishant.parkour
1+
package io.github.cybercodernaj.parkour
22

33
/**
44
* A parser class.

parkour/src/test/kotlin/dev/cybercoder_nishant/ParserTest.kt renamed to parkour/src/test/kotlin/io/github/cybercodernaj/ParserTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package dev.cybercoder_nishant
1+
package io.github.cybercodernaj
22

3-
import dev.cybercoder_nishant.parkour.Parser
3+
import io.github.cybercodernaj.parkour.Parser
44
import org.junit.jupiter.api.Assertions.*
55
import org.junit.jupiter.api.Test
66

sample/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
application
44
}
55

6-
group = "dev.cybercoder_nishant"
6+
group = "io.github.cybercodernaj"
77
version = libs.versions.lib.get()
88

99
repositories {
@@ -23,5 +23,5 @@ kotlin {
2323
}
2424

2525
application {
26-
mainClass = "dev.cybercoder_nishant.MainKt"
26+
mainClass = "io.github.cybercodernaj.MainKt"
2727
}

sample/src/main/kotlin/dev/cybercoder_nishant/Main.kt renamed to sample/src/main/kotlin/io/github/cybercodernaj/Main.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package dev.cybercoder_nishant
1+
package io.github.cybercodernaj
22

3-
import dev.cybercoder_nishant.parkour.Parser
3+
import io.github.cybercodernaj.parkour.Parser
44

55
fun main() {
66
println("Hello World!")

0 commit comments

Comments
 (0)