├── .github └── workflows │ ├── scala-release.yml │ └── scala.yml ├── .gitignore ├── .secret-enc ├── env └── password ├── README.md ├── encrypt.sh ├── plugin ├── build.sbt ├── project │ ├── build.properties │ └── plugins.sbt └── src │ └── main │ └── scala │ └── me │ └── scf37 │ └── overwatch │ └── OverwatchPlugin.scala └── test ├── .bsp └── sbt.json ├── build.sbt ├── project ├── build.properties ├── build.sbt └── plugins.sbt └── src ├── main ├── resources │ ├── file.css │ └── file.js └── scala │ └── Main.scala └── test └── scala └── Test.scala /.github/workflows/scala-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/.github/workflows/scala-release.yml -------------------------------------------------------------------------------- /.github/workflows/scala.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/.github/workflows/scala.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/.gitignore -------------------------------------------------------------------------------- /.secret-enc/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/.secret-enc/env -------------------------------------------------------------------------------- /.secret-enc/password: -------------------------------------------------------------------------------- 1 | U2FsdGVkX19UULTOl1cZnUoCMv7q3pt/z8OB0Uvid401mOxMR7vkfIFCBxaKQBul 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/README.md -------------------------------------------------------------------------------- /encrypt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/encrypt.sh -------------------------------------------------------------------------------- /plugin/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/plugin/build.sbt -------------------------------------------------------------------------------- /plugin/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.2 -------------------------------------------------------------------------------- /plugin/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/plugin/project/plugins.sbt -------------------------------------------------------------------------------- /plugin/src/main/scala/me/scf37/overwatch/OverwatchPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/plugin/src/main/scala/me/scf37/overwatch/OverwatchPlugin.scala -------------------------------------------------------------------------------- /test/.bsp/sbt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/test/.bsp/sbt.json -------------------------------------------------------------------------------- /test/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/test/build.sbt -------------------------------------------------------------------------------- /test/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.5.2 -------------------------------------------------------------------------------- /test/project/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/test/project/build.sbt -------------------------------------------------------------------------------- /test/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/test/project/plugins.sbt -------------------------------------------------------------------------------- /test/src/main/resources/file.css: -------------------------------------------------------------------------------- 1 | /* this is css file */ 2 | -------------------------------------------------------------------------------- /test/src/main/resources/file.js: -------------------------------------------------------------------------------- 1 | //this is js file 2 | 3 | -------------------------------------------------------------------------------- /test/src/main/scala/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/test/src/main/scala/Main.scala -------------------------------------------------------------------------------- /test/src/test/scala/Test.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scf37/sbt-overwatch/HEAD/test/src/test/scala/Test.scala --------------------------------------------------------------------------------