如何在IntelliJ中使用本地Maven存储库

时间:2019-02-07 23:20:24

标签: intellij-idea maven-2

我想使用IntelliJ提供的本地仓库向Maven项目添加几个jar文件,但是我不知道如何。我试图查看apache.org上的指南,但对我而言它们仍然不清楚。

我从指南中收集到的信息是,我必须在pom.xml中放入类似的内容...

...
  <build>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-install-plugin</artifactId>
        <version>2.4</version>
        <executions>
            <execution>
                <id>cb-1.12</id>
                <goals>
                    <goal>install-file</goal>
                </goals>
                <configuration>
                    <file>F:\path\to\file.jar</file>
                    <groupId>agroup</groupId>
                    <artifactId>anartifact</artifactId>
                    <version>1.12</version>
                </configuration>
            </execution>
            <execution>
                <id>cb-1.11</id>
                <goals>
                    <goal>install-file</goal>
                </goals>
                <configuration>
                    <file>F:\path\to\file.jar</file>
                    <groupId>agroup</groupId>
                    <artifactId>anartifact</artifactId>
                    <version>1.11</version>
                </configuration>
            </execution>
            ...the same thing several more times...
        </executions>
    </plugin>
  </build>
...

我添加了该内容并尝试添加依赖项,但是IntelliJ无法解析它们。无论如何,我都试图运行它,以为也许插件必须先添加它们,但是除了找不到有关类的错误外,什么也没有发生。本地存储库文件夹也没有新组。我不确定还有什么尝试。

0 个答案:

没有答案