मैं एक छोटे से घर परियोजना के लिए एक निष्पादन योग्य जार उत्पन्न करने की कोशिश कर रहा हूं जिसे "लॉगमैनगर" कहा जाता है, मावेन का उपयोग करना, बस इस तरह से:
मैं मावेन का उपयोग कर निर्भरता के साथ एक निष्पादन योग्य जार कैसे बना सकता हूं?
मैंने वहां दिखाए गए स्निपेट को pom.xml में जोड़ा, और mvan असेंबली: असेंबली को चलाया। यह logmanager / लक्ष्य में दो जार फाइलें उत्पन्न करता है: logmanager-0.1.0.jar, और logmanager-0.1.0-जार-साथ-निर्भरताएँ ।jar। पहले जार पर डबल क्लिक करने पर मुझे एक त्रुटि मिलती है:
Could not find the main class: com.gorkwobble.logmanager.LogManager. Program will exit.
जब मैं जार के साथ निर्भरताएँ को डबल-क्लिक करता हूँ, तो थोड़ी अलग त्रुटि:
Failed to load Main-Class manifest attribute from: C:\EclipseProjects\logmanager\target\logmanager-0.1.0-jar-with-dependencies.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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gorkwobble</groupId>
<artifactId>logmanager</artifactId>
<name>LogManager</name>
<version>0.1.0</version>
<description>Systematically renames specified log files on a scheduled basis. Designed to help manage MUSHClient logging and prevent long, continuous log files.</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<!-- nothing here -->
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-4</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>com.gorkwobble.logmanager.LogManager</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- commons-lang -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
</dependency>
<!-- Quartz scheduler -->
<dependency>
<groupId>opensymphony</groupId>
<artifactId>quartz</artifactId>
<version>1.6.3</version>
</dependency>
<!-- Quartz 1.6.0 depends on commons collections -->
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.1</version>
</dependency>
<!-- Quartz 1.6.0 depends on commons logging -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1</version>
</dependency>
<!-- Quartz 1.6.0 requires JTA in non J2EE environments -->
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
<version>1.1</version>
<scope>runtime</scope>
</dependency>
<!-- junitx test assertions -->
<dependency>
<groupId>junit-addons</groupId>
<artifactId>junit-addons</artifactId>
<version>1.4</version>
<scope>test</scope>
</dependency>
<!-- junit dependency; FIXME: make this a separate POM -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.1</version>
</dependency>
</dependencies>
<dependencyManagement>
</dependencyManagement>
</project>