Skip to content

Commit

Permalink
change the namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Roiocam committed Jan 29, 2024
1 parent 3411336 commit 75be7df
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Use the Apache Pekko project as an example
add these line into `project/plugin.sbt`

```sbt
addSbtPlugin("com.roiocam" % "sbt-depend-walker" % "1.0.0")
addSbtPlugin("io.github.roiocam" % "sbt-depend-walker" % "1.0.0")
```

### 2. create Depend-Walker settings
Expand All @@ -20,12 +20,10 @@ create `PekkoDependWalker` scala class on `project/PekkoDependWalker.scala`

```scala

import Jdk9.CompileJdk9
import com.roiocam.DependWalkerPlugin.autoImport.walkTasks
import com.roiocam.TaskDefine._
import com.roiocam._
import sbt.Keys._
import sbt._
import io.github.roiocam.TaskDefine.*
import io.github.roiocam.*
import sbt.Keys.*
import sbt.*

object PekkoDependWalker {

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ scriptedLaunchOpts += "-debug"
ThisBuild / licenses += ("Apache-2.0", url(
"https://www.apache.org/licenses/LICENSE-2.0.html"
))
ThisBuild / organization := "com.roiocam"
ThisBuild / organization := "io.github.roiocam"
ThisBuild / homepage := Some(
url("https://github.com/roiocam/sbt-depend-walker")
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.roiocam
package io.github.roiocam

sealed trait CheckMode

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.roiocam
package io.github.roiocam

import com.roiocam.TaskDefine.{ScopeKeyMatcher, WalkTask}
import TaskDefine.{ScopeKeyMatcher, WalkTask}
import sbt.Keys.*
import sbt.*
import sbt.internal.BuildStructure
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.roiocam
package io.github.roiocam

import sbt.ScopedKey

Expand Down

0 comments on commit 75be7df

Please sign in to comment.