maven빌드시오류
- 작성자 :
- 김*규
- 작성일 :
- 2011-01-25 15:40:19
- 조회수 :
- 3,206
- 구분 :
- 개발환경
- 진행상태 :
- 완료
Q
안녕하세요.**
초보자가이드에 따라 하던중 빌드에서 오류뜨네요.
-----------------------------------------------
porm.xml 파일에서.
Multiple annotations found at this line:
- Missing artifact egovframework.rte:egovframework.rte.fdl.cmmn:jar:1.0.0-SNAPSHOT:compile
- Missing artifact egovframework.rte:egovframework.rte.fdl.property:jar:1.0.0-
SNAPSHOT:compile
- Missing artifact com.tmax.tibero:tibero-jdbc:jar:3.0:compile
- Missing artifact altibase:altibase-jdbc-driver:jar:5.1.3.18:compile
- Missing artifact egovframework.rte:egovframework.rte.ptl.mvc:jar:1.0.0-SNAPSHOT:compile
- Missing artifact egovframework.rte:egovframework.rte.fdl.idgnr:jar:1.0.0-SNAPSHOT:compile
- Missing artifact egovframework.rte:egovframework.rte.psl.dataaccess:jar:1.0.0-
SNAPSHOT:compile
- Missing artifact ojdbc:ojdbc:jar:14:compile
이런경고도 나오네요..
초보자가이드에 따라 하던중 빌드에서 오류뜨네요.
-----------------------------------------------
porm.xml 파일에서.
Multiple annotations found at this line:
- Missing artifact egovframework.rte:egovframework.rte.fdl.cmmn:jar:1.0.0-SNAPSHOT:compile
- Missing artifact egovframework.rte:egovframework.rte.fdl.property:jar:1.0.0-
SNAPSHOT:compile
- Missing artifact com.tmax.tibero:tibero-jdbc:jar:3.0:compile
- Missing artifact altibase:altibase-jdbc-driver:jar:5.1.3.18:compile
- Missing artifact egovframework.rte:egovframework.rte.ptl.mvc:jar:1.0.0-SNAPSHOT:compile
- Missing artifact egovframework.rte:egovframework.rte.fdl.idgnr:jar:1.0.0-SNAPSHOT:compile
- Missing artifact egovframework.rte:egovframework.rte.psl.dataaccess:jar:1.0.0-
SNAPSHOT:compile
- Missing artifact ojdbc:ojdbc:jar:14:compile
이런경고도 나오네요..
A
안녕하세요.. 김현규님..
가지고 계신 pom.xml에 최신 본이 아닌 것 같습니다.
우선.. <groupId> 가 "egovframework.rte"로 되어 있는 <dependency>들의 <version> 상에서.. "-SNAPSHOT"를 지워주십시오.
(<version>의 경우 1.0.0입니다. 혹.. 버전에 <properties>가 적용된 경우는 해당 properties값을 변경해 주시면 됩니다.)
두번째는 사용하지 않으시는 "com.tmax.tibero", "altibase", "ojdbc"에 대한 <dependency>를 지워주십시오..
그리고.. 실제로 사용하시는 JDBC Driver jar의 경우는 src/main/webapp/WEB-INF/lib에 넣으시면 됩니다. (ex: Oracle의 경우는 ojdbc14.jar)
그럼.. 즐거운 하루되십시오.
감사합니다.
가지고 계신 pom.xml에 최신 본이 아닌 것 같습니다.
우선.. <groupId> 가 "egovframework.rte"로 되어 있는 <dependency>들의 <version> 상에서.. "-SNAPSHOT"를 지워주십시오.
(<version>의 경우 1.0.0입니다. 혹.. 버전에 <properties>가 적용된 경우는 해당 properties값을 변경해 주시면 됩니다.)
두번째는 사용하지 않으시는 "com.tmax.tibero", "altibase", "ojdbc"에 대한 <dependency>를 지워주십시오..
그리고.. 실제로 사용하시는 JDBC Driver jar의 경우는 src/main/webapp/WEB-INF/lib에 넣으시면 됩니다. (ex: Oracle의 경우는 ojdbc14.jar)
그럼.. 즐거운 하루되십시오.
감사합니다.