您好,登錄后才能下訂單哦!
如何理解使用idea對多模塊項目進行install遇到的問題,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
此時為2019年8月22日晚上11點27分。
跟著黑馬程序員關于品優購項目開發時,對pinyougou-servergoods-interface進行maven install時,出現了install失敗。具體異常如下:
一、'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing.
[WARNING] [WARNING] Some problems were encountered while building the effective model for com.xxx.xxx:xxxx:jar:0.0.1-SNAPSHOT [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 72, column 12 [WARNING] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. [WARNING] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects. [WARNING]
對照官網用法:http://maven.apache.org/plugins/maven-compiler-plugin/usage.html
起初配置:
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${java.version}</source> <target>${java.version}</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> </plugins> </build> * ${java.version} 為1.8 ${project.build.sourceEncoding} 為UTF-8
該問題解決辦法是需要置頂maven版本,解決辦法:
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> </plugins> </build>
二、Failed to execute goal on project pinyougou-sellergoods-interface: Could not resolve dependencies for project cn.pinyougou:pinyougou-sellergoods-interface:jar:1.0-SNAPSHOT: Failed to collect dependencies at cn.pinyougou:pinyougou-pojo:jar:1.0-SNAPSHOT。
分析:我的pinyougou-sellergoods-interface是依賴于pinyougou:pinyougou-pojo,已經在pinyougou-sellergoods-interface的pom.xml文件中引入了pinyougou:pinyougou-pojo的依賴,但是使用maven的install命令還是打包不了jar包。解決方案是:
將父工程使用install打包,出錯是必須的。因為還有其他子模塊沒有設定好依賴,暫時不管;
再使用maven的clean命令將父工程清除一下;
最后對需要打包的子模塊使用maven的install命令即可。
<!--spring web依賴--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <!-- 去除內嵌tomcat --> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> <!--<scope>provided</scope>--> </dependency>
clean --- > install即可。
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。