├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── notes ├── 0.6.0.markdown └── about.markdown ├── project ├── build.properties └── plugins.sbt └── src ├── main └── scala │ └── com │ ├── github │ └── sbt │ │ └── sbtghpages │ │ ├── GhpagesKeys.scala │ │ └── GhpagesPlugin.scala │ └── typesafe │ └── sbt │ └── sbtghpages │ └── package.scala └── sbt-test └── ghpages └── basic ├── build.sbt ├── project └── plugins.sbt └── test /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @xuwei-k 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbt/sbt-ghpages/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbt/sbt-ghpages/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbt/sbt-ghpages/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | target/ 3 | boot/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbt/sbt-ghpages/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbt/sbt-ghpages/HEAD/README.md -------------------------------------------------------------------------------- /notes/0.6.0.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbt/sbt-ghpages/HEAD/notes/0.6.0.markdown -------------------------------------------------------------------------------- /notes/about.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbt/sbt-ghpages/HEAD/notes/about.markdown -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 1.11.7 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbt/sbt-ghpages/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /src/main/scala/com/github/sbt/sbtghpages/GhpagesKeys.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbt/sbt-ghpages/HEAD/src/main/scala/com/github/sbt/sbtghpages/GhpagesKeys.scala -------------------------------------------------------------------------------- /src/main/scala/com/github/sbt/sbtghpages/GhpagesPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbt/sbt-ghpages/HEAD/src/main/scala/com/github/sbt/sbtghpages/GhpagesPlugin.scala -------------------------------------------------------------------------------- /src/main/scala/com/typesafe/sbt/sbtghpages/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbt/sbt-ghpages/HEAD/src/main/scala/com/typesafe/sbt/sbtghpages/package.scala -------------------------------------------------------------------------------- /src/sbt-test/ghpages/basic/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbt/sbt-ghpages/HEAD/src/sbt-test/ghpages/basic/build.sbt -------------------------------------------------------------------------------- /src/sbt-test/ghpages/basic/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbt/sbt-ghpages/HEAD/src/sbt-test/ghpages/basic/project/plugins.sbt -------------------------------------------------------------------------------- /src/sbt-test/ghpages/basic/test: -------------------------------------------------------------------------------- 1 | > ghpagesCleanSite 2 | --------------------------------------------------------------------------------