Maven 2 可能會令人沮喪實驗和快速原型製作。為每個依賴項建立 pom.xml 檔案並安裝第 3 方庫是一個繁瑣的過程。本文探討如何在建置類別路徑中包含位於特定目錄 (/lib) 中的 jar,而無需明確安裝。
各種線上解決方案建議將相依性安裝到本機儲存庫或在 pom.xml 中指定「系統」範圍。但是,這兩種方法都有缺點:
透過將儲存庫新增至具有特定結構的pom.xml,Maven將搜尋專案目錄中的 jars:
<repository> <id>repo</id> <releases> <enabled>true</enabled> <checksumPolicy>ignore</checksumPolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> <url>file://${project.basedir}/repo</url> </repository>
不要手動建立目錄結構,而是使用下列指令將 jar安裝為工件:
mvn install:install-file -DlocalRepositoryPath=repo -DcreateChecksum=true -Dpackaging=jar -Dfile=[your-jar] -DgroupId=[...] -DartifactId=[...] -Dversion=[...]
要確保目標套件包含所有依賴項,請使用 Assembly 或OneJar 外掛程式。 OneJar 透過其簡單的文件簡化了此過程。
以上是如何將 JAR 新增至 Maven 2 建置類別路徑而不安裝它們?的詳細內容。更多資訊請關注PHP中文網其他相關文章!