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

I am having trouble making an executable jar from a simple Java program.

I followed these Maven instructions and modified my pom.xml:

<plugins>
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-shade-plugin</artifactId>
    <version>1.7</version>
    <executions>
      <execution>
        <phase>package</phase>
        <goals>
          <goal>shade</goal>
        </goals>
        <configuration>
          <transformers>
            <transformer implementation= 
           "org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
              <mainClass>package.MyClass</mainClass>
            </transformer>
          </transformers>
        </configuration>
      </execution>
    </executions>
  </plugin>
</plugins>

When executing the install goal, I can read the line:

[INFO] Replacing /home/project-1.0.0.jar with /home/project-1.0.0-shaded.jar

But all I can find at that location is the project-1.0.0.jar, actually containing the dependencies -and having the right size- but when trying to execute it with my jre, it says:

The file '/home/project-1.0.0.jar' is not marked as executable.

Thus nothing gets executing!

How can I get my jar to execute properly?

Thanks for helping!

share|improve this question
How did you try to execute it? It doesn't look to me as if you said, "java -jar MYJARFILE" – bmargulies Jun 9 '12 at 21:23
Well actually I had to make it executable on my Ubuntu first... – Vakh Jun 9 '12 at 21:33
@Vakimshaar The executable flag on Ubuntu is not necessary cause it will be executed by the JVM ...and not by the os itself. – khmarbaise Jun 10 '12 at 16:54
How to set it when generating the JAR then? – Vakh Jun 10 '12 at 16:59
1  
Have you called via "java -jar MYJARFILE" like bmargulies already mentioned? – khmarbaise Jun 10 '12 at 20:43
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.