1

我有一个这样的目录结构:

CSV_generator
  src
   main
    scala
     CSVGenerator.scala
  project
   plugins.sbt

我的 scala 对象的内容是这样的:

package tools.csv_generator

object CSV_Generator{
 import java.nio.file.{Paths, Files}
 import java.io.File
 import org.rogach.scallop._

def main(args: Array[String]){
  val opts = new ScallopConf(args) {

  banner("""This is the program CSV Generator""")
  val file_path = opt[String]("file_path",
                              required = true,
                              descr = "File Path")
  val dome_string = opt[String]("dome_string",
                                required = true,
                                descr = "Dome String")
  }

我的 csv_generator/project/plugins.sbt:

  addSbtPlugin("com.typesafe.sbt" % "sbt-proguard" % "0.2.2")

我的 csv_generator/build.sbt 是:

  proguardSettings

  ProguardKeys.options in Proguard ++= Seq("-dontnote", "-dontwarn", "-ignorewarnings"
                                     , "-keepclasseswithmembers  class                    scala.CSV_Generator")

  ProguardKeys.options in Proguard +=         ProguardOptions.keepMain("src.main.scala.CSV_Generator")

在我的 sbt 中,当我proguard:proguard尝试将所有代码打包到一个可运行的独立 jar 文件中时,我得到了这个:

  [error] Error: The output jar is empty. Did you specify the proper '-keep' options?
  [trace] Stack trace suppressed: run last proguard:proguard for the full output.
  [error] (proguard:proguard) Proguard failed with exit code [1]
  [error] Total time: 14 s, completed Jan 31, 2014 12:18:38 AM

对于像我这样的小应用程序,proguard 的例子很少。有人可以帮忙吗?

4

2 回答 2

0

一种不太强大的解决方案,它更接近于 clojure 的 uberjar,我发现它非常适合我,那就是 sbt “one-jar”。可以在这里找到:

https://github.com/retronym/sbt-onejar

使用几行配置,一切都打包好了。这更接近我的需要。

于 2014-02-06T03:06:18.477 回答
0

您还需要将 main 方法作为入口点:

-keep class scala.CSV_Generator {
    public static void main(java.lang.String[]);
}

ProGuard 通常会对此发出警告;最好不要关闭警告和注释。

请参阅 ProGuard 文档 > 示例 >典型应用程序

于 2014-02-02T10:01:01.413 回答