当我引用一个svn的maven项目时,我么maven projects下没有maven依赖,项目中也没有对应的jar。
pom.xml文件代码
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>meetmecarv2</artifactId>
<groupId>com.meetmecar</groupId>
<version>1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>meetmecar_test</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>meetmecar_test Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>com.meetmecar</groupId>
<artifactId>meetmecar-service</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
</dependency>
</dependencies>
<build>
<finalName>meetmecar_test</finalName>
</build>
</project>
请问我改怎么修改?
부모 프로젝트를 아이디어로 가져오지 않았을 수 있습니다. 아이디어는 부모의 pom을 찾기 위해 .m2/repository로 이동합니다. 부모
를 로컬 창고에 설치하지 않으면 사용할 수 없습니다. 부모의 pom을 찾으려면 의존하는 jar 패키지를 찾지 못할 수도 있습니다
패키지에 버전 번호가 없습니다
으아악버전이 작성되지 않았습니다
먼저 버전 번호를 입력한 다음 "Maven 프로젝트" 아래 왼쪽의 첫 번째 버튼을 클릭하여 종속성을 새로 고칩니다.