├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── ci.yml │ └── scala-steward.yml ├── .gitignore ├── .scala-steward.conf ├── README.markdown ├── docs ├── 00.md ├── 01-setup.md ├── 02-usage.md ├── 03-how.md ├── 04-private-repos.md ├── 05-making-app.md ├── 06-conscripted-apps.md ├── custom.css ├── favicon.ico ├── files │ ├── conscript.png │ └── conscript.svg ├── ja │ ├── 00.md │ ├── 01-setup.md │ ├── 02-usage.md │ ├── 03-how.md │ ├── 04-private-repos.md │ ├── 05-making-app.md │ └── 06-conscripted-apps.md └── template.properties ├── notes ├── 0.2.1.markdown ├── 0.2.2.markdown ├── 0.3.0.markdown ├── 0.3.1.markdown ├── 0.3.2.markdown ├── 0.3.3.markdown ├── 0.3.4.markdown ├── 0.4.0.markdown ├── 0.4.1.markdown ├── 0.4.2.markdown ├── 0.4.4.markdown ├── 0.5.0.markdown ├── 0.5.1.markdown └── about.markdown ├── project ├── Dependencies.scala ├── build.properties ├── plugins.sbt └── site.sbt ├── sbt-conscript └── src │ ├── main │ ├── scala-2 │ │ └── ConscriptPluginCompat.scala │ ├── scala-3 │ │ └── ConscriptPluginCompat.scala │ └── scala │ │ └── ConscriptPlugin.scala │ └── sbt-test │ └── cs │ └── basic │ ├── Hello.scala │ ├── build.sbt │ ├── project │ └── plugin.sbt │ ├── src │ └── main │ │ └── conscript │ │ └── foo │ │ └── launchconfig │ └── test ├── setup.ps1 ├── setup.sh ├── src ├── extern │ └── conscript.svg └── main │ ├── conscript │ └── cs │ │ └── launchconfig │ ├── resources │ ├── META-INF │ │ └── MANIFEST.MF │ └── conscript.png │ └── scala │ ├── apply.scala │ ├── authorize.scala │ ├── clean.scala │ ├── config.scala │ ├── conscript.scala │ ├── credentials.scala │ ├── display.scala │ ├── github.scala │ ├── launch.scala │ ├── launchconfig.scala │ └── liftjson.scala └── version.sbt /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @eed3si9n @xuwei-k 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/scala-steward.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/.github/workflows/scala-steward.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/.gitignore -------------------------------------------------------------------------------- /.scala-steward.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/.scala-steward.conf -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/README.markdown -------------------------------------------------------------------------------- /docs/00.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/00.md -------------------------------------------------------------------------------- /docs/01-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/01-setup.md -------------------------------------------------------------------------------- /docs/02-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/02-usage.md -------------------------------------------------------------------------------- /docs/03-how.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/03-how.md -------------------------------------------------------------------------------- /docs/04-private-repos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/04-private-repos.md -------------------------------------------------------------------------------- /docs/05-making-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/05-making-app.md -------------------------------------------------------------------------------- /docs/06-conscripted-apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/06-conscripted-apps.md -------------------------------------------------------------------------------- /docs/custom.css: -------------------------------------------------------------------------------- 1 | pre { 2 | font-size: 75%; 3 | } 4 | -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/files/conscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/files/conscript.png -------------------------------------------------------------------------------- /docs/files/conscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/files/conscript.svg -------------------------------------------------------------------------------- /docs/ja/00.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/ja/00.md -------------------------------------------------------------------------------- /docs/ja/01-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/ja/01-setup.md -------------------------------------------------------------------------------- /docs/ja/02-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/ja/02-usage.md -------------------------------------------------------------------------------- /docs/ja/03-how.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/ja/03-how.md -------------------------------------------------------------------------------- /docs/ja/04-private-repos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/ja/04-private-repos.md -------------------------------------------------------------------------------- /docs/ja/05-making-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/ja/05-making-app.md -------------------------------------------------------------------------------- /docs/ja/06-conscripted-apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/docs/ja/06-conscripted-apps.md -------------------------------------------------------------------------------- /docs/template.properties: -------------------------------------------------------------------------------- 1 | version=0.5.9 2 | color_scheme=github 3 | languages=en,ja 4 | -------------------------------------------------------------------------------- /notes/0.2.1.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/notes/0.2.1.markdown -------------------------------------------------------------------------------- /notes/0.2.2.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/notes/0.2.2.markdown -------------------------------------------------------------------------------- /notes/0.3.0.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/notes/0.3.0.markdown -------------------------------------------------------------------------------- /notes/0.3.1.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/notes/0.3.1.markdown -------------------------------------------------------------------------------- /notes/0.3.2.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/notes/0.3.2.markdown -------------------------------------------------------------------------------- /notes/0.3.3.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/notes/0.3.3.markdown -------------------------------------------------------------------------------- /notes/0.3.4.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/notes/0.3.4.markdown -------------------------------------------------------------------------------- /notes/0.4.0.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/notes/0.4.0.markdown -------------------------------------------------------------------------------- /notes/0.4.1.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/notes/0.4.1.markdown -------------------------------------------------------------------------------- /notes/0.4.2.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/notes/0.4.2.markdown -------------------------------------------------------------------------------- /notes/0.4.4.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/notes/0.4.4.markdown -------------------------------------------------------------------------------- /notes/0.5.0.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/notes/0.5.0.markdown -------------------------------------------------------------------------------- /notes/0.5.1.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/notes/0.5.1.markdown -------------------------------------------------------------------------------- /notes/about.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/notes/about.markdown -------------------------------------------------------------------------------- /project/Dependencies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/project/Dependencies.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.7 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /project/site.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/project/site.sbt -------------------------------------------------------------------------------- /sbt-conscript/src/main/scala-2/ConscriptPluginCompat.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/sbt-conscript/src/main/scala-2/ConscriptPluginCompat.scala -------------------------------------------------------------------------------- /sbt-conscript/src/main/scala-3/ConscriptPluginCompat.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/sbt-conscript/src/main/scala-3/ConscriptPluginCompat.scala -------------------------------------------------------------------------------- /sbt-conscript/src/main/scala/ConscriptPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/sbt-conscript/src/main/scala/ConscriptPlugin.scala -------------------------------------------------------------------------------- /sbt-conscript/src/sbt-test/cs/basic/Hello.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/sbt-conscript/src/sbt-test/cs/basic/Hello.scala -------------------------------------------------------------------------------- /sbt-conscript/src/sbt-test/cs/basic/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/sbt-conscript/src/sbt-test/cs/basic/build.sbt -------------------------------------------------------------------------------- /sbt-conscript/src/sbt-test/cs/basic/project/plugin.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/sbt-conscript/src/sbt-test/cs/basic/project/plugin.sbt -------------------------------------------------------------------------------- /sbt-conscript/src/sbt-test/cs/basic/src/main/conscript/foo/launchconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/sbt-conscript/src/sbt-test/cs/basic/src/main/conscript/foo/launchconfig -------------------------------------------------------------------------------- /sbt-conscript/src/sbt-test/cs/basic/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/sbt-conscript/src/sbt-test/cs/basic/test -------------------------------------------------------------------------------- /setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/setup.ps1 -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/setup.sh -------------------------------------------------------------------------------- /src/extern/conscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/extern/conscript.svg -------------------------------------------------------------------------------- /src/main/conscript/cs/launchconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/main/conscript/cs/launchconfig -------------------------------------------------------------------------------- /src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/main/resources/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /src/main/resources/conscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/main/resources/conscript.png -------------------------------------------------------------------------------- /src/main/scala/apply.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/main/scala/apply.scala -------------------------------------------------------------------------------- /src/main/scala/authorize.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/main/scala/authorize.scala -------------------------------------------------------------------------------- /src/main/scala/clean.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/main/scala/clean.scala -------------------------------------------------------------------------------- /src/main/scala/config.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/main/scala/config.scala -------------------------------------------------------------------------------- /src/main/scala/conscript.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/main/scala/conscript.scala -------------------------------------------------------------------------------- /src/main/scala/credentials.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/main/scala/credentials.scala -------------------------------------------------------------------------------- /src/main/scala/display.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/main/scala/display.scala -------------------------------------------------------------------------------- /src/main/scala/github.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/main/scala/github.scala -------------------------------------------------------------------------------- /src/main/scala/launch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/main/scala/launch.scala -------------------------------------------------------------------------------- /src/main/scala/launchconfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/main/scala/launchconfig.scala -------------------------------------------------------------------------------- /src/main/scala/liftjson.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundweekends/conscript/HEAD/src/main/scala/liftjson.scala -------------------------------------------------------------------------------- /version.sbt: -------------------------------------------------------------------------------- 1 | ThisBuild / version := "0.5.10-SNAPSHOT" 2 | --------------------------------------------------------------------------------