Classpath including JAR within a JAR

前端 未结 13 1390
自闭症患者
自闭症患者 2020-11-22 02:21

Is it possible to specify a Java classpath that includes a JAR file contained within another JAR file?

13条回答
  •  广开言路
    2020-11-22 02:52

    I use maven for my java builds which has a plugin called the maven assembly plugin.

    It does what your asking, but like some of the other suggestions describe - essentially exploding all the dependent jars and recombining them into a single jar

提交回复
热议问题