I cannot duplicate this particular problem, but there are some build errors related to dependency resolution:
marvin:~/tmp$ git clone git://github.com/Jasig/cas.git Cloning into 'cas'... remote: Counting objects: 58437, done. remote: Compressing objects: 100% (16578/16578), done. remote: Total 58437 (delta 27430), reused 57975 (delta 27146) Receiving objects: 100% (58437/58437), 17.79 MiB | 4.20 MiB/s, done. Resolving deltas: 100% (27430/27430), done. marvin:~/tmp$ cd cas marvin:~/tmp/cas$ git checkout v3.3.3 marvin:~/tmp/cas$ mvn -DskipTests clean package ... [INFO] ------------------------------------------------------------------------ [INFO] Reactor Summary: [INFO] [INFO] JA-SIG Central Authentication Service ............. SUCCESS [0.914s] [INFO] JA-SIG CAS Core ................................... SUCCESS [4.762s] [INFO] JA-SIG CAS Generic Support ........................ SUCCESS [1.251s] [INFO] JA-SIG CAS JDBC Support ........................... SUCCESS [0.604s] [INFO] JA-SIG CAS LDAP Support ........................... SUCCESS [1.370s] [INFO] JA-SIG CAS Legacy Support ......................... SUCCESS [0.953s] [INFO] JA-SIG CAS OpenId Support ......................... SUCCESS [1.250s] [INFO] JA-SIG CAS RADIUS Support ......................... SUCCESS [1.263s] [INFO] JA-SIG CAS SPNEGO/NTLM Support .................... SUCCESS [1.397s] [INFO] JA-SIG CAS Trusted User Support ................... SUCCESS [1.201s] [INFO] JA-SIG CAS X.509 Client Certificate Support ....... SUCCESS [1.672s] [INFO] JA-SIG CAS JBoss Cache Integration ................ FAILURE [0.927s] [INFO] JA-SIG CAS BerkeleyDB Integration ................. SKIPPED [INFO] JA-SIG CAS Memcached Integration .................. SKIPPED [INFO] JA-SIG CAS Restlet Integration .................... SKIPPED [INFO] JA-SIG CAS Web Application ........................ SKIPPED [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 18.044s [INFO] Finished at: Wed Jan 16 09:36:56 EST 2013 [INFO] Final Memory: 94M/332M [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal on project cas-server-integration-jboss: Could not resolve dependencies for project org.jasig.cas:cas-server-integration-jboss:jar:3.3.3: Failed to collect dependencies for [org.jasig.cas:cas-server-core:jar:3.3.3 (compile), org.jboss.cache:jbosscache-core:jar:2.1.1.GA (compile), org.inspektr:inspektr-core:jar:0.7.0 (compile), commons-lang:commons-lang:jar:2.2 (runtime), commons-logging:commons-logging:jar:1.1 (compile), junit:junit:jar:3.8.1 (test), org.springframework:spring-test:jar:2.5.6 (test), log4j:log4j:jar:1.2.15 (test), org.springframework:spring-webflow:jar:1.0.5 (compile), javax.servlet:servlet-api:jar:2.4 (provided)]: Failed to read artifact descriptor for org.jboss.cache:jbosscache-core:jar:2.1.1.GA: Could not transfer artifact org.jboss.cache:jbosscache-core:pom:2.1.1.GA from/to jboss-maven2 (http://repository.jboss.com/maven2): Access denied to: http://repository.jboss.com/maven2/org/jboss/cache/jbosscache-core/2.1.1.GA/jbosscache-core-2.1.1.GA.pom -> [Help 1] It's simply a fact of depending on artifacts that are not in Maven central that things move around and sometimes disappear. The JBoss Maven repository is notorious for artifacts mysteriously moving or disappearing altogether. It doesn't help that you're building a version that's over 3 years old. In any case it appears the issue you're encountering is not related to the particular issue above. Additionally, I have the impression based on your output that you are building an overlay, not the original CAS source. If that is the case you should head over to cas-user and provide more information about what you're doing. M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-dev
