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

centos 7.6 安装cas 对ldap 单点登录实战

  • 1、安装前准备工作
    • 1.1、centos 7.6 安装JDK 1.8
    • 1.2、centos 7 安装tomcat 9.0.84
    • 1.3、windows10 安装JDK 1.8
    • 1.4、windows10 安装打包工具 maven 3.9.6
  • 2、下载cas 5.3 并打包成war包
  • 3、部署cas到tomcat
  • 4、cas对接ldap

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

官网参考链接: 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=example,dc=org
# 用户名匹配规则,简单的可以只写成uid={user}
cas.authn.ldap[0].searchFilter=(|(uid={user})(mail={user})(mobile={user}))
# CAS用于绑定的DN
cas.authn.ldap[0].bindDn=cn=admin,dc=example,dc=org
# CAS用于绑定的DN的密码
cas.authn.ldap[0].bindCredential=admin
# 登入成功后可以查看到的信息,此条可以不写
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}))

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mfbz.cn/a/375742.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

SQL注入讲解-BeesCMS系统漏洞分析溯源

判断网页框架 渗透思路 以前的思路 1.首先识别一下指纹 根据指纹查找历史漏洞(同样适用现在) 2.查找目录(目录里面会有很多惊喜) 通过御剑后台扫描工具找到文件夹后在网页打开文件夹进行测试 通过百度搜索查看历史漏洞 查看源代码发现它对账号和密码只有二个加密 我们通过bu…

LeetCode:26.删除有序数组中的重复项

26. 删除有序数组中的重复项 - 力扣&#xff08;LeetCode&#xff09; 目录 题目&#xff1a; 思路&#xff1a; 代码注释&#xff1a; 每日表情包&#xff1a; 题目&#xff1a; 思路&#xff1a; 没啥特殊的&#xff0c;老老实实双指针遍历数组&#xff0c;&#xff0…

谷歌seo搜索引擎优化教程有吗?

教程&#xff0c;教学&#xff0c;指南&#xff0c;这些东西哪里都有&#xff0c;尤其是关于seo相关方面的&#xff0c;这些可以说到处都是&#xff0c;能把谷歌seo这个关键词做上去的&#xff0c;可以说就是实力的证明了&#xff0c;在这里我们说一个无论是老手还是新手都应该…

archlinux 使用 electron-ssr 代理 socks5

提前下载好 pacman 包 https://github.com/shadowsocksrr/electron-ssr/releases/download/v0.2.7/electron-ssr-0.2.7.pacman 首先要有 yay 和 aur 源&#xff0c;这个可以参考我之前的博客 虚拟机内使用 archinstall 安装 arch linux 2024.01.01 安装依赖 yay 安装的&#…

Linux下centos操作系统安装Mysql8.0过程及踩坑填补

我自己有一台服务器&#xff0c;之前安装的是MySQL5.5&#xff0c;现在我想升级为MySQL8.0&#xff0c;于是我干了以下操作,既有踩坑又有干货&#xff1a; 1.先卸载MySQL&#xff1b; 2.删除跟MySQL相关文件&#xff1b; 3.安装新的MySQL8.0版本&#xff08;这里踩了一个坑&…

破除Github API接口的访问次数限制

破除Github API接口的访问次数限制 1、Github介绍2、Github API接口2.1 介绍2.2 使用方法 3、Github API访问限制3.1 访问限制原因3.2 访问限制类别 4、Github API访问限制破除4.1 限制破除原理4.2 限制破除示例 1、Github介绍 Github&#xff0c;是一个面向开源及私有软件项目…

VS2017+Qt中文无法编译通过newline in constant解决办法

首先说我的解决办法 Tools->Extensions and Updates… 安装ForceUTF8(with BOM) 注意Force这个插件有好几个版本&#xff0c;一定要withBOM&#xff01;&#xff01;&#xff01;我之前安装的没有BOM导致改了各种设置还是一直编译不过&#xff0c;差点没气死我 另外代码里…

Mac电脑删除第三方软件的最简单方法(2024最新教程)

Mac用户经常会下载各种第三方软件来提高工作效率或娱乐体验。然而&#xff0c;随着时间的推移&#xff0c;一些软件可能不再需要&#xff0c;或者用户可能想要清理空间。在这种情况下&#xff0c;有效地删除这些第三方软件变得尤为重要。本文将介绍几种常规的Mac删除第三方软件…

react+antd+CheckableTag实现Tag标签单选或多选功能

1、效果如下图 实现tag标签单选或多选功能 2、环境准备 1、react18 2、antd 4 3、功能实现 原理: 封装一个受控组件&#xff0c;接受父组件的参数&#xff0c;数据发现变化后&#xff0c;回传给父组件 1、首先&#xff0c;引入CheckableTag组件和useEffect, useMemo, use…

动态规划01 三步问题[C++]

​​​​​​ 图源&#xff1a;文心一言 上机题目练习整理&#xff0c;本篇作为动态规划的代码&#xff0c;因为做题入门很少找到带图的讲解&#xff08;难道是因为太简单&#xff0c;所以没有人嘛&#xff09;&#xff0c;所以干脆自己写一份&#xff0c;供小伙伴们参考~&am…

CSS的动画

CSS的动画 在本节&#xff0c;我们将学习keyframes动画。 1. 动画的基本使用 1. 定义动画 定义动画有两种写法&#xff1a; 简单定义方式 keyframes 动画名 {/* from代表初始状态 */from {/*property1:value1*/transform: translate(0%);}/* to代表结束状态 */to {transfor…

Win32 SDK Gui编程系列之--弹出式菜单

1.弹出式菜单 例如,在命令提示窗口中点击鼠标右键,会出现如下图所示的弹出菜单(下拉菜单)。 这种弹出式菜单的实现很简单。不创建菜单栏,用CreatePopupMenu函数创建的菜单是最顶端的菜单就可以了。 菜单的显示使用TrackPopupMenu函数进行。 例如,点击鼠标右键显示弹出…

JAVA装饰器模式详解

装饰器模式 1 装饰器模式介绍 装饰模式(decorator pattern) 的原始定义是&#xff1a;动态的给一个对象添加一些额外的职责. 就扩展功能而言,装饰器模式提供了一种比使用子类更加灵活的替代方案. 假设现在有有一块蛋糕,如果只有涂上奶油那这个蛋糕就是普通的奶油蛋糕, 这时如…

[职场] 智能材料与结构专业的就业前景 #经验分享#学习方法

智能材料与结构专业的就业前景 智能材料与结构专业是面向国家智能制造强国战略&#xff0c;面向地方经济新旧动能转换需求&#xff0c;学习智能材料与结构的基础理论及基本知识&#xff0c;接受智能材料制备、组织分析、性能测试、智能材料系统集成技能的基本训练&#xff0c;…

蓝桥杯省赛无忧 课件127 线段树维护哈希

01 问题引入 02 算法思路 03 代码实现 04 例题讲解

Linux中共享内存(mmap函数的使用)

内存映射的基本使用 内存映射 概念&#xff1a; 使一个磁盘文件与内存中的一个缓冲区相映射&#xff0c;进程可以像访问普通内存一样对文件进行访问&#xff0c;不必再调用read,write。 mmap()的优点&#xff1a; 实现了用户空间和内核空间的高效交互方式 优化前&#xff1a;优…

时序数据库Influxdb查询多个字段_field同一时间的值,组成一条数据

Influxdb将表格数据多个字段_field从垂直列布局聚合成水平布局行字段。 问题 1、Influxdb 是一种时间序列数据库&#xff0c;在我的项目中主要用来存储换热站的测点数据的。换热站有非常多的测点&#xff0c;我们用Flux 语法去查询测点数据&#xff0c;返回的数据结构是每个测…

【MySQL进阶之路】MySQL生产环境部署该如何选择机器配置?

欢迎关注公众号&#xff08;通过文章导读关注&#xff1a;【11来了】&#xff09;&#xff0c;及时收到 AI 前沿项目工具及新技术的推送&#xff01; 在我后台回复 「资料」 可领取编程高频电子书&#xff01; 在我后台回复「面试」可领取硬核面试笔记&#xff01; 文章导读地址…

酷开科技,打造非凡的生活体验

酷开科技&#xff0c;作为一家专注于智能电视操作系统研发及智能电视运营增值服务的高科技企业&#xff0c;始终致力于为消费者提供非凡的生活体验。通过不断创新的技术和产品&#xff0c;酷开科技为消费者们带来了便捷、舒适、个性化的智能生活。 首先&#xff0c;酷开科技在智…

阿里云游戏服务器收费价格表,一年和1个月报价

阿里云游戏服务器租用价格表&#xff1a;4核16G服务器26元1个月、146元半年&#xff0c;游戏专业服务器8核32G配置90元一个月、271元3个月&#xff0c;阿里云服务器网aliyunfuwuqi.com分享阿里云游戏专用服务器详细配置和精准报价&#xff1a; 阿里云游戏服务器租用价格表 阿…
最新文章