как исправить недействительный или поврежденный Jarfile? - PullRequest
0 голосов
/ 10 апреля 2019

Я работаю над простым Java-проектом 'Hello world!'. Поэтому после создания своего кода я собрал его и создал Jarfile, используя maven:

mvn clean install package 

Так что моя проблема в том, что когда я пытаюсь запустить исполняемый файл Jarfile, я получаю следующее сообщение об ошибке:

Error: Invalid or corrupt jarfile junit-1.2.jar

это мой файл pom.xml

<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>junit</groupId>
  <artifactId>junit</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>


<properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>


 <dependencies>

   <dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.13-beta-1</version>
   </dependency>

     </dependencies>

<build>
    <plugins>
        <plugin>
            <!-- Build an executable JAR -->
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <version>2.4</version>
            <configuration>
                <archive>
                    <manifest>
                        <mainClass>hello</mainClass>
                    </manifest>
                </archive>
            </configuration>
        </plugin>
    </plugins>
</build>


</project>

А это мой файл MANIFEST.MF:

Manifest-Version: 1.0
Archiver-Version: Plexus Archiver
Built-By: jenkins
Created-By: Apache Maven 3.6.0
Build-Jdk: 1.8.0_191
Main-Class: hello

Спасибо за вашу помощь.

...