Maven 3.8.1 的 settings.xml

Maven 3.8.1 的 settings.xml

我从 Netbeans 切换到 Eclipse IDE 来开发 Java 应用程序和进行远程调试。Maven 项目向导使用 pom.xml 和 build.xml 生成了一个 Java 项目。

<?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>IntelligentHome</groupId>
  <artifactId>RaspberryPi</artifactId>
  <version>0.0.1-SNAPSHOT</version>

  <name>RaspberryPi</name>
  <!-- FIXME change it to the project's website -->
  <url>http://www.example.com</url>

<!--
    <build>
      <plugins>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
               <archive>
                  <manifest>
                     <mainClass>IntelligentHome.RaspberryPi.App</mainClass>
                  </manifest>
               </archive>
            </configuration>
         </plugin>
      </plugins>
   </build>
-->

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.7</maven.compiler.source>
    <maven.compiler.target>1.7</maven.compiler.target>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

<pluginRepositories>
   <pluginRepository> 
    <id>maven2</id> 
    <url>https://repo.maven.apache.org/maven2/</url> 
  </pluginRepository> 
</pluginRepositories>

  <build>
    <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
      <plugins>
        <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
        <plugin>
          <artifactId>maven-clean-plugin</artifactId>
          <version>3.1.0</version>
        </plugin>
        <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
        <plugin>
          <artifactId>maven-resources-plugin</artifactId>
          <version>3.0.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>3.8.0</version>
        </plugin>
        <plugin>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.22.1</version>
        </plugin>
        <plugin>
          <artifactId>maven-jar-plugin</artifactId>
          <version>3.0.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-install-plugin</artifactId>
          <version>2.5.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-deploy-plugin</artifactId>
          <version>2.8.2</version>
        </plugin>
        <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
        <plugin>
          <artifactId>maven-site-plugin</artifactId>
          <version>3.7.1</version>
        </plugin>
        <plugin>
          <artifactId>maven-project-info-reports-plugin</artifactId>
          <version>3.0.0</version>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>

使用 ANT 构建执行文件会导致此错误

[artifact:mvn] [INFO] 解析“org.apache.maven.plugins:maven-resources-plugin”版本时出错:插件需要 Maven 版本 3.0

执行

mvn -版本 Apache Maven 3.6.3

列出当前的 Maven 版本。此版本也链接到 IDE 中的 Maven 首选项中 在此处输入图片描述

一些研究表明,maven2 不再维护,不应使用。出于某种原因,文件夹 ./m2 仍然在我的主驱动器中,并用作 maven 构建的用户设置 在此处输入图片描述

显然使用的 settings.xml 内容为

 <settings xmlns="https://maven.apache.org/SETTINGS/1.0.0"
      xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="https://maven.apache.org/SETTINGS/1.0.0
                          https://maven.apache.org/xsd/settings-1.0.0.xsd">
      <localRepository/>
      <interactiveMode/>
      <offline/>
      <pluginGroups/>
      <servers/>
      <mirrors>
        <mirror>
          <id>centralhttps</id>
          <mirrorOf>central</mirrorOf>
          <name>Maven central https</name>
          <url>http://insecure.repo1.maven.org/maven2/</url>
        </mirror>
      </mirrors>
      <proxies/>
      <profiles/>
      <activeProfiles/>
   </settings>

将某些内容链接到 maven2 的一行。

如何将 settings.xml 更改为当前 maven 版本?Maven 升级后 Eclipse 如何更改 settings.xml?

当我删除所有插件时,没有出现任何错误,并且 .jar 在目标上执行。这引出了另一个问题:当程序在没有这些插件的情况下正常运行时,这些插件会做什么?

答案1

文件夹 $HOME/.m2 用于 maven2 和 maven3。多么令人困惑?:-) 除非您正在做一些特殊的事情,否则您可以简单地删除您的 settings.xml 文件。

虽然你没有问,但除非你对 Eclipse 有特殊需求,否则我建议使用 IntelliJ 社区版。Eclipse 必须将 pom.xml 导入到其自己的配置中。Netbeans 和 IntelliJ 都可以使用 mvn,而无需此步骤。还有一个特殊的 Eclipse maven 插件,如果你继续使用 Eclipse,你可能想要使用它。

<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>

话虽如此,我已经有几年没有接触过 Eclipse 了……

相关内容