centos 7.6 安装cas 对接openldap sso单点登录实战

1、安装前准备工作

环境说明:
客户端:windows 10
服务端:centos 7.6

1.1、centos 7.6 安装JDK 1.8

1.2、centos 7 安装tomcat 9.0.84

参考链接 https://blog.csdn.net/OceanWaves1993/article/details/135313202?spm=1001.2014.3001.5502

1.3、windows10 安装JDK 1.8

1.4、windows10 安装打包工具 maven 3.9.6

参考链接 https://archive.apache.org/dist/maven/maven-3/3.9.6/binaries/
选择 apache-maven-3.9.6-bin.zip 下载。tar,gz是Linux平台的安装包。
在这里插入图片描述

创建1个本地目录 用于做maven本地仓库目录

在这里插入图片描述

修改maven的配置文件settings.xml 添加本地仓库地址

在这里插入图片描述

修改前

在这里插入图片描述

修改后

在这里插入图片描述

配置阿里云镜像仓库地址,速度比较快,否则默认从中央仓库下载,速度慢

修改前

在这里插入图片描述

修改后

先把默认镜像仓库地址注释掉

在这里插入图片描述

添加新的阿里云镜像仓库地址

<mirror>
      <id>aliyunmaven</id>
      <mirrorOf>*</mirrorOf>
      <name>阿里云公共仓库</name>
      <url>https://maven.aliyun.com/repository/public</url>
</mirror>

在这里插入图片描述

配置maven环境变量

设置页面 -> 高级系统设置

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

双击path

在这里插入图片描述

在这里插入图片描述

cmd输入 mvn --version
如果能看到下图中的 说明maven 在wionows 10上安装成功

在这里插入图片描述

2、下载cas 5.3 并打包成war包

下载链接 https://github.com/apereo/cas-overlay-template/tree/5.3

在这里插入图片描述

在这里插入图片描述

通过cmd进入解压后的 cas-overlay-template-5.3 文件夹

在这里插入图片描述

输入命令

mvn clean package

耐心等待 mvn clean package 命令执行完成即可

完整执行过程如下 由于在上面步骤中为maven配置了阿里云仓库,整个过程很快就能完成。

D:\Software\cas\cas-overlay-template-5.3>mvn clean package
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8
[INFO] Scanning for projects...
[INFO]
[INFO] ---------------------< org.apereo.cas:cas-overlay >---------------------
[INFO] Building cas-overlay 1.0
[INFO]   from pom.xml
[INFO] --------------------------------[ war ]---------------------------------
Downloading from sonatype-releases: http://oss.sonatype.org/content/repositories/releases/org/apereo/cas/cas-server-webapp-tomcat/5.3.16/cas-server-webapp-tomcat-5.3.16.war
终止批处理操作吗(Y/N)? y

D:\Software\cas\cas-overlay-template-5.3>
D:\Software\cas\cas-overlay-template-5.3>mvn clean package
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8
[INFO] Scanning for projects...
[INFO]
[INFO] ---------------------< org.apereo.cas:cas-overlay >---------------------
[INFO] Building cas-overlay 1.0
[INFO]   from pom.xml
[INFO] --------------------------------[ war ]---------------------------------
[INFO] Artifact org.springframework.boot:spring-boot-maven-plugin:pom:1.5.18.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.springframework.boot:spring-boot-maven-plugin:pom:1.5.18.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/boot/spring-boot-maven-plugin/1.5.18.RELEASE/spring-boot-maven-plugin-1.5.18.RELEASE.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/boot/spring-boot-maven-plugin/1.5.18.RELEASE/spring-boot-maven-plugin-1.5.18.RELEASE.pom (0 B at 0 B/s)
[INFO] Artifact org.springframework.boot:spring-boot-tools:pom:1.5.18.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.springframework.boot:spring-boot-tools:pom:1.5.18.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/boot/spring-boot-tools/1.5.18.RELEASE/spring-boot-tools-1.5.18.RELEASE.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/boot/spring-boot-tools/1.5.18.RELEASE/spring-boot-tools-1.5.18.RELEASE.pom (0 B at 0 B/s)
[INFO] Artifact org.springframework.boot:spring-boot-parent:pom:1.5.18.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.springframework.boot:spring-boot-parent:pom:1.5.18.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/boot/spring-boot-parent/1.5.18.RELEASE/spring-boot-parent-1.5.18.RELEASE.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/boot/spring-boot-parent/1.5.18.RELEASE/spring-boot-parent-1.5.18.RELEASE.pom (0 B at 0 B/s)
[INFO] Artifact org.springframework.boot:spring-boot-dependencies:pom:1.5.18.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.springframework.boot:spring-boot-dependencies:pom:1.5.18.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/boot/spring-boot-dependencies/1.5.18.RELEASE/spring-boot-dependencies-1.5.18.RELEASE.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/boot/spring-boot-dependencies/1.5.18.RELEASE/spring-boot-dependencies-1.5.18.RELEASE.pom (0 B at 0 B/s)
[INFO] Artifact com.fasterxml.jackson:jackson-bom:pom:2.8.11.20181123 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact com.fasterxml.jackson:jackson-bom:pom:2.8.11.20181123 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/fasterxml/jackson/jackson-bom/2.8.11.20181123/jackson-bom-2.8.11.20181123.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/fasterxml/jackson/jackson-bom/2.8.11.20181123/jackson-bom-2.8.11.20181123.pom (0 B at 0 B/s)
[INFO] Artifact com.fasterxml.jackson:jackson-parent:pom:2.8 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact com.fasterxml.jackson:jackson-parent:pom:2.8 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/fasterxml/jackson/jackson-parent/2.8/jackson-parent-2.8.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/fasterxml/jackson/jackson-parent/2.8/jackson-parent-2.8.pom (0 B at 0 B/s)
[INFO] Artifact com.fasterxml:oss-parent:pom:27 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact com.fasterxml:oss-parent:pom:27 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/fasterxml/oss-parent/27/oss-parent-27.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/fasterxml/oss-parent/27/oss-parent-27.pom (0 B at 0 B/s)
[INFO] Artifact org.apache.logging.log4j:log4j-bom:pom:2.7 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.apache.logging.log4j:log4j-bom:pom:2.7 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/logging/log4j/log4j-bom/2.7/log4j-bom-2.7.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/logging/log4j/log4j-bom/2.7/log4j-bom-2.7.pom (0 B at 0 B/s)
[INFO] Artifact org.apache:apache:pom:9 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.apache:apache:pom:9 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/9/apache-9.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/9/apache-9.pom (0 B at 0 B/s)
[INFO] Artifact org.springframework:spring-framework-bom:pom:4.3.21.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.springframework:spring-framework-bom:pom:4.3.21.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/spring-framework-bom/4.3.21.RELEASE/spring-framework-bom-4.3.21.RELEASE.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/spring-framework-bom/4.3.21.RELEASE/spring-framework-bom-4.3.21.RELEASE.pom (0 B at 0 B/s)
[INFO] Artifact org.springframework.data:spring-data-releasetrain:pom:Ingalls-SR17 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.springframework.data:spring-data-releasetrain:pom:Ingalls-SR17 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/data/spring-data-releasetrain/Ingalls-SR17/spring-data-releasetrain-Ingalls-SR17.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/data/spring-data-releasetrain/Ingalls-SR17/spring-data-releasetrain-Ingalls-SR17.pom (0 B at 0 B/s)
[INFO] Artifact org.springframework.data.build:spring-data-build:pom:1.9.17.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.springframework.data.build:spring-data-build:pom:1.9.17.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/data/build/spring-data-build/1.9.17.RELEASE/spring-data-build-1.9.17.RELEASE.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/data/build/spring-data-build/1.9.17.RELEASE/spring-data-build-1.9.17.RELEASE.pom (0 B at 0 B/s)
[INFO] Artifact org.springframework.integration:spring-integration-bom:pom:4.3.18.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.springframework.integration:spring-integration-bom:pom:4.3.18.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/integration/spring-integration-bom/4.3.18.RELEASE/spring-integration-bom-4.3.18.RELEASE.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/integration/spring-integration-bom/4.3.18.RELEASE/spring-integration-bom-4.3.18.RELEASE.pom (0 B at 0 B/s)
[INFO] Artifact org.springframework.security:spring-security-bom:pom:4.2.10.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.springframework.security:spring-security-bom:pom:4.2.10.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/security/spring-security-bom/4.2.10.RELEASE/spring-security-bom-4.2.10.RELEASE.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/security/spring-security-bom/4.2.10.RELEASE/spring-security-bom-4.2.10.RELEASE.pom (0 B at 0 B/s)
[INFO] Artifact org.springframework.boot:spring-boot-maven-plugin:jar:1.5.18.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.springframework.boot:spring-boot-maven-plugin:jar:1.5.18.RELEASE is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/boot/spring-boot-maven-plugin/1.5.18.RELEASE/spring-boot-maven-plugin-1.5.18.RELEASE.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/boot/spring-boot-maven-plugin/1.5.18.RELEASE/spring-boot-maven-plugin-1.5.18.RELEASE.jar (0 B at 0 B/s)
[INFO] Artifact org.apache.maven.plugins:maven-clean-plugin:pom:3.2.0 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven.plugins:maven-clean-plugin:pom:3.2.0 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.pom (0 B at 0 B/s)
[INFO] Artifact org.apache.maven.plugins:maven-plugins:pom:35 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven.plugins:maven-plugins:pom:35 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-plugins/35/maven-plugins-35.pom (0 B at 0 B/s)
[INFO] Artifact org.apache.maven:maven-parent:pom:35 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven:maven-parent:pom:35 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/35/maven-parent-35.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/35/maven-parent-35.pom (0 B at 0 B/s)
[INFO] Artifact org.apache:apache:pom:25 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.apache:apache:pom:25 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/25/apache-25.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/25/apache-25.pom (0 B at 0 B/s)
[INFO] Artifact org.apache.maven.plugins:maven-clean-plugin:jar:3.2.0 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven.plugins:maven-clean-plugin:jar:3.2.0 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-clean-plugin/3.2.0/maven-clean-plugin-3.2.0.jar (0 B at 0 B/s)
[INFO] Artifact org.apache.maven.plugins:maven-resources-plugin:pom:3.3.1 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven.plugins:maven-resources-plugin:pom:3.3.1 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.pom (0 B at 0 B/s)
[INFO] Artifact org.apache.maven.plugins:maven-plugins:pom:39 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven.plugins:maven-plugins:pom:39 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom (0 B at 0 B/s)
[INFO] Artifact org.apache.maven:maven-parent:pom:39 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven:maven-parent:pom:39 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/39/maven-parent-39.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/39/maven-parent-39.pom (0 B at 0 B/s)
[INFO] Artifact org.apache:apache:pom:29 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.apache:apache:pom:29 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/29/apache-29.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/29/apache-29.pom (0 B at 0 B/s)
[INFO] Artifact org.apache.maven.plugins:maven-resources-plugin:jar:3.3.1 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven.plugins:maven-resources-plugin:jar:3.3.1 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-resources-plugin/3.3.1/maven-resources-plugin-3.3.1.jar (0 B at 0 B/s)
[INFO] Artifact org.apache.maven.plugins:maven-compiler-plugin:pom:3.3 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven.plugins:maven-compiler-plugin:pom:3.3 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-compiler-plugin/3.3/maven-compiler-plugin-3.3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-compiler-plugin/3.3/maven-compiler-plugin-3.3.pom (0 B at 0 B/s)
[INFO] Artifact org.apache.maven.plugins:maven-plugins:pom:27 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.apache.maven.plugins:maven-plugins:pom:27 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-plugins/27/maven-plugins-27.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-plugins/27/maven-plugins-27.pom (0 B at 0 B/s)
[INFO] Artifact org.apache.maven:maven-parent:pom:26 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.apache.maven:maven-parent:pom:26 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/26/maven-parent-26.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/26/maven-parent-26.pom (0 B at 0 B/s)
[INFO] Artifact org.apache:apache:pom:16 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.apache:apache:pom:16 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/16/apache-16.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/16/apache-16.pom (0 B at 0 B/s)
[INFO] Artifact org.apache.maven.plugins:maven-compiler-plugin:jar:3.3 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven.plugins:maven-compiler-plugin:jar:3.3 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-compiler-plugin/3.3/maven-compiler-plugin-3.3.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-compiler-plugin/3.3/maven-compiler-plugin-3.3.jar (0 B at 0 B/s)
[INFO] Artifact org.apache.maven.plugins:maven-surefire-plugin:pom:3.2.2 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven.plugins:maven-surefire-plugin:pom:3.2.2 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-surefire-plugin/3.2.2/maven-surefire-plugin-3.2.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-surefire-plugin/3.2.2/maven-surefire-plugin-3.2.2.pom (0 B at 0 B/s)
[INFO] Artifact org.apache.maven.surefire:surefire:pom:3.2.2 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven.surefire:surefire:pom:3.2.2 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire/3.2.2/surefire-3.2.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire/3.2.2/surefire-3.2.2.pom (0 B at 0 B/s)
[INFO] Artifact org.apache.maven:maven-parent:pom:40 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven:maven-parent:pom:40 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/40/maven-parent-40.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/40/maven-parent-40.pom (0 B at 0 B/s)
[INFO] Artifact org.apache:apache:pom:30 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.apache:apache:pom:30 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/30/apache-30.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/30/apache-30.pom (0 B at 0 B/s)
[INFO] Artifact org.junit:junit-bom:pom:5.9.3 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.junit:junit-bom:pom:5.9.3 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom (0 B at 0 B/s)
[INFO] Artifact org.apache.maven.plugins:maven-surefire-plugin:jar:3.2.2 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven.plugins:maven-surefire-plugin:jar:3.2.2 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-surefire-plugin/3.2.2/maven-surefire-plugin-3.2.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-surefire-plugin/3.2.2/maven-surefire-plugin-3.2.2.jar (0 B at 0 B/s)
[INFO] Artifact org.apache.maven.plugins:maven-war-plugin:pom:2.6 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven.plugins:maven-war-plugin:pom:2.6 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-war-plugin/2.6/maven-war-plugin-2.6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-war-plugin/2.6/maven-war-plugin-2.6.pom (0 B at 0 B/s)
[INFO] Artifact org.apache.maven.plugins:maven-war-plugin:jar:2.6 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
[INFO] Artifact org.apache.maven.plugins:maven-war-plugin:jar:2.6 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-war-plugin/2.6/maven-war-plugin-2.6.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-war-plugin/2.6/maven-war-plugin-2.6.jar (0 B at 0 B/s)
[INFO] Artifact org.apereo.cas:cas-server-webapp-tomcat:pom:5.3.16 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
[INFO] Artifact org.apereo.cas:cas-server-webapp-tomcat:pom:5.3.16 is present in the local repository, but cached from a remote repository ID that is unavailable in current build context, verifying that is downloadable from [aliyunmaven (https://maven.aliyun.com/repository/public, default, releases+snapshots)]
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apereo/cas/cas-server-webapp-tomcat/5.3.16/cas-server-webapp-tomcat-5.3.16.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apereo/cas/cas-server-webapp-tomcat/5.3.16/cas-server-webapp-tomcat-5.3.16.pom (0 B at 0 B/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apereo/cas/cas-server-webapp-tomcat/5.3.16/cas-server-webapp-tomcat-5.3.16.war
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apereo/cas/cas-server-webapp-tomcat/5.3.16/cas-server-webapp-tomcat-5.3.16.war (126 MB at 2.9 MB/s)
[INFO]
[INFO] --- clean:3.2.0:clean (default-clean) @ cas-overlay ---
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom (5.8 kB at 44 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom (5.1 kB at 19 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/34/maven-parent-34.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/34/maven-parent-34.pom (43 kB at 289 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/23/apache-23.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/23/apache-23.pom (18 kB at 70 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.6/commons-io-2.6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 98 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-parent/42/commons-parent-42.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 284 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/18/apache-18.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/18/apache-18.pom (16 kB at 110 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar (153 kB at 587 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.6/commons-io-2.6.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 849 kB/s)
[INFO]
[INFO] --- resources:3.3.1:resources (default-resources) @ cas-overlay ---
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom (2.7 kB at 12 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 97 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.pom (8.8 kB at 64 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/10/plexus-10.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/10/plexus-10.pom (25 kB at 163 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.pom (6.0 kB at 25 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-components/39/maven-shared-components-39.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-components/39/maven-shared-components-39.pom (3.2 kB at 21 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/javax/inject/javax.inject/1/javax.inject-1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 2.6 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 19 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 54 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom (3.2 kB at 12 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/spice/spice-parent/15/spice-parent-15.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/spice/spice-parent/15/spice-parent-15.pom (8.4 kB at 63 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/forge/forge-parent/5/forge-parent-5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 35 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom (8.0 kB at 59 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom (20 kB at 89 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-parent/52/commons-parent-52.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 312 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 32 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 117 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 34 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar (85 kB at 374 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/javax/inject/javax.inject/1/javax.inject-1.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar (269 kB at 1.4 MB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar (41 kB at 161 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.jar (55 kB at 207 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar (8.5 kB at 28 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 7.3 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar (327 kB at 816 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar (587 kB at 1.0 MB/s)
[INFO] skip non existing resourceDirectory D:\Software\cas\cas-overlay-template-5.3\src\main\resources
[INFO]
[INFO] --- compiler:3.3:compile (default-compile) @ cas-overlay ---
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom (1.5 kB at 10 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/2.2.1/maven-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/2.2.1/maven-2.2.1.pom (22 kB at 150 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/11/maven-parent-11.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/11/maven-parent-11.pom (32 kB at 238 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/5/apache-5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/5/apache-5.pom (4.1 kB at 30 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom (1.6 kB at 6.3 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (6.8 kB at 51 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 kB at 46 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom (12 kB at 80 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom (2.2 kB at 9.4 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom (3.2 kB at 22 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom (889 B at 3.6 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (5.8 kB at 44 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom (2.0 kB at 8.5 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom (1.9 kB at 15 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom (7.9 kB at 31 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom (3.0 kB at 12 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom (2.2 kB at 15 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom (2.2 kB at 9.0 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom (1.9 kB at 14 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom (1.7 kB at 11 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom (2.8 kB at 13 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom (3.1 kB at 22 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom (880 B at 3.8 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom (1.9 kB at 8.1 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom (2.1 kB at 14 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom (1.3 kB at 5.6 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 23 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/spice/spice-parent/12/spice-parent-12.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 30 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/forge/forge-parent/4/forge-parent-4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 61 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (5.1 kB at 23 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 67 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 8.6 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.pom (3.3 kB at 27 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (3.9 kB at 16 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 3.4 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (5.7 kB at 24 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/junit/junit/3.8.1/junit-3.8.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 3.7 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (6.9 kB at 54 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (3.1 kB at 14 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom (1.9 kB at 12 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom (1.4 kB at 5.7 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom (2.0 kB at 14 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom (15 kB at 61 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom (1.6 kB at 6.6 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom (3.5 kB at 15 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (1.9 kB at 8.1 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (2.3 kB at 16 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (3.2 kB at 14 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.2 kB at 31 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-cli/commons-cli/1.2/commons-cli-1.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-cli/commons-cli/1.2/commons-cli-1.2.pom (8.0 kB at 54 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-parent/11/commons-parent-11.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 kB at 149 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/4/apache-4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/4/apache-4.pom (4.5 kB at 18 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7.1 kB at 56 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/classworlds/classworlds/1.1/classworlds-1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/classworlds/classworlds/1.1/classworlds-1.1.pom (3.3 kB at 14 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.pom (5.0 kB at 26 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-components/20/maven-shared-components-20.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-components/20/maven-shared-components-20.pom (5.1 kB at 22 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/24/maven-parent-24.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/24/maven-parent-24.pom (37 kB at 251 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/14/apache-14.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/14/apache-14.pom (15 kB at 63 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom (965 B at 4.4 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 35 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.4 kB at 28 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/23/maven-parent-23.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 247 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/13/apache-13.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/13/apache-13.pom (14 kB at 77 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-utils/0.1/maven-shared-utils-0.1.pom (4.0 kB at 31 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-components/18/maven-shared-components-18.pom (4.9 kB at 20 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/22/maven-parent-22.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/22/maven-parent-22.pom (30 kB at 208 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/11/apache-11.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/11/apache-11.pom (15 kB at 53 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 3.2 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (4.2 kB at 29 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 kB at 125 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compiler-api/2.5/plexus-compiler-api-2.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compiler-api/2.5/plexus-compiler-api-2.5.pom (865 B at 5.8 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compiler/2.5/plexus-compiler-2.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compiler/2.5/plexus-compiler-2.5.pom (5.3 kB at 21 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom (3.1 kB at 22 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 75 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/spice/spice-parent/17/spice-parent-17.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 50 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/forge/forge-parent/10/forge-parent-10.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 58 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.0.10/plexus-utils-3.0.10.pom (3.1 kB at 23 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/3.3/plexus-3.3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/3.3/plexus-3.3.pom (20 kB at 88 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compiler-manager/2.5/plexus-compiler-manager-2.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compiler-manager/2.5/plexus-compiler-manager-2.5.pom (690 B at 2.8 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compiler-javac/2.5/plexus-compiler-javac-2.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compiler-javac/2.5/plexus-compiler-javac-2.5.pom (769 B at 5.1 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compilers/2.5/plexus-compilers-2.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compilers/2.5/plexus-compilers-2.5.pom (1.3 kB at 8.4 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom (2.8 kB at 12 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom (4.0 kB at 12 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (15 kB at 58 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom (2.8 kB at 12 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/xbean/xbean/3.4/xbean-3.4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/xbean/xbean/3.4/xbean-3.4.pom (19 kB at 119 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/log4j/log4j/1.2.12/log4j-1.2.12.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 668 B/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom (5.3 kB at 40 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/collections/google-collections/1.0/google-collections-1.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 19 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/google/1/google-1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/google/1/google-1.pom (1.6 kB at 6.0 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/junit/junit/3.8.2/junit-3.8.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/junit/junit/3.8.2/junit-3.8.2.pom (747 B at 5.7 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar (12 kB at 94 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar (49 kB at 363 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar (51 kB at 318 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar (178 kB at 1.1 MB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.jar (22 kB at 83 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar (80 kB at 259 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.jar (228 kB at 695 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.jar (8.8 kB at 22 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar (22 kB at 54 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar (35 kB at 78 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar (88 kB at 186 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.jar (17 kB at 33 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar (26 kB at 46 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar (30 kB at 48 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar (156 kB at 254 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.jar (13 kB at 20 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.jar (39 kB at 52 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar (29 kB at 35 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar (68 kB at 84 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.jar (10 kB at 12 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar (332 kB at 367 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-toolchain/2.2.1/maven-toolchain-2.2.1.jar (38 kB at 40 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 14 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compiler-api/2.5/plexus-compiler-api-2.5.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar (32 kB at 32 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compiler-manager/2.5/plexus-compiler-manager-2.5.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-utils/0.7/maven-shared-utils-0.7.jar (170 kB at 156 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compiler-javac/2.5/plexus-compiler-javac-2.5.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 12 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (4.2 kB at 3.5 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compiler-api/2.5/plexus-compiler-api-2.5.jar (25 kB at 19 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compiler-manager/2.5/plexus-compiler-manager-2.5.jar (4.6 kB at 3.5 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/log4j/log4j/1.2.12/log4j-1.2.12.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.jar (217 kB at 164 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-compiler-javac/2.5/plexus-compiler-javac-2.5.jar (19 kB at 14 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/collections/google-collections/1.0/google-collections-1.0.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.jar (46 kB at 33 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/junit/junit/3.8.2/junit-3.8.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar (45 kB at 30 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/junit/junit/3.8.2/junit-3.8.2.jar (121 kB at 79 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.jar (134 kB at 86 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/log4j/log4j/1.2.12/log4j-1.2.12.jar (358 kB at 223 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/collections/google-collections/1.0/google-collections-1.0.jar (640 kB at 397 kB/s)
[INFO] No sources to compile
[INFO]
[INFO] --- resources:3.3.1:testResources (default-testResources) @ cas-overlay ---
[INFO] skip non existing resourceDirectory D:\Software\cas\cas-overlay-template-5.3\src\test\resources
[INFO]
[INFO] --- compiler:3.3:testCompile (default-testCompile) @ cas-overlay ---
[INFO] No sources to compile
[INFO]
[INFO] --- surefire:3.2.2:test (default-test) @ cas-overlay ---
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/maven-surefire-common/3.2.2/maven-surefire-common-3.2.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/maven-surefire-common/3.2.2/maven-surefire-common-3.2.2.pom (6.1 kB at 40 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-api/3.2.2/surefire-api-3.2.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-api/3.2.2/surefire-api-3.2.2.pom (3.4 kB at 15 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-logger-api/3.2.2/surefire-logger-api-3.2.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-logger-api/3.2.2/surefire-logger-api-3.2.2.pom (3.2 kB at 22 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-shared-utils/3.2.2/surefire-shared-utils-3.2.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-shared-utils/3.2.2/surefire-shared-utils-3.2.2.pom (4.1 kB at 15 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-extensions-api/3.2.2/surefire-extensions-api-3.2.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-extensions-api/3.2.2/surefire-extensions-api-3.2.2.pom (3.2 kB at 23 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-booter/3.2.2/surefire-booter-3.2.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-booter/3.2.2/surefire-booter-3.2.2.pom (4.3 kB at 17 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-extensions-spi/3.2.2/surefire-extensions-spi-3.2.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-extensions-spi/3.2.2/surefire-extensions-spi-3.2.2.pom (1.7 kB at 12 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.pom (2.2 kB at 8.7 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether/1.0.0.v20140518/aether-1.0.0.v20140518.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether/1.0.0.v20140518/aether-1.0.0.v20140518.pom (30 kB at 205 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.pom (1.9 kB at 8.4 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-common-artifact-filters/3.1.1/maven-common-artifact-filters-3.1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-common-artifact-filters/3.1.1/maven-common-artifact-filters-3.1.1.pom (5.8 kB at 40 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.pom (2.3 kB at 10 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/3.2.5/maven-3.2.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/3.2.5/maven-3.2.5.pom (22 kB at 164 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/25/maven-parent-25.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/25/maven-parent-25.pom (37 kB at 149 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/15/apache-15.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/15/apache-15.pom (15 kB at 110 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/4.0.0/plexus-utils-4.0.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/4.0.0/plexus-utils-4.0.0.pom (8.7 kB at 38 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/13/plexus-13.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/13/plexus-13.pom (27 kB at 201 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.pom (8.1 kB at 34 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.pom (2.2 kB at 16 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.pom (2.6 kB at 10 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom (1.5 kB at 12 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.pom (2.2 kB at 9.4 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.pom (3.0 kB at 18 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.9.0.M2/org.eclipse.sisu.plexus-0.9.0.M2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.9.0.M2/org.eclipse.sisu.plexus-0.9.0.M2.pom (15 kB at 47 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/sisu-plexus/0.9.0.M2/sisu-plexus-0.9.0.M2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/sisu-plexus/0.9.0.M2/sisu-plexus-0.9.0.M2.pom (15 kB at 104 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom (13 kB at 53 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/net/java/jvnet-parent/3/jvnet-parent-3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 32 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/javax/enterprise/cdi-api/1.2/cdi-api-1.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/javax/enterprise/cdi-api/1.2/cdi-api-1.2.pom (6.3 kB at 25 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/jboss/weld/weld-parent/26/weld-parent-26.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/jboss/weld/weld-parent/26/weld-parent-26.pom (32 kB at 172 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.9.0.M2/org.eclipse.sisu.inject-0.9.0.M2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.9.0.M2/org.eclipse.sisu.inject-0.9.0.M2.pom (17 kB at 69 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/sisu-inject/0.9.0.M2/sisu-inject-0.9.0.M2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/sisu-inject/0.9.0.M2/sisu-inject-0.9.0.M2.pom (15 kB at 80 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom (750 B at 3.1 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom (4.8 kB at 36 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 35 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.pom (3.0 kB at 20 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.pom (4.2 kB at 18 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.pom (2.1 kB at 13 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.pom (3.5 kB at 15 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3.pom (11 kB at 64 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/inject/guice-parent/3.2.3/guice-parent-3.2.3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/inject/guice-parent/3.2.3/guice-parent-3.2.3.pom (13 kB at 57 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/forge/forge-parent/38/forge-parent-38.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/forge/forge-parent/38/forge-parent-38.pom (19 kB at 149 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/aopalliance/aopalliance/1.0/aopalliance-1.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 1.4 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/guava/guava/16.0.1/guava-16.0.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/guava/guava/16.0.1/guava-16.0.1.pom (6.1 kB at 48 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom (7.3 kB at 58 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/oss/oss-parent/7/oss-parent-7.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 37 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 56 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.12.0/commons-io-2.12.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.12.0/commons-io-2.12.0.pom (20 kB at 87 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-parent/57/commons-parent-57.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-parent/57/commons-parent-57.pom (83 kB at 307 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom (5.6 kB at 32 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-java/1.2.0/plexus-java-1.2.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-java/1.2.0/plexus-java-1.2.0.pom (4.3 kB at 18 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-languages/1.2.0/plexus-languages-1.2.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-languages/1.2.0/plexus-languages-1.2.0.pom (3.2 kB at 25 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/15/plexus-15.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/15/plexus-15.pom (28 kB at 114 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/junit/junit-bom/5.10.0/junit-bom-5.10.0.pom (5.6 kB at 38 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/ow2/asm/asm/9.6/asm-9.6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/ow2/asm/asm/9.6/asm-9.6.pom (2.4 kB at 11 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/ow2/ow2/1.5.1/ow2-1.5.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/ow2/ow2/1.5.1/ow2-1.5.1.pom (11 kB at 81 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom (17 kB at 68 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/oss/oss-parent/9/oss-parent-9.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 50 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/maven-surefire-common/3.2.2/maven-surefire-common-3.2.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/maven-surefire-common/3.2.2/maven-surefire-common-3.2.2.jar (309 kB at 1.1 MB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-api/3.2.2/surefire-api-3.2.2.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-booter/3.2.2/surefire-booter-3.2.2.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-logger-api/3.2.2/surefire-logger-api-3.2.2.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-extensions-spi/3.2.2/surefire-extensions-spi-3.2.2.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-extensions-api/3.2.2/surefire-extensions-api-3.2.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-logger-api/3.2.2/surefire-logger-api-3.2.2.jar (14 kB at 85 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-api/3.2.2/surefire-api-3.2.2.jar (171 kB at 861 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-extensions-spi/3.2.2/surefire-extensions-spi-3.2.2.jar (8.2 kB at 37 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-common-artifact-filters/3.1.1/maven-common-artifact-filters-3.1.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-booter/3.2.2/surefire-booter-3.2.2.jar (118 kB at 460 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.12.0/commons-io-2.12.0.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-extensions-api/3.2.2/surefire-extensions-api-3.2.2.jar (26 kB at 80 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.jar (146 kB at 456 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-java/1.2.0/plexus-java-1.2.0.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/ow2/asm/asm/9.6/asm-9.6.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-common-artifact-filters/3.1.1/maven-common-artifact-filters-3.1.1.jar (61 kB at 153 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.jar (136 kB at 310 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-shared-utils/3.2.2/surefire-shared-utils-3.2.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.12.0/commons-io-2.12.0.jar (474 kB at 1.0 MB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-java/1.2.0/plexus-java-1.2.0.jar (58 kB at 103 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/ow2/asm/asm/9.6/asm-9.6.jar (124 kB at 211 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar (334 kB at 531 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/surefire/surefire-shared-utils/3.2.2/surefire-shared-utils-3.2.2.jar (2.3 MB at 2.1 MB/s)
[INFO] No tests to run.
[INFO]
[INFO] --- war:2.6:war (default-war) @ cas-overlay ---
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.pom (4.3 kB at 32 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.pom (4.1 kB at 17 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-components/1.3/plexus-components-1.3.pom (3.1 kB at 13 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom (3.8 kB at 29 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.pom (2.7 kB at 12 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-components/1.2/plexus-components-1.2.pom (3.1 kB at 18 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 83 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-compress/1.9/commons-compress-1.9.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-compress/1.9/commons-compress-1.9.pom (11 kB at 46 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-parent/34/commons-parent-34.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 246 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-io/2.4.1/plexus-io-2.4.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-io/2.4.1/plexus-io-2.4.1.pom (3.7 kB at 26 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.2/commons-io-2.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.2/commons-io-2.2.pom (11 kB at 43 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-parent/24/commons-parent-24.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-parent/24/commons-parent-24.pom (47 kB at 348 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.pom (4.4 kB at 18 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-io/2.4/plexus-io-2.4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-io/2.4/plexus-io-2.4.pom (3.7 kB at 24 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/thoughtworks/xstream/xstream/1.4.4/xstream-1.4.4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/thoughtworks/xstream/xstream/1.4.4/xstream-1.4.4.pom (8.6 kB at 61 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/thoughtworks/xstream/xstream-parent/1.4.4/xstream-parent-1.4.4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/thoughtworks/xstream/xstream-parent/1.4.4/xstream-parent-1.4.4.pom (19 kB at 73 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/codehaus-parent/3/codehaus-parent-3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/codehaus-parent/3/codehaus-parent-3.pom (4.1 kB at 30 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.pom (386 B at 1.5 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.pom (1.6 kB at 11 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-filtering/1.3/maven-filtering-1.3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-filtering/1.3/maven-filtering-1.3.pom (6.2 kB at 21 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-utils/0.6/maven-shared-utils-0.6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-utils/0.6/maven-shared-utils-0.6.pom (4.9 kB at 18 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.0.18/plexus-utils-3.0.18.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.0.18/plexus-utils-3.0.18.pom (3.4 kB at 14 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.19/plexus-interpolation-1.19.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.19/plexus-interpolation-1.19.pom (1.0 kB at 3.9 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.pom (2.9 kB at 22 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/spice/spice-parent/10/spice-parent-10.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/spice/spice-parent/10/spice-parent-10.pom (3.0 kB at 12 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/forge/forge-parent/3/forge-parent-3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/forge/forge-parent/3/forge-parent-3.pom (5.0 kB at 41 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 32 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-mapping/1.0/maven-mapping-1.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-mapping/1.0/maven-mapping-1.0.pom (4.5 kB at 25 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (1.6 kB at 6.9 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/2.0.6/maven-2.0.6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9.0 kB at 71 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/5/maven-parent-5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 kB at 69 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/3/apache-3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/3/apache-3.pom (3.4 kB at 21 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (1.9 kB at 8.8 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.15/plexus-interpolation-1.15.pom (1.0 kB at 7.0 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/3.0.1/plexus-3.0.1.pom (19 kB at 80 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (194 kB at 1.2 MB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/junit/junit/3.8.1/junit-3.8.1.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-cli/commons-cli/1.2/commons-cli-1.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.jar (9.8 kB at 63 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.jar (13 kB at 73 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/classworlds/classworlds/1.1/classworlds-1.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-cli/commons-cli/1.2/commons-cli-1.2.jar (41 kB at 168 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.jar (11 kB at 44 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-io/2.4.1/plexus-io-2.4.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/junit/junit/3.8.1/junit-3.8.1.jar (121 kB at 457 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.2/commons-io-2.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (13 kB at 48 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/classworlds/classworlds/1.1/classworlds-1.1.jar (38 kB at 100 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-compress/1.9/commons-compress-1.9.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-archiver/2.6/maven-archiver-2.6.jar (23 kB at 56 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-io/2.4.1/plexus-io-2.4.1.jar (82 kB at 185 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/thoughtworks/xstream/xstream/1.4.4/xstream-1.4.4.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-archiver/2.9/plexus-archiver-2.9.jar (145 kB at 307 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/2.2/commons-io-2.2.jar (174 kB at 324 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-compress/1.9/commons-compress-1.9.jar (378 kB at 624 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.jar (62 kB at 95 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-filtering/1.3/maven-filtering-1.3.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.jar (25 kB at 36 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.jar (7.2 kB at 9.0 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-mapping/1.0/maven-mapping-1.0.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar (243 kB at 299 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/thoughtworks/xstream/xstream/1.4.4/xstream-1.4.4.jar (483 kB at 590 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/plexus/plexus-build-api/0.0.4/plexus-build-api-0.0.4.jar (6.8 kB at 8.1 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-filtering/1.3/maven-filtering-1.3.jar (51 kB at 61 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-mapping/1.0/maven-mapping-1.0.jar (9.9 kB at 10 kB/s)
[INFO] Packaging webapp
[INFO] Assembling webapp [cas-overlay] in [D:\Software\cas\cas-overlay-template-5.3\target\cas]
[info] Copying manifest...
[INFO] Processing war project
[INFO] Processing overlay [ id org.apereo.cas:cas-server-webapp-tomcat]
[INFO] Webapp assembled in [2201 msecs]
[INFO] Building war: D:\Software\cas\cas-overlay-template-5.3\target\cas.war
[INFO]
[INFO] --- spring-boot:1.5.18.RELEASE:repackage (default) @ cas-overlay ---
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/boot/spring-boot-loader-tools/1.5.18.RELEASE/spring-boot-loader-tools-1.5.18.RELEASE.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/boot/spring-boot-loader-tools/1.5.18.RELEASE/spring-boot-loader-tools-1.5.18.RELEASE.pom (3.8 kB at 11 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/spring-core/4.3.21.RELEASE/spring-core-4.3.21.RELEASE.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/spring-core/4.3.21.RELEASE/spring-core-4.3.21.RELEASE.pom (2.5 kB at 10 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-logging/commons-logging/1.2/commons-logging-1.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 108 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.pom (2.0 kB at 9.2 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/3.1.1/maven-3.1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/3.1.1/maven-3.1.1.pom (22 kB at 165 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (4.1 kB at 31 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 140 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.pom (4.1 kB at 28 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.pom (7.3 kB at 47 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.pom (2.2 kB at 14 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.pom (2.6 kB at 11 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.pom (2.2 kB at 15 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.pom (3.4 kB at 16 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.pom (4.8 kB at 20 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/sisu-plexus/0.0.0.M5/sisu-plexus-0.0.0.M5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/sisu-plexus/0.0.0.M5/sisu-plexus-0.0.0.M5.pom (13 kB at 102 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom (1.4 kB at 9.5 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom (2.4 kB at 10.0 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom (7.9 kB at 62 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/jboss/weld/weld-parent/6/weld-parent-6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/jboss/weld/weld-parent/6/weld-parent-6.pom (21 kB at 82 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom (1.0 kB at 7.5 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/guava/guava/18.0/guava-18.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/guava/guava/18.0/guava-18.0.pom (5.7 kB at 36 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom (7.7 kB at 61 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0.pom (10 kB at 79 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/inject/guice-parent/3.1.0/guice-parent-3.1.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/inject/guice-parent/3.1.0/guice-parent-3.1.0.pom (11 kB at 82 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.pom (2.5 kB at 20 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/sisu-inject/0.0.0.M5/sisu-inject-0.0.0.M5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/sisu-inject/0.0.0.M5/sisu-inject-0.0.0.M5.pom (14 kB at 113 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.pom (3.9 kB at 11 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.pom (2.8 kB at 22 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.pom (4.1 kB at 17 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/3.2.1/maven-3.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/3.2.1/maven-3.2.1.pom (23 kB at 97 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model-builder/3.2.1/maven-model-builder-3.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model-builder/3.2.1/maven-model-builder-3.2.1.pom (2.8 kB at 17 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/3.2.1/maven-repository-metadata-3.2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/3.2.1/maven-repository-metadata-3.2.1.pom (2.2 kB at 12 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.pom (1.8 kB at 8.3 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114.pom (29 kB at 204 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.pom (2.0 kB at 7.3 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.pom (2.1 kB at 8.7 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.pom (3.4 kB at 25 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.pom (5.0 kB at 22 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom (3.8 kB at 16 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (8.7 kB at 66 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/21/maven-parent-21.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/21/maven-parent-21.pom (26 kB at 209 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/10/apache-10.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/10/apache-10.pom (15 kB at 68 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom (2.7 kB at 19 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/2.0.8/maven-2.0.8.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/2.0.8/maven-2.0.8.pom (12 kB at 94 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/6/maven-parent-6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/6/maven-parent-6.pom (20 kB at 84 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom (2.0 kB at 15 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/junit/junit/4.12/junit-4.12.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/junit/junit/4.12/junit-4.12.pom (24 kB at 95 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom (766 B at 3.6 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom (2.0 kB at 9.0 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom (2.7 kB at 15 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom (1.9 kB at 8.1 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom (2.0 kB at 15 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/log4j/log4j/1.2.17/log4j-1.2.17.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 kB at 88 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.pom (7.8 kB at 59 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-plugins/24/maven-plugins-24.pom (11 kB at 49 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-compat/3.0/maven-compat-3.0.pom (4.0 kB at 24 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/3.0/maven-3.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 93 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/15/maven-parent-15.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 98 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/6/apache-6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/6/apache-6.pom (13 kB at 93 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (2.2 kB at 8.9 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 6.9 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (5.4 kB at 24 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 43 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 13 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 21 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 5.2 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 61 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/forge/forge-parent/6/forge-parent-6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 24 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-component-annotations/1.5.4/plexus-component-annotations-1.5.4.pom (815 B at 6.0 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-containers/1.5.4/plexus-containers-1.5.4.pom (4.2 kB at 18 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/2.0.5/plexus-2.0.5.pom (17 kB at 96 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 13 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 115 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 24 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 77 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.pom (1.8 kB at 11 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/wagon/wagon/1.0-beta-6/wagon-1.0-beta-6.pom (12 kB at 51 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm/3.3.1/asm-3.3.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm/3.3.1/asm-3.3.1.pom (266 B at 2.1 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom (4.3 kB at 19 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-commons/3.3.1/asm-commons-3.3.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-commons/3.3.1/asm-commons-3.3.1.pom (417 B at 1.8 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-tree/3.3.1/asm-tree-3.3.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-tree/3.3.1/asm-tree-3.3.1.pom (406 B at 2.9 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/jdom/jdom/1.1/jdom-1.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/jdom/jdom/1.1/jdom-1.1.pom (2.2 kB at 10 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.pom (6.8 kB at 53 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-project/2.2.0/maven-project-2.2.0.pom (2.8 kB at 11 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/2.2.0/maven-2.2.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven/2.2.0/maven-2.2.0.pom (22 kB at 135 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-profile/2.2.0/maven-profile-2.2.0.pom (2.2 kB at 7.7 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact-manager/2.2.0/maven-artifact-manager-2.2.0.pom (3.1 kB at 20 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/2.2.0/maven-repository-metadata-2.2.0.pom (1.9 kB at 8.0 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-registry/2.2.0/maven-plugin-registry-2.2.0.pom (1.9 kB at 11 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/vafer/jdependency/0.7/jdependency-0.7.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/vafer/jdependency/0.7/jdependency-0.7.pom (7.5 kB at 56 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/1.3.2/commons-io-1.3.2.pom (9.7 kB at 53 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-parent/3/commons-parent-3.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/commons/commons-parent/3/commons-parent-3.pom (12 kB at 50 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm/3.2/asm-3.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm/3.2/asm-3.2.pom (264 B at 1.9 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-parent/3.2/asm-parent-3.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-parent/3.2/asm-parent-3.2.pom (4.4 kB at 19 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-analysis/3.2/asm-analysis-3.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-analysis/3.2/asm-analysis-3.2.pom (417 B at 3.1 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-tree/3.2/asm-tree-3.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-tree/3.2/asm-tree-3.2.pom (404 B at 3.5 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-commons/3.2/asm-commons-3.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-commons/3.2/asm-commons-3.2.pom (415 B at 1.8 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-util/3.2/asm-util-3.2.pom
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-util/3.2/asm-util-3.2.pom (409 B at 3.2 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/boot/spring-boot-loader-tools/1.5.18.RELEASE/spring-boot-loader-tools-1.5.18.RELEASE.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/boot/spring-boot-loader-tools/1.5.18.RELEASE/spring-boot-loader-tools-1.5.18.RELEASE.jar (153 kB at 545 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/spring-core/4.3.21.RELEASE/spring-core-4.3.21.RELEASE.jar
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-logging/commons-logging/1.2/commons-logging-1.2.jar (62 kB at 391 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.jar (42 kB at 186 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.jar (52 kB at 195 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.jar (160 kB at 421 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.jar (25 kB at 63 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.jar (557 kB at 1.3 MB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/springframework/spring-core/4.3.21.RELEASE/spring-core-4.3.21.RELEASE.jar (1.1 MB at 2.6 MB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-aether-provider/3.2.1/maven-aether-provider-3.2.1.jar (61 kB at 110 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.jar (147 kB at 254 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.jar (31 kB at 52 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.jar (136 kB at 221 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0-no_aop.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.jar (173 kB at 248 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.jar (197 kB at 276 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar (5.8 kB at 8.2 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar (45 kB at 54 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.jar (50 kB at 59 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0-no_aop.jar (357 kB at 394 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 4.8 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.jar (291 kB at 296 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.jar (45 kB at 45 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.jar (42 kB at 40 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.jar (154 kB at 142 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar (32 kB at 28 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/log4j/log4j/1.2.17/log4j-1.2.17.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.jar (117 kB at 95 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/junit/junit/4.12/junit-4.12.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.jar (35 kB at 27 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.jar (57 kB at 44 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.jar (29 kB at 21 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar (45 kB at 32 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/log4j/log4j/1.2.17/log4j-1.2.17.jar (490 kB at 336 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/junit/junit/4.12/junit-4.12.jar (315 kB at 211 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-io/2.3.2/plexus-io-2.3.2.jar (74 kB at 48 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-archiver/2.8.1/plexus-archiver-2.8.1.jar (143 kB at 89 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-shade-plugin/2.2/maven-shade-plugin-2.2.jar (100 kB at 61 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-compat/3.0/maven-compat-3.0.jar (285 kB at 171 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar (247 kB at 147 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm/3.3.1/asm-3.3.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar (202 kB at 112 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-commons/3.3.1/asm-commons-3.3.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/wagon-provider-api-1.0-beta-6.jar (53 kB at 29 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-tree/3.3.1/asm-tree-3.3.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar (153 kB at 82 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/jdom/jdom/1.1/jdom-1.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm/3.3.1/asm-3.3.1.jar (44 kB at 23 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-commons/3.3.1/asm-commons-3.3.1.jar (38 kB at 19 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/vafer/jdependency/0.7/jdependency-0.7.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-tree/3.3.1/asm-tree-3.3.1.jar (22 kB at 11 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/1.3.2/commons-io-1.3.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/jdom/jdom/1.1/jdom-1.1.jar (153 kB at 76 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-analysis/3.2/asm-analysis-3.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar (472 kB at 232 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-util/3.2/asm-util-3.2.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/commons-io/commons-io/1.3.2/commons-io-1.3.2.jar (88 kB at 41 kB/s)
Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/guava/guava/18.0/guava-18.0.jar
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-util/3.2/asm-util-3.2.jar (37 kB at 17 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/shared/maven-dependency-tree/2.1/maven-dependency-tree-2.1.jar (60 kB at 27 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/asm/asm-analysis/3.2/asm-analysis-3.2.jar (18 kB at 8.0 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/vafer/jdependency/0.7/jdependency-0.7.jar (12 kB at 5.2 kB/s)
Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/com/google/guava/guava/18.0/guava-18.0.jar (2.3 MB at 853 kB/s)
[INFO] Layout: WAR
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  02:03 min
[INFO] Finished at: 2024-02-03T22:37:41+08:00
[INFO] ------------------------------------------------------------------------

D:\Software\cas\cas-overlay-template-5.3>

然后在cas目录下会形成1个target文件夹

在这里插入图片描述

进入target文件夹 找到cas.war 这个文件

cas.war

3、部署cas到tomcat

找到上一步打包的cas.war 上传到 centos 7.6 tomcat的webapps文件下

在这里插入图片描述

然后重启tomcat。重启tomcat后会在tomcat的webapps目录下形成1个cas文件夹,文件夹名称和cas.war 文件的文件名保持一致。

在这里插入图片描述

访问 https://tomcat-server-ip:8443/cas
cas默认账号casuser 默认密码Mellon
在这里插入图片描述

登录cas成功

在这里插入图片描述

自定义cas的用户名密码
编辑tomcat部署的cas/WEB-INF/classes/application.properties文件

vi /usr/local/tomcat/webapps/cas/WEB-INF/classes/application.properties

修改最后一行 cas.authn.accept.users=casuser::Mellon 修改为 cas.authn.accept.users=admin::admin

修改前

在这里插入图片描述

修改后

在这里插入图片描述

这样用户名和密码就变成了admin

重启tomcat生效

/etc/init.d/tomcat restart

4、cas对接ldap

ldap可以使用openldap。
openldap安装参考教程 链接: https://blog.csdn.net/OceanWaves1993/article/details/136048686?spm=1001.2014.3001.5502

cas对接ldap 官网参考链接: https://apereo.github.io/cas/6.6.x/authentication/LDAP-Authentication.html

在这里插入图片描述

cas对接ldap,需要修改cas配置文件 然后重新对cas打包

在这里插入图片描述

pom.xml 找到…Additional dependencies may be placed here…
修改前

在这里插入图片描述

在下面加入如下内容

<dependency>
     <groupId>org.apereo.cas</groupId>
     <artifactId>cas-server-support-ldap</artifactId>
     <version>${cas.version}</version>
</dependency>

在这里插入图片描述

通过cmd进入解压后的 cas-overlay-template-5.3 文件夹

在这里插入图片描述

输入命令

mvn clean package

耐心等待 mvn clean package 命令执行完成即可

如果命令报错 阿里云仓库缺失包之类的 就把阿里云仓库注释掉。
使用官方仓库可以顺利完成命令

在这里插入图片描述

然后在cas目录下会形成1个target文件夹

在这里插入图片描述

进入target文件夹 找到cas.war 这个文件

在这里插入图片描述

找到上一步打包的cas.war 上传到 centos 7.6 tomcat的webapps文件下

在这里插入图片描述

然后重启tomcat。重启tomcat后会在tomcat的webapps目录下形成1个cas文件夹,文件夹名称和cas.war 文件的文件名保持一致。

在这里插入图片描述

进入 webapps/cas/WEB-INF/classes 目录下,修改 application.properties 文件。在文件的最下方就是CAS认证相关的属性。
首先注释掉CAS写死的用户名和密码

vi /usr/local/tomcat/webapps/cas/WEB-INF/classes/application.properties

注释前

在这里插入图片描述

注释后

在这里插入图片描述

然后配置LDAP连接属性。

vi /usr/local/tomcat/webapps/cas/WEB-INF/classes/application.properties

在末尾添加以下内容

cas.authn.ldap[0].type=AUTHENTICATED
# LDAP服务地址,如果支持SSL,地址为 ldaps://127.0.0.1:689
cas.authn.ldap[0].ldapUrl=ldap://127.0.0.1:389
# 是否使用SSL
cas.authn.ldap[0].useSsl=false
# LDAP中基础DN
cas.authn.ldap[0].baseDn=dc=localhost,dc=localadmin
# 用户名匹配规则,简单的可以只写成uid={user}
cas.authn.ldap[0].searchFilter=(|(uid={user})(mail={user})(mobile={user}))
# CAS用于绑定的DN
cas.authn.ldap[0].bindDn=cn=Manager,dc=localhost,dc=localadmin
# CAS用于绑定的DN的密码 
cas.authn.ldap[0].bindCredential=secret
# 登入成功后可以查看到的信息,此条可以不写 
cas.authn.ldap[0].principalAttributeList=sn,cn:commonName,givenName,eduPersonTargettedId:SOME_IDENTIFIER

在这里插入图片描述

以上的属性已可以支持LDAP成功对接,每个属性的具体含义可以查看官网参考链接: https://apereo.github.io/cas/6.6.x/authentication/LDAP-Authentication.html

在这里插入图片描述

完整的LDAP属性列表如下

cas.authn.ldap[0].principalAttributeList=sn,cn:commonName,givenName,eduPersonTargettedId:SOME_IDENTIFIER
cas.authn.ldap[0].collectDnAttribute=false
cas.authn.ldap[0].principalDnAttributeName=principalLdapDn
cas.authn.ldap[0].allowMultiplePrincipalAttributeValues=true
cas.authn.ldap[0].allowMissingPrincipalAttributeValue=true
cas.authn.ldap[0].credentialCriteria=

cas.authn.ldap[0].ldapUrl=ldap://127.0.0.1:389
cas.authn.ldap[0].bindDn=cn=admin,dc=example,dc=org
cas.authn.ldap[0].bindCredential=admin

cas.authn.ldap[0].poolPassivator=NONE
cas.authn.ldap[0].connectionStrategy=
cas.authn.ldap[0].providerClass=org.ldaptive.provider.unboundid.UnboundIDProvider
cas.authn.ldap[0].connectTimeout=PT5S
cas.authn.ldap[0].trustCertificates=
cas.authn.ldap[0].keystore=
cas.authn.ldap[0].keystorePassword=
cas.authn.ldap[0].keystoreType=JKS
cas.authn.ldap[0].minPoolSize=3
cas.authn.ldap[0].maxPoolSize=10
cas.authn.ldap[0].validateOnCheckout=true
cas.authn.ldap[0].validatePeriodically=true
cas.authn.ldap[0].validatePeriod=PT5M
cas.authn.ldap[0].validateTimeout=PT5S
cas.authn.ldap[0].failFast=true
cas.authn.ldap[0].idleTime=PT10M
cas.authn.ldap[0].prunePeriod=PT2H
cas.authn.ldap[0].blockWaitTime=PT3S
cas.authn.ldap[0].useSsl=false
cas.authn.ldap[0].useStartTls=false
cas.authn.ldap[0].responseTimeout=PT5S
cas.authn.ldap[0].allowMultipleDns=false
cas.authn.ldap[0].allowMultipleEntries=false
cas.authn.ldap[0].followReferrals=false
cas.authn.ldap[0].binaryAttributes=objectGUID,someOtherAttribute
cas.authn.ldap[0].name=
cas.authn.ldap[0].type=AUTHENTICATED
cas.authn.ldap[0].baseDn=dc=example,dc=org
cas.authn.ldap[0].searchFilter=(|(uid={user})(mail={user})(mobile={user}))

然后重启tomcat

在这里插入图片描述
tomcat重启日志 其中包含cas启动日志

19-Feb-2024 23:55:24.556 INFO [main] org.apache.catalina.core.StandardServer.await A valid shutdown command was received via the shutdown port. Stopping the Server instance.
19-Feb-2024 23:55:24.557 INFO [main] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler ["http-nio-0.0.0.0-8080"]
19-Feb-2024 23:55:24.565 INFO [main] org.apache.coyote.AbstractProtocol.pause Pausing ProtocolHandler ["https-jsse-nio-8443"]
19-Feb-2024 23:55:24.567 INFO [main] org.apache.catalina.core.StandardService.stopInternal Stopping service [Catalina]
19-Feb-2024 23:55:24.594 INFO [main] org.apache.coyote.AbstractProtocol.stop Stopping ProtocolHandler ["http-nio-0.0.0.0-8080"]
19-Feb-2024 23:55:24.607 INFO [main] org.apache.coyote.AbstractProtocol.stop Stopping ProtocolHandler ["https-jsse-nio-8443"]
19-Feb-2024 23:55:24.615 INFO [main] org.apache.coyote.AbstractProtocol.destroy Destroying ProtocolHandler ["http-nio-0.0.0.0-8080"]
19-Feb-2024 23:55:24.616 INFO [main] org.apache.coyote.AbstractProtocol.destroy Destroying ProtocolHandler ["https-jsse-nio-8443"]
19-Feb-2024 23:55:24.622 WARNING [main] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [cas] appears to have started a thread named [Log4j2-TF-11-Scheduled-6] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 sun.misc.Unsafe.park(Native Method)
 java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
 java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
 java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
 java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
 java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
 java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
 java.lang.Thread.run(Thread.java:748)
19-Feb-2024 23:55:24.624 WARNING [main] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [cas] appears to have started a thread named [Log4j2-TF-12-AsyncLoggerConfig-7] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 sun.misc.Unsafe.park(Native Method)
 java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
 java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
 com.lmax.disruptor.TimeoutBlockingWaitStrategy.waitFor(TimeoutBlockingWaitStrategy.java:38)
 com.lmax.disruptor.ProcessingSequenceBarrier.waitFor(ProcessingSequenceBarrier.java:56)
 com.lmax.disruptor.BatchEventProcessor.processEvents(BatchEventProcessor.java:159)
 com.lmax.disruptor.BatchEventProcessor.run(BatchEventProcessor.java:125)
 java.lang.Thread.run(Thread.java:748)
19-Feb-2024 23:55:24.626 WARNING [main] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [cas] appears to have started a thread named [Thread-6] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 java.net.SocketInputStream.socketRead0(Native Method)
 java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
 java.net.SocketInputStream.read(SocketInputStream.java:171)
 java.net.SocketInputStream.read(SocketInputStream.java:141)
 java.io.BufferedInputStream.fill(BufferedInputStream.java:246)
 java.io.BufferedInputStream.read1(BufferedInputStream.java:286)
 java.io.BufferedInputStream.read(BufferedInputStream.java:345)
 com.sun.jndi.ldap.Connection.run(Connection.java:877)
 java.lang.Thread.run(Thread.java:748)
19-Feb-2024 23:55:24.629 WARNING [main] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [cas] appears to have started a thread named [Thread-7] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 java.net.SocketInputStream.socketRead0(Native Method)
 java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
 java.net.SocketInputStream.read(SocketInputStream.java:171)
 java.net.SocketInputStream.read(SocketInputStream.java:141)
 java.io.BufferedInputStream.fill(BufferedInputStream.java:246)
 java.io.BufferedInputStream.read1(BufferedInputStream.java:286)
 java.io.BufferedInputStream.read(BufferedInputStream.java:345)
 com.sun.jndi.ldap.Connection.run(Connection.java:877)
 java.lang.Thread.run(Thread.java:748)
19-Feb-2024 23:55:24.633 WARNING [main] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [cas] appears to have started a thread named [Thread-8] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 java.net.SocketInputStream.socketRead0(Native Method)
 java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
 java.net.SocketInputStream.read(SocketInputStream.java:171)
 java.net.SocketInputStream.read(SocketInputStream.java:141)
 java.io.BufferedInputStream.fill(BufferedInputStream.java:246)
 java.io.BufferedInputStream.read1(BufferedInputStream.java:286)
 java.io.BufferedInputStream.read(BufferedInputStream.java:345)
 com.sun.jndi.ldap.Connection.run(Connection.java:877)
 java.lang.Thread.run(Thread.java:748)
19-Feb-2024 23:55:24.634 WARNING [main] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [cas] appears to have started a thread named [Thread-9] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 java.net.SocketInputStream.socketRead0(Native Method)
 java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
 java.net.SocketInputStream.read(SocketInputStream.java:171)
 java.net.SocketInputStream.read(SocketInputStream.java:141)
 java.io.BufferedInputStream.fill(BufferedInputStream.java:246)
 java.io.BufferedInputStream.read1(BufferedInputStream.java:286)
 java.io.BufferedInputStream.read(BufferedInputStream.java:345)
 com.sun.jndi.ldap.Connection.run(Connection.java:877)
 java.lang.Thread.run(Thread.java:748)
19-Feb-2024 23:55:24.635 WARNING [main] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [cas] appears to have started a thread named [Thread-10] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 java.net.SocketInputStream.socketRead0(Native Method)
 java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
 java.net.SocketInputStream.read(SocketInputStream.java:171)
 java.net.SocketInputStream.read(SocketInputStream.java:141)
 java.io.BufferedInputStream.fill(BufferedInputStream.java:246)
 java.io.BufferedInputStream.read1(BufferedInputStream.java:286)
 java.io.BufferedInputStream.read(BufferedInputStream.java:345)
 com.sun.jndi.ldap.Connection.run(Connection.java:877)
 java.lang.Thread.run(Thread.java:748)
19-Feb-2024 23:55:24.636 WARNING [main] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [cas] appears to have started a thread named [Thread-11] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 java.net.SocketInputStream.socketRead0(Native Method)
 java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
 java.net.SocketInputStream.read(SocketInputStream.java:171)
 java.net.SocketInputStream.read(SocketInputStream.java:141)
 java.io.BufferedInputStream.fill(BufferedInputStream.java:246)
 java.io.BufferedInputStream.read1(BufferedInputStream.java:286)
 java.io.BufferedInputStream.read(BufferedInputStream.java:345)
 com.sun.jndi.ldap.Connection.run(Connection.java:877)
 java.lang.Thread.run(Thread.java:748)
19-Feb-2024 23:55:24.637 SEVERE [main] org.apache.catalina.loader.WebappClassLoaderBase.checkThreadLocalMapForLeaks The web application [cas] created a ThreadLocal with key of type [java.lang.ThreadLocal] (value [java.lang.ThreadLocal@6148b647]) and a value of type [org.apache.logging.log4j.core.LoggerContext] (value [org.apache.logging.log4j.core.LoggerContext@159d59d3]) but failed to remove it when the web application was stopped. Threads are going to be renewed over time to try and avoid a probable memory leak.
19-Feb-2024 23:55:28.068 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server version name:   Apache Tomcat/9.0.84
19-Feb-2024 23:55:28.070 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server built:          Dec 7 2023 19:27:40 UTC
19-Feb-2024 23:55:28.070 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server version number: 9.0.84.0
19-Feb-2024 23:55:28.070 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Name:               Linux
19-Feb-2024 23:55:28.071 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Version:            3.10.0-957.el7.x86_64
19-Feb-2024 23:55:28.071 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Architecture:          amd64
19-Feb-2024 23:55:28.072 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Java Home:             /usr/local/jdk1.8.0_202/jre
19-Feb-2024 23:55:28.072 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Version:           1.8.0_202-b08
19-Feb-2024 23:55:28.072 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Vendor:            Oracle Corporation
19-Feb-2024 23:55:28.072 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_BASE:         /usr/local/apache-tomcat-9.0.84
19-Feb-2024 23:55:28.073 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_HOME:         /usr/local/apache-tomcat-9.0.84
19-Feb-2024 23:55:28.073 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.util.logging.config.file=/usr/local/tomcat/conf/logging.properties
19-Feb-2024 23:55:28.073 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
19-Feb-2024 23:55:28.074 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Xms3g
19-Feb-2024 23:55:28.074 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Xmx3g
19-Feb-2024 23:55:28.074 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Xmn1g
19-Feb-2024 23:55:28.074 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Xss256k
19-Feb-2024 23:55:28.074 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -XX:+UseParallelGC
19-Feb-2024 23:55:28.075 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djdk.tls.ephemeralDHKeySize=2048
19-Feb-2024 23:55:28.075 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.protocol.handler.pkgs=org.apache.catalina.webresources
19-Feb-2024 23:55:28.076 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dorg.apache.catalina.security.SecurityListener.UMASK=0027
19-Feb-2024 23:55:28.076 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dignore.endorsed.dirs=
19-Feb-2024 23:55:28.076 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.base=/usr/local/tomcat
19-Feb-2024 23:55:28.076 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.home=/usr/local/tomcat
19-Feb-2024 23:55:28.076 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.io.tmpdir=/usr/local/tomcat/temp
19-Feb-2024 23:55:28.078 INFO [main] org.apache.catalina.core.AprLifecycleListener.lifecycleEvent The Apache Tomcat Native library which allows using OpenSSL was not found on the java.library.path: [/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib]
19-Feb-2024 23:55:28.416 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["http-nio-0.0.0.0-8080"]
19-Feb-2024 23:55:28.439 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["https-jsse-nio-8443"]
19-Feb-2024 23:55:28.788 INFO [main] org.apache.tomcat.util.net.AbstractEndpoint.logCertificate Connector [https-jsse-nio-8443], TLS virtual host [_default_], certificate type [UNDEFINED] configured from keystore [/usr/local/tomcat/conf/tomcatSSLkeystore/keystore] using alias [tomcat] with trust store [null]
19-Feb-2024 23:55:28.791 INFO [main] org.apache.catalina.startup.Catalina.load Server initialization in [914] milliseconds
19-Feb-2024 23:55:28.824 INFO [main] org.apache.catalina.core.StandardService.startInternal Starting service [Catalina]
19-Feb-2024 23:55:28.824 INFO [main] org.apache.catalina.core.StandardEngine.startInternal Starting Servlet engine: [Apache Tomcat/9.0.84]
19-Feb-2024 23:55:28.835 INFO [main] org.apache.catalina.startup.HostConfig.deployDescriptor Deploying deployment descriptor [/usr/local/apache-tomcat-9.0.84/conf/Catalina/localhost/fileDownloadSite.xml]
19-Feb-2024 23:55:29.084 INFO [main] org.apache.catalina.startup.HostConfig.deployDescriptor Deployment of deployment descriptor [/usr/local/apache-tomcat-9.0.84/conf/Catalina/localhost/fileDownloadSite.xml] has finished in [249] ms
19-Feb-2024 23:55:29.095 INFO [main] org.apache.catalina.startup.HostConfig.deployWAR Deploying web application archive [/usr/local/apache-tomcat-9.0.84/webapps/cas.war]
19-Feb-2024 23:55:36.275 INFO [main] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.


     _    ____  _____ ____  _____ ___     ____    _    ____  
    / \  |  _ \| ____|  _ \| ____/ _ \   / ___|  / \  / ___| 
   / _ \ | |_) |  _| | |_) |  _|| | | | | |     / _ \ \___ \ 
  / ___ \|  __/| |___|  _ <| |__| |_| | | |___ / ___ \ ___) |
 /_/   \_\_|   |_____|_| \_\_____\___/   \____/_/   \_\____/ 
                                                             

CAS Version: 5.3.16
CAS Commit Id: 1808d979b784500d4b4dd846003a0230f326b57d
CAS Build Date/Time: 2024-02-03T15:32:36Z
Spring Boot Version: 1.5.18.RELEASE
Spring Version: 4.3.25.RELEASE
Java Home: /usr/local/jdk1.8.0_202/jre
Java Vendor: Oracle Corporation
Java Version: 1.8.0_202
JVM Free Memory: 2 GB
JVM Maximum Memory: 2 GB
JVM Total Memory: 2 GB
JCE Installed: Yes
Node Version: N/A
NPM Version: N/A
OS Architecture: amd64
OS Name: Linux
OS Version: 3.10.0-957.el7.x86_64
OS Date/Time: 2024-02-19T23:56:18.787
OS Temp Directory: /usr/local/tomcat/temp
------------------------------------------------------------
Apache Tomcat Version: Apache Tomcat/9.0.84
------------------------------------------------------------


2024-02-19 23:56:18,812 INFO [org.apereo.cas.configuration.DefaultCasConfigurationPropertiesSourceLocator] - <Configuration directory [/etc/cas/config] is not a directory or cannot be found at the specific path>
2024-02-19 23:56:18,828 INFO [org.springframework.cloud.bootstrap.config.PropertySourceBootstrapConfiguration] - <Located property source: CompositePropertySource [name='casCompositePropertySource', propertySources=[PropertiesPropertySource {name='embeddedYamlOverriddenProperties'}]]>
2024-02-19 23:56:18,836 INFO [org.apereo.cas.web.CasWebApplicationServletInitializer] - <The following profiles are active: standalone>
2024-02-19 23:56:22,589 WARN [org.apereo.cas.config.CasCoreTicketsConfiguration] - <Runtime memory is used as the persistence storage for retrieving and managing tickets. Tickets that are issued during runtime will be LOST when the web server is restarted. This MAY impact SSO functionality.>
2024-02-19 23:56:22,592 INFO [org.apereo.cas.util.CoreTicketUtils] - <Ticket registry encryption/signing is turned off. This MAY NOT be safe in a clustered production environment. Consider using other choices to handle encryption, signing and verification of ticket registry tickets, and verify the chosen ticket registry does support this behavior.>
2024-02-19 23:56:28,652 INFO [org.apereo.cas.config.CasConfigurationSupportUtilitiesConfiguration] - <CAS is configured to NOT watch configuration directory [/etc/cas/config]. Changes require manual reloads/restarts.>
2024-02-19 23:56:34,546 INFO [org.apereo.cas.config.LdapAuthenticationConfiguration] - <Registering LDAP authentication for [LdapAuthenticationHandler]>
2024-02-19 23:57:00,903 INFO [org.springframework.cloud.commons.util.InetUtils] - <Cannot determine local hostname>
2024-02-19 23:57:01,444 INFO [org.apereo.cas.support.events.listener.CasConfigurationEventListener] - <Refreshing CAS configuration. Stand by...>
2024-02-19 23:57:02,813 WARN [org.apereo.cas.config.CasCoreServicesConfiguration] - <Runtime memory is used as the persistence storage for retrieving and persisting service definitions. Changes that are made to service definitions during runtime WILL be LOST when the web server is restarted. Ideally for production, you need to choose a storage option (JDBC, etc) to store and track service definitions.>
2024-02-19 23:57:02,854 INFO [org.apereo.cas.services.AbstractServicesManager] - <Loaded [0] service(s) from [InMemoryServiceRegistry].>
2024-02-19 23:57:08,349 WARN [org.apereo.cas.util.cipher.BaseStringCipherExecutor] - <Secret key for encryption is not defined for [Ticket-granting Cookie]; CAS will attempt to auto-generate the encryption key>
2024-02-19 23:57:08,358 WARN [org.apereo.cas.util.cipher.BaseStringCipherExecutor] - <Generated encryption key [v4BpPD5rR32xi2S6MwWZ6MNwrF-gfxkCDVUXirYpArw] of size [256] for [Ticket-granting Cookie]. The generated key MUST be added to CAS settings under setting [cas.tgc.crypto.encryption.key].>
2024-02-19 23:57:08,364 WARN [org.apereo.cas.util.cipher.BaseStringCipherExecutor] - <Secret key for signing is not defined for [Ticket-granting Cookie]. CAS will attempt to auto-generate the signing key>
2024-02-19 23:57:08,364 WARN [org.apereo.cas.util.cipher.BaseStringCipherExecutor] - <Generated signing key [NLOSnEB9m_1mP5IJWO2VlP61jiN8oWmfJbsNlCn-0ZTHcXQO_MIBolKklx5487tFJ_RRrTToA89zzNvNU6YEKA] of size [512] for [Ticket-granting Cookie]. The generated key MUST be added to CAS settings under setting [cas.tgc.crypto.signing.key].>
2024-02-19 23:57:08,943 WARN [org.apereo.cas.util.cipher.BaseBinaryCipherExecutor] - <Secret key for signing is not defined under [cas.webflow.crypto.signing.key]. CAS will attempt to auto-generate the signing key>
2024-02-19 23:57:08,944 WARN [org.apereo.cas.util.cipher.BaseBinaryCipherExecutor] - <Generated signing key [B2b6mQfzhX962PAggbmvu4IundaUim1rzgtfh0j0n4HuAnB-AFG7AGXtJh-O0vrniFTuruQ_73UUmYAYZ02hOQ] of size [512]. The generated key MUST be added to CAS settings under setting [cas.webflow.crypto.signing.key].>
2024-02-19 23:57:08,944 WARN [org.apereo.cas.util.cipher.BaseBinaryCipherExecutor] - <Secret key for encryption is not defined under [cas.webflow.crypto.encryption.key]. CAS will attempt to auto-generate the encryption key>
2024-02-19 23:57:08,946 WARN [org.apereo.cas.util.cipher.BaseBinaryCipherExecutor] - <Generated encryption key [cfTicgnnrxfJmuNN7mK3Pw] of size [16]. The generated key MUST be added to CAS settings under setting [cas.webflow.crypto.encryption.key].>
2024-02-19 23:57:09,106 INFO [org.apereo.cas.support.events.listener.DefaultCasEventListener] - <>
2024-02-19 23:57:09,106 INFO [org.apereo.cas.support.events.listener.DefaultCasEventListener] - <


  ____  _____    _    ______   __
 |  _ \| ____|  / \  |  _ \ \ / /
 | |_) |  _|   / _ \ | | | \ V / 
 |  _ <| |___ / ___ \| |_| || |  
 |_| \_\_____/_/   \_\____/ |_|  
                                 
>
2024-02-19 23:57:09,106 INFO [org.apereo.cas.support.events.listener.DefaultCasEventListener] - <>
2024-02-19 23:57:09,106 INFO [org.apereo.cas.support.events.listener.DefaultCasEventListener] - <Ready to process requests @ [2024-02-19T15:57:09.105Z]>
2024-02-19 23:57:09,110 INFO [org.apereo.cas.web.CasWebApplicationServletInitializer] - <Started CasWebApplicationServletInitializer in 75.823 seconds (JVM running for 101.482)>
19-Feb-2024 23:57:09.147 INFO [main] org.apache.catalina.startup.HostConfig.deployWAR Deployment of web application archive [/usr/local/apache-tomcat-9.0.84/webapps/cas.war] has finished in [100,052] ms
19-Feb-2024 23:57:09.148 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory [/usr/local/apache-tomcat-9.0.84/webapps/manager]
19-Feb-2024 23:57:09.182 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory [/usr/local/apache-tomcat-9.0.84/webapps/manager] has finished in [34] ms
19-Feb-2024 23:57:09.182 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory [/usr/local/apache-tomcat-9.0.84/webapps/ROOT]
19-Feb-2024 23:57:09.195 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory [/usr/local/apache-tomcat-9.0.84/webapps/ROOT] has finished in [13] ms
19-Feb-2024 23:57:09.195 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory [/usr/local/apache-tomcat-9.0.84/webapps/docs]
19-Feb-2024 23:57:09.211 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory [/usr/local/apache-tomcat-9.0.84/webapps/docs] has finished in [15] ms
19-Feb-2024 23:57:09.211 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory [/usr/local/apache-tomcat-9.0.84/webapps/examples]
19-Feb-2024 23:57:09.340 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory [/usr/local/apache-tomcat-9.0.84/webapps/examples] has finished in [129] ms
19-Feb-2024 23:57:09.340 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory [/usr/local/apache-tomcat-9.0.84/webapps/tmp]
19-Feb-2024 23:57:09.360 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory [/usr/local/apache-tomcat-9.0.84/webapps/tmp] has finished in [15] ms
19-Feb-2024 23:57:09.361 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory [/usr/local/apache-tomcat-9.0.84/webapps/host-manager]
19-Feb-2024 23:57:09.389 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory [/usr/local/apache-tomcat-9.0.84/webapps/host-manager] has finished in [27] ms
19-Feb-2024 23:57:09.392 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["http-nio-0.0.0.0-8080"]
19-Feb-2024 23:57:09.417 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["https-jsse-nio-8443"]
19-Feb-2024 23:57:09.430 INFO [main] org.apache.catalina.startup.Catalina.start Server startup in [100638] milliseconds

再次访问 https://tomcat-server-ip:8443/cas
只不过因为对接了ldap 需要在cas登录界面使用ldap存储的用户名密码进行登录

比如openldap中有 ein 和 zwei 2个账号

在这里插入图片描述

使用ein和zwei都可以登录进cas

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

至此cas对接openldap 完成

后面再写单点登录 可以直接使用cas官方提供的客户端程序demo 进行单点登录测试

  • 18
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值