java在IDE

时间:2016-07-01 11:57:21

标签: java maven netbeans

我可能完全错过了maven如何工作,但我有以下问题。 我用netbeans中的maven创建了一个应用程序。它运行在netbeans很好,但是当我进行Clean和Build时它只是编译我的源文件,并且maven依赖项不在jar文件中,因此无法在命令窗口中运行。

这是我的pom文件。它有构建部分,依赖关系在mainfest.mf

的类路径中
<?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>com.ibh</groupId>
<artifactId>SafePassword</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <version>2.4</version>
            <configuration>
                <archive>
                    <manifest>
                        <addClasspath>true</addClasspath>
                        <mainClass>com.ibh.safepassword.TestMain</mainClass>
                    </manifest>
                </archive>
                <descriptorRefs>
                  <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
            </configuration>
        </plugin>
    </plugins>
</build>

<dependencies>
    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-entitymanager</artifactId>
        <version>4.3.1.Final</version>
    </dependency>
    <dependency>
        <groupId>org.hibernate.javax.persistence</groupId>
        <artifactId>hibernate-jpa-2.1-api</artifactId>
        <version>1.0.0.Final</version>
    </dependency>
    <dependency>
        <groupId>com.h2database</groupId>
        <artifactId>h2</artifactId>
        <version>1.4.192</version>
        <type>jar</type>
    </dependency>
    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-validator</artifactId>
        <version>4.2.0.Final</version>
        <type>jar</type>
    </dependency>
    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-validator-annotation-processor</artifactId>
        <version>4.2.0.Final</version>
        <type>jar</type>
    </dependency>
</dependencies>
<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
</properties>

我来自c#world,认为maven与NuGet类似,只在DEV阶段玩游戏,但在编译时一切都在那里......

缺少什么?如何执行jar文件以使其他依赖项到位,以便应用程序可以运行?

感谢您的提示!

修改

我不同意这个问题与你所指的问题完全重复。 因为我可以阅读这些许多解决方案maven非常复杂,每个问题都没有一个解决方案

2 个答案:

答案 0 :(得分:0)

默认情况下,Maven构建一个基本上是库的jar - 它不包含它的依赖项。如果要包含依赖项,创建可运行的应用程序,则有两个主要选项:

  1. 使用允许它的一些插件捆绑一个jar中的所有内容,例如maven-shade-plugin。然后你可以运行这个jar。
  2. 使用jar和所有依赖项创建一个分发包:
    1. 使用旨在作为分发的包装,例如warear - 如果其中一个符合您的意图
    2. 否则使用通用捆绑插件,例如标准maven-assembly-plugin或更高级的appassembler-maven-plugin

答案 1 :(得分:-1)

这对我有用

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <executions>
            <execution>
                <phase>install</phase>
                <goals>
                    <goal>copy-dependencies</goal>
                </goals>
                <configuration>
                    <outputDirectory>${project.build.directory}/lib</outputDirectory>
                </configuration>
            </execution>
        </executions>
    </plugin>