第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

請(qǐng)問這個(gè)怎么辦

D:\Program Files\Java\jdk1.8.0_172\bin\java.exe" -Dmaven.multiModuleProjectDirectory=C:\Users\wconcept\Desktop\miaosha "-Dmaven.home=D:\Program Files\JetBrains\IntelliJ IDEA 2018.2\plugins\maven\lib\maven3" -Didea.modules.paths.file=C:\Users\wconcept\.IntelliJIdea2018.2\system\Maven\idea-projects-state-96f3190.properties -Dclassworlds.conf=C:\Users\wconcept\AppData\Local\Temp\idea-11367-mvn.conf "-javaagent:D:\Program Files\JetBrains\IntelliJ IDEA 2018.2\lib\idea_rt.jar=63025:D:\Program Files\JetBrains\IntelliJ IDEA 2018.2\bin" -Dfile.encoding=UTF-8 -classpath "D:\Program Files\JetBrains\IntelliJ IDEA 2018.2\plugins\maven\lib\maven3\boot\plexus-classworlds-2.5.2.jar" org.codehaus.classworlds.Launcher -Didea.version=2018.2.1 mybatis-generator:generator

[INFO] Scanning for projects...

[WARNING] The POM for org.eclipse.m2e:lifecycle-mapping:jar:1.0.0 is missing, no dependency information available

[WARNING] Failed to retrieve plugin descriptor for org.eclipse.m2e:lifecycle-mapping:1.0.0: Plugin org.eclipse.m2e:lifecycle-mapping:1.0.0 or one of its dependencies could not be resolved: Failure to find org.eclipse.m2e:lifecycle-mapping:jar:1.0.0 in http://maven.aliyun.com/nexus/content/groups/public/ was cached in the local repository, resolution will not be reattempted until the update interval of alimaven has elapsed or updates are forced

[INFO] ------------------------------------------------------------------------

[INFO] BUILD FAILURE

[INFO] ------------------------------------------------------------------------

[INFO] Total time: 1.077 s

[INFO] Finished at: 2019-01-04T16:47:47+08:00

[INFO] Final Memory: 20M/205M

[INFO] ------------------------------------------------------------------------

[ERROR] Could not find goal 'generator' in plugin org.mybatis.generator:mybatis-generator-maven-plugin:1.3.7 among available goals generate, help -> [Help 1]

[ERROR]?

[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.

[ERROR] Re-run Maven using the -X switch to enable full debug logging.

[ERROR]?

[ERROR] For more information about the errors and possible solutions, please read the following articles:

[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoNotFoundException


Process finished with exit code 1


正在回答

3 回答

建議你先學(xué)一下maven,一天差不多就夠了,里面講了怎么修改成阿里的鏡像

0 回復(fù) 有任何疑惑可以回復(fù)我~

說實(shí)話,pom看不出問題,不如把maven的鏡像改成阿里的試試,可能是沒有下載到呢

0 回復(fù) 有任何疑惑可以回復(fù)我~
<?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>com.miaosha.springboot</groupId>
??<artifactId>miaosha</artifactId>
??<version>1.0-SNAPSHOT</version>

??<name>miaosha</name>
??<!--?FIXME?change?it?to?the?project's?website?-->
??<url>http://www.example.com</url>
????<parent>
????????<groupId>org.springframework.boot</groupId>
????????<artifactId>spring-boot-starter-parent</artifactId>
????????<version>2.1.1.RELEASE</version>
????</parent>

????<!--?Add?typical?dependencies?for?a?web?application?-->


??<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.11</version>
??????<scope>test</scope>
????</dependency>
??????????<dependency>
??????????????<groupId>org.springframework.boot</groupId>
??????????????<artifactId>spring-boot-starter-web</artifactId>
??????????</dependency>
????<dependency>
??????<groupId>mysql</groupId>
??????<artifactId>mysql-connector-java</artifactId>
??????<version>8.0.12</version>
????</dependency>
????<dependency>
??????<groupId>com.alibaba</groupId>
??????<artifactId>druid</artifactId>
??????<version>1.1.10</version>
????</dependency>
????<dependency>
??????<groupId>org.mybatis.spring.boot</groupId>
??????<artifactId>mybatis-spring-boot-starter</artifactId>
??????<version>1.3.2</version>
????</dependency>
??</dependencies>

??<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.1.0</version>
????????</plugin>
????????<plugin>
??????????<artifactId>maven-install-plugin</artifactId>
??????????<version>2.5.2</version>
????????</plugin>
????????<plugin>
??????????<artifactId>maven-deploy-plugin</artifactId>
??????????<version>2.8.1</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>2.8.1</version>
????????</plugin>
????????<plugin>
??????????<groupId>org.mybatis.generator</groupId>
??????????<artifactId>mybatis-generator-maven-plugin</artifactId>
??????????<version>1.3.7</version>
??????????<dependencies>
????????????<dependency>
??????????????<groupId>org.mybatis.generator</groupId>
??????????????<artifactId>mybatis-generator-core</artifactId>
??????????????<version>1.3.7</version>
????????????</dependency>
????????????<dependency>
??????????????<groupId>mysql</groupId>
??????????????<artifactId>mysql-connector-java</artifactId>
??????????????<version>8.0.12</version>
????????????</dependency>
??????????</dependencies>
??????????<executions>
????????????<execution>
??????????????<id>mybatis?generator</id>
??????????????<phase>package</phase>
??????????????<goals>
????????????????<goal>generate</goal>
??????????????</goals>
????????????</execution>
??????????</executions>
??????????<configuration>
????????????<!--允許移動(dòng)生成-->
????????????<verbose>true</verbose>
????????????<!--允許自動(dòng)覆-->
????????????<overwrite>true</overwrite>
????????????<configurationFile>
??????????????src/main/java/resources/mybatis-generator.xml
????????????</configurationFile>
??????????</configuration>


????????</plugin>
??????</plugins>
????</pluginManagement>
??</build>
</project>


0 回復(fù) 有任何疑惑可以回復(fù)我~
#1

一個(gè)神仙 提問者

這是我的pom文件
2019-01-04 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消

請(qǐng)問這個(gè)怎么辦

我要回答 關(guān)注問題
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)