2015-01-11 3 views
2

M2eclipse 플러그인이 설치된 Eclipse에 maven 프로젝트를 가져 오려고합니다. 이 2 가지 오류가 발생합니다 :실행을 처리하는 마켓 플레이스 항목이 없습니다.

"이클립스의 /pom.xml에서 실행 디폴트 컴파일을 처리하는 마켓 플레이스 항목이 없습니다. 자세한 정보는 도움말을 참조하십시오."

"Eclipse의 /pom.xml에서 default-testCompile 실행을 처리 할 마켓 플레이스 항목이 없습니다. 자세한 정보는 도움말을 참조하십시오."

누군가 여기서 내게 어떤 문제가 있다고 말할 수 있습니까?

은 "당신이 m2eclipse에-스칼라 커넥터를 설치할 필요가 상자 밖으로 스칼라를 지원하지 않는 기본 Maven 플러그인, 그래서."

<?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" 
 
\t xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 
 
\t <modelVersion>4.0.0</modelVersion> 
 
\t <groupId>com.tempus</groupId> 
 
\t <artifactId>inscription</artifactId> 
 
\t <name>Inscription</name> 
 
\t <packaging>war</packaging> 
 
\t <version>1.0.0-BUILD-SNAPSHOT</version> 
 
\t <properties> 
 
\t \t <java-version>1.6</java-version> 
 
\t \t <org.springframework-version>3.1.1.RELEASE</org.springframework-version> 
 
\t \t <org.aspectj-version>1.6.10</org.aspectj-version> 
 
\t \t <org.slf4j-version>1.6.6</org.slf4j-version> 
 
\t </properties> 
 
\t <dependencies> 
 
\t \t <!-- Spring --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.springframework</groupId> 
 
\t \t \t <artifactId>spring-context</artifactId> 
 
\t \t \t <version>${org.springframework-version}</version> 
 
\t \t \t <exclusions> 
 
\t \t \t \t <!-- Exclude Commons Logging in favor of SLF4j --> 
 
\t \t \t \t <exclusion> 
 
\t \t \t \t \t <groupId>commons-logging</groupId> 
 
\t \t \t \t \t <artifactId>commons-logging</artifactId> 
 
\t \t \t \t </exclusion> 
 
\t \t \t </exclusions> 
 
\t \t </dependency> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.springframework</groupId> 
 
\t \t \t <artifactId>spring-webmvc</artifactId> 
 
\t \t \t <version>${org.springframework-version}</version> 
 
\t \t </dependency> 
 

 
\t \t <!-- AspectJ --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.aspectj</groupId> 
 
\t \t \t <artifactId>aspectjrt</artifactId> 
 
\t \t \t <version>${org.aspectj-version}</version> 
 
\t \t </dependency> 
 

 
\t \t <!-- Logging --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.slf4j</groupId> 
 
\t \t \t <artifactId>slf4j-api</artifactId> 
 
\t \t \t <version>${org.slf4j-version}</version> 
 
\t \t </dependency> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.slf4j</groupId> 
 
\t \t \t <artifactId>jcl-over-slf4j</artifactId> 
 
\t \t \t <version>${org.slf4j-version}</version> 
 
\t \t \t <scope>runtime</scope> 
 
\t \t </dependency> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.slf4j</groupId> 
 
\t \t \t <artifactId>slf4j-log4j12</artifactId> 
 
\t \t \t <version>${org.slf4j-version}</version> 
 
\t \t \t <scope>runtime</scope> 
 
\t \t </dependency> 
 
\t \t <dependency> 
 
\t \t \t <groupId>log4j</groupId> 
 
\t \t \t <artifactId>log4j</artifactId> 
 
\t \t \t <version>1.2.15</version> 
 
\t \t \t <exclusions> 
 
\t \t \t \t <exclusion> 
 
\t \t \t \t \t <groupId>javax.mail</groupId> 
 
\t \t \t \t \t <artifactId>mail</artifactId> 
 
\t \t \t \t </exclusion> 
 
\t \t \t \t <exclusion> 
 
\t \t \t \t \t <groupId>javax.jms</groupId> 
 
\t \t \t \t \t <artifactId>jms</artifactId> 
 
\t \t \t \t </exclusion> 
 
\t \t \t \t <exclusion> 
 
\t \t \t \t \t <groupId>com.sun.jdmk</groupId> 
 
\t \t \t \t \t <artifactId>jmxtools</artifactId> 
 
\t \t \t \t </exclusion> 
 
\t \t \t \t <exclusion> 
 
\t \t \t \t \t <groupId>com.sun.jmx</groupId> 
 
\t \t \t \t \t <artifactId>jmxri</artifactId> 
 
\t \t \t \t </exclusion> 
 
\t \t \t </exclusions> 
 
\t \t \t <scope>runtime</scope> 
 
\t \t </dependency> 
 
\t \t <!-- @Inject --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>javax.inject</groupId> 
 
\t \t \t <artifactId>javax.inject</artifactId> 
 
\t \t \t <version>1</version> 
 
\t \t </dependency> 
 

 
\t \t <!-- Servlet --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>javax.servlet</groupId> 
 
\t \t \t <artifactId>servlet-api</artifactId> 
 
\t \t \t <version>2.5</version> 
 
\t \t \t <scope>provided</scope> 
 
\t \t </dependency> 
 
\t \t <dependency> 
 
\t \t \t <groupId>javax.servlet.jsp</groupId> 
 
\t \t \t <artifactId>jsp-api</artifactId> 
 
\t \t \t <version>2.1</version> 
 
\t \t \t <scope>provided</scope> 
 
\t \t </dependency> 
 
\t \t <dependency> 
 
\t \t \t <groupId>javax.servlet</groupId> 
 
\t \t \t <artifactId>jstl</artifactId> 
 
\t \t \t <version>1.2</version> 
 
\t \t </dependency> 
 

 
\t \t <!-- Test --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>junit</groupId> 
 
\t \t \t <artifactId>junit</artifactId> 
 
\t \t \t <version>4.7</version> 
 
\t \t \t <scope>test</scope> 
 
\t \t </dependency> 
 
\t \t <!-- Hibernate --> 
 
\t \t <!-- <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> 
 
\t \t \t <version>4.1.7.Final</version> </dependency> --> 
 

 
\t \t <dependency> 
 
\t \t \t <groupId>org.hibernate</groupId> 
 
\t \t \t <artifactId>hibernate-core</artifactId> 
 
\t \t \t <version>4.3.1.Final</version> 
 
\t \t </dependency> 
 
\t \t <!-- Entity Manager --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.hibernate</groupId> 
 
\t \t \t <artifactId>hibernate-entitymanager</artifactId> 
 
\t \t \t <version>4.3.0.Final</version> 
 
\t \t </dependency> 
 
\t \t <!-- Commons pool --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>commons-pool</groupId> 
 
\t \t \t <artifactId>commons-pool</artifactId> 
 
\t \t \t <version>1.6</version> 
 
\t \t </dependency> 
 

 
\t \t <!-- javax validation --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>javax.validation</groupId> 
 
\t \t \t <artifactId>validation-api</artifactId> 
 
\t \t \t <version>1.1.0.Final</version> 
 
\t \t </dependency> 
 

 
\t \t <dependency> 
 
\t \t \t <groupId>org.hibernate</groupId> 
 
\t \t \t <artifactId>hibernate-validator</artifactId> 
 
\t \t \t <version>4.3.1.Final</version> 
 
\t \t </dependency> 
 

 
\t \t <!-- <dependency> <groupId>org.hibernate.common</groupId> <artifactId>hibernate-commons-annotations</artifactId> 
 
\t \t \t <version>4.0.4.Final</version> </dependency> --> 
 

 

 
\t \t <!-- Ajouter --> 
 
\t \t <!-- DPCP --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>commons-dbcp</groupId> 
 
\t \t \t <artifactId>commons-dbcp</artifactId> 
 
\t \t \t <version>20030825.184428</version> 
 
\t \t </dependency> 
 
\t \t <!-- Fin --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.javassist</groupId> 
 
\t \t \t <artifactId>javassist</artifactId> 
 
\t \t \t <version>3.18.1-GA</version> 
 
\t \t </dependency> 
 
\t \t <!-- Mysql --> 
 
\t \t <!-- <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> 
 
\t \t \t <version>5.1.15</version> </dependency> --> 
 
\t \t <!-- Transaction --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.springframework</groupId> 
 
\t \t \t <artifactId>spring-tx</artifactId> 
 
\t \t \t <version>4.0.3.RELEASE</version> 
 
\t \t </dependency> 
 
\t \t <!-- Oracle --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>com.oracle</groupId> 
 
\t \t \t <artifactId>ojdbc14</artifactId> 
 
\t \t \t <version>10.2.0.1.0</version> 
 
\t \t </dependency> 
 
\t \t <!-- Ajouter --> 
 
\t \t <!-- Spring ORM --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.springframework</groupId> 
 
\t \t \t <artifactId>spring-orm</artifactId> 
 
\t \t \t <version>${org.springframework-version}</version> 
 
\t \t </dependency> 
 

 
\t \t <!-- Spring Bean --> 
 

 
\t \t <dependency> 
 
\t \t \t <groupId>org.springframework</groupId> 
 
\t \t \t <artifactId>spring-beans</artifactId> 
 
\t \t \t <version>${org.springframework-version}</version> 
 
\t \t </dependency> 
 
\t \t <!-- AOP --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.springframework</groupId> 
 
\t \t \t <artifactId>spring-aop</artifactId> 
 
\t \t \t <version>${org.springframework-version}</version> 
 
\t \t </dependency> 
 
\t \t <!-- ASM --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.springframework</groupId> 
 
\t \t \t <artifactId>spring-asm</artifactId> 
 
\t \t \t <version>${org.springframework-version}</version> 
 
\t \t </dependency> 
 
\t \t <!-- Spring Expression --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.springframework</groupId> 
 
\t \t \t <artifactId>spring-expression</artifactId> 
 
\t \t \t <version>${org.springframework-version}</version> 
 
\t \t </dependency> 
 
\t \t <!-- TOMCAT --> 
 
\t \t <!-- Spring Security --> 
 
\t \t <dependency> 
 
\t \t  <groupId>org.springframework.security</groupId> 
 
\t \t  <artifactId>spring-security-web</artifactId> 
 
\t \t \t <version>3.1.3.RELEASE</version> 
 
\t \t  </dependency> 
 
\t \t  <dependency> 
 
\t \t  <groupId>org.springframework.security</groupId> 
 
\t \t \t <artifactId>spring-security-config</artifactId> 
 
\t \t \t <version>3.1.3.RELEASE</version> 
 
\t \t  </dependency> 
 
\t \t \t <dependency> 
 
\t \t \t <groupId>org.springframework.security</groupId> 
 
\t \t \t <artifactId>spring-security-core</artifactId> 
 
\t \t \t  <version>3.1.3.RELEASE</version> 
 
\t \t \t </dependency> 
 
\t \t <!-- Fin spring --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.springframework</groupId> 
 
\t \t \t <artifactId>spring-instrument-tomcat</artifactId> 
 
\t \t \t <version>4.0.3.RELEASE</version> 
 
\t \t </dependency> 
 
\t \t <!-- Instrument --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.springframework</groupId> 
 
\t \t \t <artifactId>spring-instrument</artifactId> 
 
\t \t \t <version>${org.springframework-version}</version> 
 
\t \t </dependency> 
 

 
\t \t <!-- Apache Commons FileUpload --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>commons-fileupload</groupId> 
 
\t \t \t <artifactId>commons-fileupload</artifactId> 
 
\t \t \t <version>1.3.1</version> 
 
\t \t </dependency> 
 

 
\t \t <!-- Apache Commons IO --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>commons-io</groupId> 
 
\t \t \t <artifactId>commons-io</artifactId> 
 
\t \t \t <version>2.4</version> 
 
\t \t </dependency> 
 
\t \t <!-- Poi excell --> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.apache.poi</groupId> 
 
\t \t \t <artifactId>poi</artifactId> 
 
\t \t \t <version>3.10-FINAL</version> 
 
\t \t </dependency> 
 
\t \t <dependency> 
 
\t \t \t <groupId>org.apache.poi</groupId> 
 
\t \t \t <artifactId>poi-ooxml</artifactId> 
 
\t \t \t <version>3.10-FINAL</version> 
 
\t \t </dependency> 
 
\t </dependencies> 
 
\t <build> 
 
\t \t <plugins> 
 
\t \t \t <plugin> 
 
\t \t \t \t <artifactId>maven-eclipse-plugin</artifactId> 
 
\t \t \t \t <version>2.9</version> 
 
\t \t \t \t <configuration> 
 
\t \t \t \t \t <additionalProjectnatures> 
 
\t \t \t \t \t \t <projectnature>org.springframework.ide.eclipse.core.springnature</projectnature> 
 
\t \t \t \t \t </additionalProjectnatures> 
 
\t \t \t \t \t <additionalBuildcommands> 
 
\t \t \t \t \t \t <buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand> 
 
\t \t \t \t \t </additionalBuildcommands> 
 
\t \t \t \t \t <downloadSources>true</downloadSources> 
 
\t \t \t \t \t <downloadJavadocs>true</downloadJavadocs> 
 
\t \t \t \t </configuration> 
 
\t \t \t </plugin> 
 
\t \t \t <plugin> 
 
\t \t \t \t <groupId>org.apache.maven.plugins</groupId> 
 
\t \t \t \t <artifactId>maven-compiler-plugin</artifactId> 
 
\t \t \t \t <version>2.5.1</version> 
 
\t \t \t \t <configuration> 
 
\t \t \t \t \t <source>1.6</source> 
 
\t \t \t \t \t <target>1.6</target> 
 
\t \t \t \t \t <compilerArgument>-Xlint:all</compilerArgument> 
 
\t \t \t \t \t <showWarnings>true</showWarnings> 
 
\t \t \t \t \t <showDeprecation>true</showDeprecation> 
 
\t \t \t \t </configuration> 
 
\t \t \t </plugin> 
 
\t \t \t <plugin> 
 
\t \t \t \t <groupId>org.codehaus.mojo</groupId> 
 
\t \t \t \t <artifactId>exec-maven-plugin</artifactId> 
 
\t \t \t \t <version>1.2.1</version> 
 
\t \t \t \t <configuration> 
 
\t \t \t \t \t <mainClass>org.test.int1.Main</mainClass> 
 
\t \t \t \t </configuration> 
 
\t \t \t </plugin> 
 
\t \t </plugins> 
 
\t </build> 
 
</project>

답변

관련 문제