2012-11-19 3 views
0

SSO 기능을 구현하려고하는데 모든 프로젝트와 pom.xml을 http://www.jasig.org/cas/download에서 다운로드했습니다.Maven이 CAS 서버를 구축하지 못했습니다.

그래서 maven 프로젝트를 얻었고 eclipse에서 기존 maven 프로젝트로 가져 왔습니다. 다음

나는 MVN CLEAN으로 프로젝트를 실행하고 실행하고

[INFO] Scanning for projects... 
Downloading: http://developer.ja-sig.org/maven2/org/jasig/parent/jasig-parent/21/jasig-parent-21.pom 
Downloading: http://repository.jboss.org/nexus/content/groups/public-jboss/org/jasig/parent/jasig-parent/21/jasig-parent-21.pom 
Downloading: http://repo.maven.apache.org/maven2/org/jasig/parent/jasig-parent/21/jasig-parent-21.pom 
[ERROR] The build could not read 1 project -> [Help 1] 
[ERROR] 
[ERROR] The project org.jasig.cas:cas-server:3.5.0 (D:\CAS\Single Sign On\cas-server-3.5.0-release\cas-server-3.5.0\pom.xml) has 1 error 
[ERROR]  Non-resolvable parent POM: Could not transfer artifact org.jasig.parent:jasig-parent:pom:21 from/to jasig-repository (http://developer.ja-sig.org/maven2): null to http://developer.ja-sig.org/maven2/org/jasig/parent/jasig-parent/21/jasig-parent-21.pom and 'parent.relativePath' points at wrong local POM @ line 22, column 11: UnresolvedAddressException -> [Help 2] 
[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/ProjectBuildingException 
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/UnresolvableModelException 

어떤 하나는 프록시 문제가 있음을 이야기로 오류가 발생하지 않는, 그래서 내가

로 프록시를 배치 할 Settings.XML의 파일을 변경
<proxy> 
    <id>123</id> 
    <active>true</active> 
    <protocol>http</protocol> 
    <username>[email protected]</username> 
    <password>xyz1233</password> 
    <host>proxy.com</host> 
    <port>80</port> 
    <nonProxyHosts>google.com</nonProxyHosts> 
</proxy> 

여전히 실행되고 있지 않습니다. 누군가 지적 할 수 있습니까?

답변

0

Maven Central에서 jasig-parent를 다운로드하지 않는 이유는 무엇입니까?

관련 문제