mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-04-29 15:55:23 +00:00
XTools V3
* Use command line interface instead of hard-coded paths * Takes in both .gcap and parsed gcapy files * Add pack config to allow system-wide installation * Slightly change output format from [C|S] -> [C|s] to C [<<<|>>>] S * Add some documentation to README
This commit is contained in:
parent
170549982c
commit
116860b3be
4 changed files with 264 additions and 173 deletions
10
build.sbt
10
build.sbt
|
|
@ -103,13 +103,21 @@ lazy val common = (project in file("common")).
|
|||
settings(pscryptoSettings: _*)
|
||||
|
||||
lazy val decodePackets = (project in file("tools/decode-packets")).
|
||||
enablePlugins(PackPlugin).
|
||||
settings(commonSettings: _*).
|
||||
settings(decodePacketsPackSettings: _*).
|
||||
settings(
|
||||
libraryDependencies ++= Seq(
|
||||
"org.scala-lang.modules" %% "scala-parallel-collections" % "0.2.0"
|
||||
"org.scala-lang.modules" %% "scala-parallel-collections" % "0.2.0",
|
||||
"com.github.scopt" %% "scopt" % "4.0.0-RC2",
|
||||
"commons-io" % "commons-io" % "2.6"
|
||||
)
|
||||
).
|
||||
dependsOn(common)
|
||||
|
||||
lazy val decodePacketsPackSettings = Seq(
|
||||
packMain := Map("psf-decode-packets" -> "DecodePackets"),
|
||||
)
|
||||
|
||||
// Special test configuration for really quiet tests (used in CI)
|
||||
lazy val QuietTest = config("quiet") extend(Test)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue