CAS 5.x搭建常见问题系列(3).Failure to find org.apereo.cas:cas-server-support-pm-jdbc:jar:5.1.9

错误内容

cas overlay的pom.xml增加了cas-server-support-pm-jdbc.jary依赖后,打包(mvn package)出现如下的报错

D:\casoverlay\cas-overlay-template>mvn package
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building cas-overlay 1.0
[INFO] ------------------------------------------------------------------------
Downloading: http://oss.sonatype.org/content/repositories/releases/org/apereo/cas/cas-server-support-pm-jdbc/5.1.9/cas-s
erver-support-pm-jdbc-5.1.9.pom
Downloading: https://build.shibboleth.net/nexus/content/repositories/releases/org/apereo/cas/cas-server-support-pm-jdbc/
5.1.9/cas-server-support-pm-jdbc-5.1.9.pom
Downloading: https://repo.spring.io/milestone/org/apereo/cas/cas-server-support-pm-jdbc/5.1.9/cas-server-support-pm-jdbc
-5.1.9.pom
Downloading: http://maven.aliyun.com/nexus/content/repositories/central/org/apereo/cas/cas-server-support-pm-jdbc/5.1.9/
cas-server-support-pm-jdbc-5.1.9.pom
[WARNING] The POM for org.apereo.cas:cas-server-support-pm-jdbc:jar:5.1.9 is missing, no dependency information availabl
e
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 18.015 s
[INFO] Finished at: 2018-07-03T20:47:09+08:00
[INFO] Final Memory: 23M/294M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project cas-overlay: Could not resolve dependencies for project org.apereo.cas:cas-ove
rlay:war:1.0: Failure to find org.apereo.cas:cas-server-support-pm-jdbc:jar:5.1.9 in http://oss.sonatype.org/content/rep
ositories/releases/ was cached in the local repository, resolution will not be reattempted until the update interval of
sonatype-releases has elapsed or updates are forced -> [Help 1]
[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/DependencyResolutionException

CAS 5.x搭建常见问题系列(3).Failure to find org.apereo.cas:cas-server-support-pm-jdbc:jar:5.1.9_第1张图片

错误原因

这个可能是cas 5.1.9的一个bug,后台服务器竟然没有cas-server-support-pm-jdbc:jar的5.1.9版本造成的。
解决方法也很简单,使用cas的当前最新版本,我在写本文时最新的稳定版本是5.2.5,修改pom.xml的版本号

    <properties>
        <cas.version>5.2.5cas.version>
        <springboot.version>1.5.3.RELEASEspringboot.version>
        
        <app.server>-tomcatapp.server> 
        <maven.compiler.source>1.8maven.compiler.source>
        <maven.compiler.target>1.8maven.compiler.target>
        <project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
    properties>

重新打包 mvn package 就OK了

你可能感兴趣的:(SSO)