jdc0589
jdc0589

Reputation: 7018

Intellij include src files in jar file

I remember a while back with eclipse or netbeans I was able to easily include my source files in my jar file. I have moved to intellij 10 community edition and find myself needing to do the same thing. Any hints?

Upvotes: 20

Views: 20304

Answers (3)

swapnil shashank
swapnil shashank

Reputation: 987

Navigate as follows :

(i) Go the "File" in the Top Menu Bar

(ii) Select "Project Structure" from the File Menu

(iii) Select "Artifacts" in Project Settings

(iv) Select "Output Layout"

(v) Click on "+" , select "Directory Content" from the dropdown and choose "src" folder from the directories.

Upvotes: 3

jdc0589
jdc0589

Reputation: 7018

I figured it out...

Click the '+' button in the 'output layout' tab -> include directory contents -> select your src directory. That did it

Upvotes: 47

hvgotcodes
hvgotcodes

Reputation: 120168

did you try this

http://blogs.jetbrains.com/idea/tag/artifacts/

basically you

  1. right click on the project
  2. select Open Module Settings
  3. add a build artefact of type jar. You should see something like alt text

  4. Now in the build menu option you can build the jar.

Upvotes: 3

Related Questions