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

I created jar file with maven but there was an NullPointerException is thrown because I used jgoodies form I think. But an idea When the project is run, there is no exception is thrown. What is the reason of this problem ??

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>Downloader</groupId>
    <artifactId>Downloader</artifactId>
    <version>1.0</version>
    <name>Downloader</name>
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.test.sourceEncoding>UTF-8</project.test.sourceEncoding>
    </properties>
    <dependencies>
        <dependency>
   <groupId>org.apache.ant</groupId>
   <artifactId>ant</artifactId>
   <version>1.7.1</version>
</dependency>
        <dependency>
  <groupId>com.jgoodies</groupId>
  <artifactId>forms</artifactId>
  <version>1.2.1</version>
</dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.9</version>
        </dependency>
        <dependency>
            <groupId>net.sf.jacob-project</groupId>
            <artifactId>jacob</artifactId>
            <version>1.14.3</version>
        </dependency>
        <dependency>
            <groupId>org.htmlparser</groupId>
            <artifactId>htmlparser</artifactId>
            <version>1.6</version>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.16</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>

            <version>4.0</version>
            <scope>test</scope>

        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                            <groupId>org.apache.maven.plugins</groupId>
                            <artifactId>maven-jar-plugin</artifactId>
                            <configuration>

                                <archive>
                                    <manifest>
                                        <addClasspath>true</addClasspath>

                                        <mainClass>bemukan.downloadAccelerator.Main</mainClass>
                                    </manifest>
                                </archive>
                            </configuration>

                        </plugin>
            <plugin>
                  <groupId>org.apache.maven.plugins</groupId>
                  <artifactId>maven-shade-plugin</artifactId>
                  <version>1.4</version>
                  <configuration>
                     <archive>
                                    <manifest>
                                        <addClasspath>true</addClasspath>

                                        <mainClass>bemukan.downloadAccelerator.Main</mainClass>
                                    </manifest>
                                </archive>
                  </configuration>
                </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-idea-plugin</artifactId>
                <configuration>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                    <jdkLevel>1.6</jdkLevel>
                    <jdkName>1.6</jdkName>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                    <encoding>utf-8</encoding>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.7</version>
                <configuration>

                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.2</version>
                <configuration>

                    <finalName>TestExcel</finalName>

                    <archive>
                        <manifest>
                            <mainClass>bemukan.downloadAccelerator.Main</mainClass>
                        </manifest>
                    </archive>

                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>

                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <!-- this is used for inheritance merges -->
                        <phase>package</phase>
                        <!-- append to the packaging phase. -->
                        <goals>
                            <goal>single</goal>
                            <!-- goals == mojos -->
                        </goals>
                    </execution>
                </executions>
            </plugin>

        </plugins>

    </build>
</project>

Stacktrace

Exception in thread "main" java.lang.NullPointerException at  emukan.downloadAccelerator.Home.<init>(Home.java:2 at  emukan.downloadAccelerator.Main.main(Main.java:15) 
share|improve this question
Post your stack trace ... otherwise this will get closed quickly – Jarrod Roberson Feb 23 '11 at 17:15
Exception in thread "main" java.lang.NullPointerException at bemukan.downloadAccelerator.Home.<init>(Home.java:2 at bemukan.downloadAccelerator.Main.main(Main.java:15) – mucayufa Feb 23 '11 at 17:55
what is on line 15 whatever is on that line is not getting set to a valid object reference, probably has nothing to do with how you are packaging with Maven, it would be a ClassNotFoundError if it was a packaging problem. – Jarrod Roberson Feb 23 '11 at 18:05
You are saying that there is no packaging problem also maven problem, but it may be different problem.?? Unknown reason... – mucayufa Feb 23 '11 at 18:18

closed as not a real question by Jarrod Roberson, Robert Harvey Feb 25 '11 at 19:48

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

Without a stacktrace, it is impossible to tell exactly what your problem is, but I will guess that the jgoodies .jar file isn't in the Classpath outside your IDE environment. There are two ways to solve this using Maven.

  1. If your .jar file is a library .jar add a relative reference to the dependent .jar files in the MANIFEST.MF file using the Maven Archiver plugin configuration.
  2. If your .jar file is an executable stand alone Java application you can use the Shade plug in to combine all your dependent .jar files into your executable .jar file make it a self contained Uberjar.

I assume since you are using JGoodies, you are packaging up a stand alone GUI program, in which case either one of the above solutions will work, solution #2 will be easier to deploy.

share|improve this answer
Could you give me your email address ? Because I want to send my program to you. – mucayufa Feb 23 '11 at 17:30
no thanks, if you want to show code, there are lots of ways to do that with online services, using a Gist on GitHub for example. Or better yet, just edit your question and post your stacktrace you get. – Jarrod Roberson Feb 23 '11 at 17:41
I wrote content of pom.xml what is wrong with it ? – mucayufa Feb 23 '11 at 17:45
Exception in thread "main" java.lang.NullPointerException at bemukan.downloadAccelerator.Home.<init>(Home.java:2 at bemukan.downloadAccelerator.Main.main(Main.java:15) – mucayufa Feb 23 '11 at 17:54
have you unziped the created .jar file and see if Shade is configured correctly and is including the correct .jar contents in the /classes directory? – Jarrod Roberson Feb 23 '11 at 18:04
show 2 more comments
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>Downloader</groupId>
    <artifactId>Downloader</artifactId>
    <version>1.0</version>
    <name>Downloader</name>
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.test.sourceEncoding>UTF-8</project.test.sourceEncoding>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.apache.ant</groupId>
            <artifactId>ant</artifactId>
            <version>1.7.1</version>
        </dependency>
        <dependency>
            <groupId>com.jgoodies</groupId>
            <artifactId>forms</artifactId>
            <version>1.2.1</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.9</version>
        </dependency>
        <dependency>
            <groupId>net.sf.jacob-project</groupId>
            <artifactId>jacob</artifactId>
            <version>1.14.3</version>
        </dependency>
        <dependency>
            <groupId>org.htmlparser</groupId>
            <artifactId>htmlparser</artifactId>
            <version>1.6</version>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.16</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.0</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest>
                            <addClasspath>true</addClasspath>
                            <mainClass>bemukan.downloadAccelerator.Main</mainClass>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>1.4</version>
                <configuration>
                    <archive>
                        <manifest>
                            <addClasspath>true</addClasspath>
                            <mainClass>bemukan.downloadAccelerator.Main</mainClass>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-idea-plugin</artifactId>
                <configuration>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                    <jdkLevel>1.6</jdkLevel>
                    <jdkName>1.6</jdkName>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                    <encoding>utf-8</encoding>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.7</version>
                <configuration></configuration>
            </plugin>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.2</version>
                <configuration>
                    <finalName>TestExcel</finalName>
                    <archive>
                        <manifest>
                            <mainClass>bemukan.downloadAccelerator.Main</mainClass>
                        </manifest>
                    </archive>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <!-- this is used for inheritance merges -->
                        <phase>package</phase>
                        <!-- append to the packaging phase. -->
                        <goals>
                            <goal>single</goal>
                            <!-- goals == mojos -->
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
share|improve this answer
@Jarrod: Seriously? You're giving advice on how to use the site correctly, by incorrectly editing someone else's content? – Robert Harvey Feb 25 '11 at 19:44

Main Reason is that : First run in intellij idea then package... But I was everytime doing package withot running.. Therefore error was occurred.

I found the solution. The lack of following maven dependency causes this error :

    <dependency>
        <groupId>jgoodies</groupId>
        <artifactId>binding</artifactId>
        <version>1.0</version>
    </dependency>

Thats If you are doing jgoodies maven project only need two dependencies and also other necassary plugins. These two dependencies are :

    <dependency>
        <groupId>com.jgoodies</groupId>
        <artifactId>forms</artifactId>
        <version>1.2.1</version>
    </dependency>

    <dependency>
        <groupId>jgoodies</groupId>
        <artifactId>binding</artifactId>
        <version>1.0</version>
    </dependency>

After all these, pom.xml file looks like :

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>Bemukan</groupId>
    <artifactId>WordMemorize</artifactId>
    <version>1.0</version>

    <name>WordMemorize</name>
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.test.sourceEncoding>UTF-8</project.test.sourceEncoding>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.apache.ant</groupId>
            <artifactId>ant</artifactId>
            <version>1.7.1</version>
        </dependency>
        <dependency>
            <groupId>com.jgoodies</groupId>
            <artifactId>forms</artifactId>
            <version>1.2.1</version>
        </dependency>

        <dependency>
            <groupId>jgoodies</groupId>
            <artifactId>binding</artifactId>
            <version>1.0</version>
        </dependency>


        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.16</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.5</version>
        </dependency>


    </dependencies>
    <build>
        <plugins>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-idea-plugin</artifactId>
                <configuration>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                    <jdkLevel>1.6</jdkLevel>
                    <jdkName>1.6</jdkName>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                    <encoding>utf-8</encoding>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.7</version>
                <configuration>

                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>

                    <archive>
                        <manifest>
                            <addClasspath>true</addClasspath>

                            <mainClass>bemukan.downloadAccelerator.Main</mainClass>
                        </manifest>
                    </archive>
                </configuration>

            </plugin>


            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.2</version>
                <configuration>

                    <finalName>Downloader</finalName>

                    <archive>
                        <manifest>
                            <mainClass>bemukan.downloadAccelerator.Main</mainClass>
                        </manifest>
                    </archive>

                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>

                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <!-- this is used for inheritance merges -->
                        <phase>package</phase>
                        <!-- append to the packaging phase. -->
                        <goals>
                            <goal>single</goal>
                            <!-- goals == mojos -->
                        </goals>
                    </execution>
                </executions>
            </plugin>

        </plugins>

    </build>
</project>
share|improve this answer

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