Skip to content

Commit 41a55d7

Browse files
Fix CLI tool package
1 parent 40272a3 commit 41a55d7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

wallpapermaker-cli/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 = "net.sneakysims.floormaker"
6+
group = "net.sneakysims.wallpapermaker"
77

88
repositories {
99
mavenCentral()
@@ -17,5 +17,5 @@ dependencies {
1717
}
1818

1919
application {
20-
this.mainClass = "net.sneakysims.floormaker.cli.FloorMakerCLIKt"
20+
this.mainClass = "net.sneakysims.wallpapermaker.cli.WallpaperMakerCLIKt"
2121
}

wallpapermaker-cli/src/main/kotlin/net/sneakysims/floormaker/cli/WallpaperMakerCLI.kt renamed to wallpapermaker-cli/src/main/kotlin/net/sneakysims/wallpapermaker/cli/WallpaperMakerCLI.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.sneakysims.floormaker.cli
1+
package net.sneakysims.wallpapermaker.cli
22

33
import com.github.ajalt.clikt.core.CliktCommand
44
import com.github.ajalt.clikt.core.Context
@@ -10,7 +10,7 @@ import com.github.ajalt.clikt.parameters.types.int
1010
import net.perfectdreams.slippyimage.PaletteCreator
1111
import net.perfectdreams.slippyimage.SlippyImage
1212
import net.perfectdreams.slippyimage.convertToSlippyImage
13-
import net.sneakysims.floormaker.WallpaperMaker
13+
import net.sneakysims.wallpapermaker.WallpaperMaker
1414
import java.io.File
1515
import javax.imageio.ImageIO
1616

wallpapermaker-common/src/commonMain/kotlin/net/sneakysims/floormaker/WallpaperMaker.kt renamed to wallpapermaker-common/src/commonMain/kotlin/net/sneakysims/wallpapermaker/WallpaperMaker.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.sneakysims.floormaker
1+
package net.sneakysims.wallpapermaker
22

33
import net.perfectdreams.slippyimage.*
44
import net.sneakysims.sneakylib.iff.*

0 commit comments

Comments
 (0)