-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from mdedetrich/use-com-github-sbt-package
Use com.github.sbt package and deprecate io.github.jonas
- Loading branch information
Showing
4 changed files
with
23 additions
and
5 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...material.theme/ParadoxMaterialTheme.scala → ...material/theme/ParadoxMaterialTheme.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...al.theme/ParadoxMaterialThemePlugin.scala → ...al/theme/ParadoxMaterialThemePlugin.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
....paradox.material.theme/SearchIndex.scala → .../paradox/material/theme/SearchIndex.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
plugin/src/main/scala/io/github/jonas/paradox/material/theme/package.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package io.github.jonas.paradox.material | ||
|
||
package object theme { | ||
@deprecated("Use com.github.sbt.paradox.material.theme.ParadoxMaterialTheme instead", "0.7.0") | ||
val ParadoxMaterialTheme = com.github.sbt.paradox.material.theme.ParadoxMaterialTheme | ||
|
||
@deprecated("Use com.github.sbt.paradox.material.theme.ParadoxMaterialTheme instead", "0.7.0") | ||
type ParadoxMaterialTheme = com.github.sbt.paradox.material.theme.ParadoxMaterialTheme | ||
|
||
@deprecated("Use com.github.sbt.paradox.material.theme.ParadoxMaterialThemePlugin instead", "0.7.0") | ||
val ParadoxMaterialThemePlugin = com.github.sbt.paradox.material.theme.ParadoxMaterialThemePlugin | ||
|
||
@deprecated("Use com.github.sbt.paradox.material.theme.SearchIndex instead", "0.7.0") | ||
val SearchIndex = com.github.sbt.paradox.material.theme.SearchIndex | ||
|
||
@deprecated("Use com.github.sbt.paradox.material.theme.SearchIndex instead", "0.7.0") | ||
type SearchIndex = com.github.sbt.paradox.material.theme.SearchIndex | ||
} |