How to build jars from IntelliJ properly?

前端 未结 20 2476
盖世英雄少女心
盖世英雄少女心 2020-11-22 01:14

I have a project that contains a single module, and some dependencies. I\'d like to create a jar, in a separate directory, that contains the compiled module. In addition, I\

20条回答
  •  感情败类
    2020-11-22 01:53

    Here's how to build a jar with IntelliJ 10 http://blogs.jetbrains.com/idea/2010/08/quickly-create-jar-artifact/

    File -> Project Structure -> Project Settings -> Artifacts -> Click green plus sign -> Jar -> From modules with dependencies...

    The above sets the "skeleton" to where the jar will be saved to. To actually build and save it do the following:

    Extract to the target Jar

    OK

    Build | Build Artifact | Build

    Try Extracting the .jar file from

    ProjectName | out | artifacts | ProjectName_jar | ProjectName.jar

提交回复
热议问题