ฉันเปลี่ยนจาก Netbeans เป็น Eclipse IDE สำหรับแอปพลิเคชัน Java และการดีบักระยะไกล ตัวช่วยสร้างโครงการ Maven สร้างโครงการจาวาด้วย pom.xml และ build.xml
<?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 - เวอร์ชัน
อาปาเช่ มาเวน 3.6.3
แสดงรายการเวอร์ชัน maven ปัจจุบัน รุ่นนี้ยังเชื่อมโยงกับการตั้งค่าของ maven ภายใน IDE
งานวิจัยบางชิ้นพบว่า 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 ปัจจุบันได้อย่างไร
Eclipse เปลี่ยน settings.xml อย่างไรเมื่ออัพเกรด maven
เมื่อฉันลบปลั๊กอินทั้งหมด จะไม่มีข้อผิดพลาดเกิดขึ้นและ .jar จะถูกดำเนินการกับเป้าหมาย สิ่งนี้นำไปสู่คำถามอื่น: ปลั๊กอินนี้ทำอะไรเมื่อโปรแกรมทำงานได้ดีหากไม่มีปลั๊กอินเหล่านี้