Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'm using netbeans for writing a webapp + filter.

I want to generate a jar file (to place in tomcat/lib folder) for the sake of the filter.

when i compile the project, it generates war file.

is there a way to tell netbeans to generate a jar file instead?

share|improve this question
1  
I'm not sure why you want to make the filter a jar, but if your reason is for re-use, then it should just be a separate project. – Dave Newton Oct 21 '11 at 15:34
thanks man! i've been battling around it for too long – lolo Oct 21 '11 at 15:43

3 Answers

up vote 1 down vote accepted

Create a separate project to generate your .jar file. In that case also I think you have to create the .jar using terminal. You can't create a .jar file for a web project using netbeans IDE, as far as I know.

share|improve this answer

You can add something like this to your build.xml:

<target name="-post-compile">
    <jar destfile="${basedir}/dist/my_web_app.jar">
        <fileset dir="${basedir}/build/web/WEB-INF/classes">

        </fileset>
    </jar>
</target>

Which will build you a jar alongside your war.

share|improve this answer
1  
good answer.... – goh Jul 17 '12 at 10:37

Maybe modify the build.xml used by netbeans, adding a copy task on the generated jar.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.