jodd3.3

download url:http://jodd.org/download/index.html

Jodd 3.3发布了,该版本新增了一个Lagarto HTML解析器和Decora页面修饰器以及Jerry和一些小的改进

Jodd是一个普通开源Java包。你可以把Jodd想象成Java的“瑞士军刀”,不仅小,锋利而且包含许多便利的功能。

Jodd提供的功能有:

1. 提供操作Java bean

2. 可以从各种数据源加载Bean

3. 简化JDBC的接连与代码

4. 剖析SQL查询

5. 处理时间与日期

6. 操作与格式化String

7. 搜索本地硬盘上的文件

8. 帮助处理Servlet请求等

除此之外还包含一个很小,但实用的基于JSP的MVC框架。

简化和统一 controller ,抛弃 extends SimpleFormController ,统一使用 implements Controller 的方式。

2. 简化 JSP 页面的 bind, 不需要一个字段一个字段的绑定。

3. bean 没有任何要求,可以使用任意的 bean 做为 formBean.

使用方法简介:

jodd.jar 放到 web-inf->lib 下,在 web.xml 里声名标签:

< taglib >

< taglib-uri > jodd </ taglib-uri >

< taglib-location > /WEB-INF/lib/jodd.jar </ taglib-location >

</ taglib >

任意的一个 javaBean做为FormBean

package caike;

public class User {

private String userName;

private String password;


public String getPassword() {

return password;

}

public void setPassword(String pwd) {

this .password = pwd;

}

public String getUserName() {

return userName;

}

public void setUserName(String username) {

this .userName = username;

}


}

JSP 页面使用 jodd tag:, 比如对应用户登录页面的

<% @page import = " caike.User " %>

<% @taglib uri = " jodd " prefix = " jodd " %>



< jodd:form beans ="user" scopes ="session" >

< form action ="my.htm" method ="post" >


< table width ="300" border ="0" cellspacing ="0" cellpadding ="0"

align ="center" class ="white" >

< tr >

< td height ="32" align ="right" width ="107" > 用户名: </ td >

< td height ="32" width ="193" >< input type ="text" name ="userName"

class ="input" size ="20" > </ td >

</ tr >

< tr >

< td height ="33" align ="right" width ="107" > 密码: </ td >

< td height ="33" width ="193" >< input type ="password" name ="password"

class ="input" size ="21" ></ td >

</ tr >


< tr >

< td height ="69" align ="center" colspan ="2" >

< input type ="submit" name ="Submit" value ="登录" >

</ tr >

</ table >

</ form >

</ jodd:form >

Dispatch-servelt.xml 中对 controller 的配置

<bean id="myController" class="caike.MyController">

</bean>

不再需要这种方式:

<!--

<bean id="myController" class="caike.MyFormController">

<property name="commandClass" value="caike" />

<property name="formView" value="userForm" />

</bean>

-->

controller 中取出 user

package caike;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import jodd.bean.BeanUtil;

import org.springframework.web.servlet.ModelAndView;

import org.springframework.web.servlet.mvc.Controller;



public class MyController implements Controller {



public ModelAndView handleRequest(HttpServletRequest request,

HttpServletResponse response)
throws Exception {



User user
= new User();

BeanUtil.load(user, request);

System.out.println(
" 用户名: " + user.getUserName() + " 密码: " + user.getPassword());

return null ;

}



}

需要注意的地方:

表单中对应的名字 name javaBean 里对应的属性名要相同。

<input type="text" name="userName"

class="input" size="20">

public class User {

private String userName;
.......

Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom (7.9 kB at 46 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar (33 kB at 464 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-deploy-plugin/2.5/maven-deploy-plugin-2.5.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-deploy-plugin/2.5/maven-deploy-plugin-2.5.pom (5.7 kB at 119 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-deploy-plugin/2.5/maven-deploy-plugin-2.5.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-deploy-plugin/2.5/maven-deploy-plugin-2.5.jar (23 kB at 420 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.17/maven-surefire-plugin-2.17.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.17/maven-surefire-plugin-2.17.pom (5.0 kB at 98 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/surefire/surefire/2.17/surefire-2.17.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/surefire/surefire/2.17/surefire-2.17.pom (17 kB at 333 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.17/maven-surefire-plugin-2.17.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.17/maven-surefire-plugin-2.17.jar (34 kB at 423 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.2/maven-war-plugin-2.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.2/maven-war-plugin-2.2.pom (6.5 kB at 144 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.2/maven-war-plugin-2.2.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.2/maven-war-plugin-2.2.jar (79 kB at 1.0 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom (8.1 kB at 169 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar (30 kB at 602 kB/s) [INFO] [INFO] ---------------------------< com.sciyon:SCM >--------------------------- [INFO] Building SCM 1.0.0.0-SNAPSHOT [INFO] --------------------------------[ war ]--------------------------------- Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sciyon/syncplant5-common/1.2.3.33/syncplant5-common-1.2.3.33.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sciyon/syncplant5-common/1.2.3.33/syncplant5-common-1.2.3.33.pom (34 kB at 542 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom (5.3 kB at 118 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom (9.8 kB at 181 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-webmvc/3.2.17.RELEASE/spring-webmvc-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-webmvc/3.2.17.RELEASE/spring-webmvc-3.2.17.RELEASE.pom (8.9 kB at 168 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/3.2.17.RELEASE/spring-beans-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/3.2.17.RELEASE/spring-beans-3.2.17.RELEASE.pom (1.9 kB at 41 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/3.2.17.RELEASE/spring-core-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/3.2.17.RELEASE/spring-core-3.2.17.RELEASE.pom (2.2 kB at 45 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom (18 kB at 353 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/28/commons-parent-28.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/28/commons-parent-28.pom (50 kB at 880 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/3.2.17.RELEASE/spring-context-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/3.2.17.RELEASE/spring-context-3.2.17.RELEASE.pom (4.9 kB at 102 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/3.2.17.RELEASE/spring-aop-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/3.2.17.RELEASE/spring-aop-3.2.17.RELEASE.pom (2.5 kB at 56 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/aopalliance/aopalliance/1.0/aopalliance-1.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 7.7 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/3.2.17.RELEASE/spring-expression-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/3.2.17.RELEASE/spring-expression-3.2.17.RELEASE.pom (1.6 kB at 33 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-web/3.2.17.RELEASE/spring-web-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-web/3.2.17.RELEASE/spring-web-3.2.17.RELEASE.pom (7.0 kB at 160 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/3.2.17.RELEASE/spring-jdbc-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/3.2.17.RELEASE/spring-jdbc-3.2.17.RELEASE.pom (3.4 kB at 73 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/3.2.17.RELEASE/spring-tx-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/3.2.17.RELEASE/spring-tx-3.2.17.RELEASE.pom (3.2 kB at 72 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/spring-data-jpa/1.5.2.RELEASE/spring-data-jpa-1.5.2.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/spring-data-jpa/1.5.2.RELEASE/spring-data-jpa-1.5.2.RELEASE.pom (12 kB at 260 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/build/spring-data-parent/1.3.2.RELEASE/spring-data-parent-1.3.2.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/build/spring-data-parent/1.3.2.RELEASE/spring-data-parent-1.3.2.RELEASE.pom (23 kB at 441 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/build/spring-data-build/1.3.2.RELEASE/spring-data-build-1.3.2.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/build/spring-data-build/1.3.2.RELEASE/spring-data-build-1.3.2.RELEASE.pom (2.4 kB at 65 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-framework-bom/4.0.3.RELEASE/spring-framework-bom-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-framework-bom/4.0.3.RELEASE/spring-framework-bom-4.0.3.RELEASE.pom (5.1 kB at 122 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/spring-data-commons/1.7.2.RELEASE/spring-data-commons-1.7.2.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/spring-data-commons/1.7.2.RELEASE/spring-data-commons-1.7.2.RELEASE.pom (5.9 kB at 158 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/4.0.3.RELEASE/spring-core-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/4.0.3.RELEASE/spring-core-4.0.3.RELEASE.pom (2.3 kB at 62 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/4.0.3.RELEASE/spring-beans-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/4.0.3.RELEASE/spring-beans-4.0.3.RELEASE.pom (2.3 kB at 61 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom (2.7 kB at 63 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom (12 kB at 322 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/jcl-over-slf4j/1.7.6/jcl-over-slf4j-1.7.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/jcl-over-slf4j/1.7.6/jcl-over-slf4j-1.7.6.pom (1.9 kB at 64 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/4.0.3.RELEASE/spring-orm-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/4.0.3.RELEASE/spring-orm-4.0.3.RELEASE.pom (6.9 kB at 172 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/4.0.3.RELEASE/spring-jdbc-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/4.0.3.RELEASE/spring-jdbc-4.0.3.RELEASE.pom (3.5 kB at 110 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/4.0.3.RELEASE/spring-tx-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/4.0.3.RELEASE/spring-tx-4.0.3.RELEASE.pom (3.4 kB at 102 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/4.0.3.RELEASE/spring-context-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/4.0.3.RELEASE/spring-context-4.0.3.RELEASE.pom (4.8 kB at 48 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/4.0.3.RELEASE/spring-aop-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/4.0.3.RELEASE/spring-aop-4.0.3.RELEASE.pom (2.7 kB at 60 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/4.0.3.RELEASE/spring-expression-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/4.0.3.RELEASE/spring-expression-4.0.3.RELEASE.pom (1.7 kB at 45 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/aspectj/aspectjrt/1.7.4/aspectjrt-1.7.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/aspectj/aspectjrt/1.7.4/aspectjrt-1.7.4.pom (1.0 kB at 24 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/3.2.17.RELEASE/spring-orm-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/3.2.17.RELEASE/spring-orm-3.2.17.RELEASE.pom (5.9 kB at 128 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context-support/3.2.17.RELEASE/spring-context-support-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context-support/3.2.17.RELEASE/spring-context-support-3.2.17.RELEASE.pom (4.5 kB at 101 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/aspectj/aspectjweaver/1.7.1/aspectjweaver-1.7.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/aspectj/aspectjweaver/1.7.1/aspectjweaver-1.7.1.pom (1.0 kB at 28 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-explorer/5.22.0/activiti-explorer-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-explorer/5.22.0/activiti-explorer-5.22.0.pom (6.9 kB at 136 kB/s) Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/33/commons-parent-33.pom (53 kB at 1.0 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/joda-time/joda-time/2.6/joda-time-2.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/joda-time/joda-time/2.6/joda-time-2.6.pom (27 kB at 531 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-process-validation/5.22.0/activiti-process-validation-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-process-validation/5.22.0/activiti-process-validation-5.22.0.pom (3.3 kB at 76 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-image-generator/5.22.0/activiti-image-generator-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-image-generator/5.22.0/activiti-image-generator-5.22.0.pom (3.5 kB at 77 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-email/1.4/commons-email-1.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-email/1.4/commons-email-1.4.pom (17 kB at 330 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/37/commons-parent-37.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/37/commons-parent-37.pom (63 kB at 1.3 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/16/apache-16.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/16/apache-16.pom (15 kB at 385 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/mail/javax.mail/1.5.2/javax.mail-1.5.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/mail/javax.mail/1.5.2/javax.mail-1.5.2.pom (4.3 kB at 110 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/mail/all/1.5.2/all-1.5.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/mail/all/1.5.2/all-1.5.2.pom (20 kB at 531 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/java/jvnet-parent/1/jvnet-parent-1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/java/jvnet-parent/1/jvnet-parent-1.pom (4.7 kB at 118 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/activation/activation/1.1/activation-1.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/activation/activation/1.1/activation-1.1.pom (1.1 kB at 25 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/activation/activation/1.1.1/activation-1.1.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/activation/activation/1.1.1/activation-1.1.1.pom (644 B at 17 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/mybatis/mybatis/3.3.0/mybatis-3.3.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/mybatis/mybatis/3.3.0/mybatis-3.3.0.pom (11 kB at 317 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/mybatis/mybatis-parent/24/mybatis-parent-24.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/mybatis/mybatis-parent/24/mybatis-parent-24.pom (32 kB at 791 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/4.1.5.RELEASE/spring-beans-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/4.1.5.RELEASE/spring-beans-4.1.5.RELEASE.pom (2.5 kB at 71 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/4.1.5.RELEASE/spring-core-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/4.1.5.RELEASE/spring-core-4.1.5.RELEASE.pom (2.5 kB at 64 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-logging/commons-logging/1.2/commons-logging-1.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 436 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/34/commons-parent-34.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 1.3 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-spring/5.22.0/activiti-spring-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-spring/5.22.0/activiti-spring-5.22.0.pom (14 kB at 386 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/4.1.5.RELEASE/spring-context-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/4.1.5.RELEASE/spring-context-4.1.5.RELEASE.pom (4.8 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/4.1.5.RELEASE/spring-aop-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/4.1.5.RELEASE/spring-aop-4.1.5.RELEASE.pom (2.7 kB at 72 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/4.1.5.RELEASE/spring-expression-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/4.1.5.RELEASE/spring-expression-4.1.5.RELEASE.pom (1.7 kB at 45 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/4.1.5.RELEASE/spring-jdbc-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/4.1.5.RELEASE/spring-jdbc-4.1.5.RELEASE.pom (3.5 kB at 107 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/4.1.5.RELEASE/spring-tx-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/4.1.5.RELEASE/spring-tx-4.1.5.RELEASE.pom (3.4 kB at 70 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/4.1.5.RELEASE/spring-orm-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/4.1.5.RELEASE/spring-orm-4.1.5.RELEASE.pom (6.9 kB at 176 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-dbcp/commons-dbcp/1.4/commons-dbcp-1.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-dbcp/commons-dbcp/1.4/commons-dbcp-1.4.pom (11 kB at 293 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/12/commons-parent-12.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/12/commons-parent-12.pom (27 kB at 769 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-pool/commons-pool/1.5.4/commons-pool-1.5.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-pool/commons-pool/1.5.4/commons-pool-1.5.4.pom (11 kB at 311 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-json-converter/5.22.0/activiti-json-converter-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-json-converter/5.22.0/activiti-json-converter-5.22.0.pom (5.2 kB at 138 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/math/geom2d/javaGeom/0.11.1/javaGeom-0.11.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/math/geom2d/javaGeom/0.11.1/javaGeom-0.11.1.pom (1.6 kB at 40 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-simple-workflow/5.22.0/activiti-simple-workflow-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-simple-workflow/5.22.0/activiti-simple-workflow-5.22.0.pom (5.5 kB at 157 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-bpmn-layout/5.22.0/activiti-bpmn-layout-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-bpmn-layout/5.22.0/activiti-bpmn-layout-5.22.0.pom (4.0 kB at 81 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/tinyjee/jgraphx/jgraphx/1.10.4.1/jgraphx-1.10.4.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/tinyjee/jgraphx/jgraphx/1.10.4.1/jgraphx-1.10.4.1.pom (8.8 kB at 205 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-crystalball/5.22.0/activiti-crystalball-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-crystalball/5.22.0/activiti-crystalball-5.22.0.pom (4.4 kB at 115 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-log4j12/1.7.6/slf4j-log4j12-1.7.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-log4j12/1.7.6/slf4j-log4j12-1.7.6.pom (1.6 kB at 48 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/log4j/log4j/1.2.17/log4j-1.2.17.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 kB at 558 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/vaadin/vaadin/6.8.8/vaadin-6.8.8.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/vaadin/vaadin/6.8.8/vaadin-6.8.8.pom (3.1 kB at 72 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/h2database/h2/1.3.176/h2-1.3.176.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/h2database/h2/1.3.176/h2-1.3.176.pom (973 B at 22 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-web/4.1.5.RELEASE/spring-web-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-web/4.1.5.RELEASE/spring-web-4.1.5.RELEASE.pom (7.5 kB at 164 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/imgscalr/imgscalr-lib/4.2/imgscalr-lib-4.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/imgscalr/imgscalr-lib/4.2/imgscalr-lib-4.2.pom (3.6 kB at 97 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.0.1/commons-io-2.0.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.0.1/commons-io-2.0.1.pom (9.0 kB at 220 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/15/commons-parent-15.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/15/commons-parent-15.pom (32 kB at 674 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/7/apache-7.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/7/apache-7.pom (14 kB at 321 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/groovy/groovy-all/2.4.5/groovy-all-2.4.5.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/groovy/groovy-all/2.4.5/groovy-all-2.4.5.pom (20 kB at 497 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.2.3/jackson-core-2.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.2.3/jackson-core-2.2.3.pom (6.0 kB at 133 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/oss-parent/10/oss-parent-10.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/oss-parent/10/oss-parent-10.pom (23 kB at 647 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.2.3/jackson-databind-2.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.2.3/jackson-databind-2.2.3.pom (5.4 kB at 149 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/oss-parent/11/oss-parent-11.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/oss-parent/11/oss-parent-11.pom (23 kB at 594 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.2.3/jackson-annotations-2.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.2.3/jackson-annotations-2.2.3.pom (1.3 kB at 31 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/vaadin/vaadin/6.8.18/vaadin-6.8.18.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/vaadin/vaadin/6.8.18/vaadin-6.8.18.pom (3.1 kB at 78 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-core/1.12.0/shiro-core-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-core/1.12.0/shiro-core-1.12.0.pom (5.2 kB at 82 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-root/1.12.0/shiro-root-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-root/1.12.0/shiro-root-1.12.0.pom (75 kB at 1.3 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/29/apache-29.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/29/apache-29.pom (21 kB at 414 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-lang/1.12.0/shiro-lang-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-lang/1.12.0/shiro-lang-1.12.0.pom (3.2 kB at 77 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 67 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 336 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-cache/1.12.0/shiro-cache-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-cache/1.12.0/shiro-cache-1.12.0.pom (2.4 kB at 56 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-hash/1.12.0/shiro-crypto-hash-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-hash/1.12.0/shiro-crypto-hash-1.12.0.pom (3.1 kB at 68 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto/1.12.0/shiro-crypto-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto/1.12.0/shiro-crypto-1.12.0.pom (1.5 kB at 41 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-core/1.12.0/shiro-crypto-core-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-core/1.12.0/shiro-crypto-core-1.12.0.pom (2.4 kB at 49 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-cipher/1.12.0/shiro-crypto-cipher-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-cipher/1.12.0/shiro-crypto-cipher-1.12.0.pom (3.3 kB at 72 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config-core/1.12.0/shiro-config-core-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config-core/1.12.0/shiro-config-core-1.12.0.pom (2.4 kB at 57 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config/1.12.0/shiro-config-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config/1.12.0/shiro-config-1.12.0.pom (1.5 kB at 37 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config-ogdl/1.12.0/shiro-config-ogdl-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config-ogdl/1.12.0/shiro-config-ogdl-1.12.0.pom (4.1 kB at 88 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-event/1.12.0/shiro-event-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-event/1.12.0/shiro-event-1.12.0.pom (2.4 kB at 59 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 367 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/47/commons-parent-47.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 1.4 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 288 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/39/commons-parent-39.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 1.3 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-web/1.12.0/shiro-web-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-web/1.12.0/shiro-web-1.12.0.pom (4.5 kB at 116 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom (4.1 kB at 88 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom (20 kB at 430 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-spring/1.12.0/shiro-spring-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-spring/1.12.0/shiro-spring-1.12.0.pom (4.5 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-support/1.12.0/shiro-support-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-support/1.12.0/shiro-support-1.12.0.pom (1.8 kB at 42 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-ehcache/1.12.0/shiro-ehcache-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-ehcache/1.12.0/shiro-ehcache-1.12.0.pom (3.1 kB at 71 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/sf/ehcache/ehcache-core/2.6.11/ehcache-core-2.6.11.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/sf/ehcache/ehcache-core/2.6.11/ehcache-core-2.6.11.pom (31 kB at 728 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/sf/ehcache/ehcache-parent/2.5/ehcache-parent-2.5.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/sf/ehcache/ehcache-parent/2.5/ehcache-parent-2.5.pom (16 kB at 387 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom (3.0 kB at 79 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom (9.3 kB at 274 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/joda-time/joda-time/2.9.7/joda-time-2.9.7.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/joda-time/joda-time/2.9.7/joda-time-2.9.7.pom (33 kB at 803 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/jodd/jodd/3.3.8/jodd-3.3.8.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/jodd/jodd/3.3.8/jodd-3.3.8.pom (1.9 kB at 65 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-lang/commons-lang/2.6/commons-lang-2.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-lang/commons-lang/2.6/commons-lang-2.6.pom (17 kB at 427 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/17/commons-parent-17.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/17/commons-parent-17.pom (31 kB at 725 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 681 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/52/commons-parent-52.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 1.8 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/23/apache-23.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/23/apache-23.pom (18 kB at 449 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 119 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/dom4j/dom4j/1.6.1/dom4j-1.6.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/dom4j/dom4j/1.6.1/dom4j-1.6.1.pom (6.8 kB at 165 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 66 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/google/zxing/core/3.3.0/core-3.3.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/google/zxing/core/3.3.0/core-3.3.0.pom (2.1 kB at 59 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/google/zxing/zxing-parent/3.3.0/zxing-parent-3.3.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/google/zxing/zxing-parent/3.3.0/zxing-parent-3.3.0.pom (28 kB at 644 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-codec/commons-codec/1.15/commons-codec-1.15.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 377 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/alibaba/fastjson/1.2.83/fastjson-1.2.83.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/alibaba/fastjson/1.2.83/fastjson-1.2.83.pom (11 kB at 248 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 150 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 364 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 807 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 142 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 338 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-codec/commons-codec/1.11/commons-codec-1.11.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 368 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/42/commons-parent-42.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 1.7 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.pom (5.2 kB at 141 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom (16 kB at 410 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom (16 kB at 377 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/56/commons-parent-56.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/56/commons-parent-56.pom (82 kB at 1.8 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 166 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom (20 kB at 470 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 134 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.11.0/jackson-core-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.11.0/jackson-core-2.11.0.pom (4.9 kB at 122 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jackson-base/2.11.0/jackson-base-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jackson-base/2.11.0/jackson-base-2.11.0.pom (7.4 kB at 173 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom (13 kB at 272 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.11.0/jackson-databind-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.11.0/jackson-databind-2.11.0.pom (7.4 kB at 151 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.11.0/jackson-jaxrs-json-provider-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.11.0/jackson-jaxrs-json-provider-2.11.0.pom (4.0 kB at 76 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.11.0/jackson-jaxrs-providers-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.11.0/jackson-jaxrs-providers-2.11.0.pom (4.8 kB at 94 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.11.0/jackson-jaxrs-base-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.11.0/jackson-jaxrs-base-2.11.0.pom (1.7 kB at 39 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.11.0/jackson-annotations-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.11.0/jackson-annotations-2.11.0.pom (3.5 kB at 81 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.11.0/jackson-module-jaxb-annotations-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.11.0/jackson-module-jaxb-annotations-2.11.0.pom (3.5 kB at 86 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-modules-base/2.11.0/jackson-modules-base-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-modules-base/2.11.0/jackson-modules-base-2.11.0.pom (3.4 kB at 86 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom (16 kB at 302 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.2/jakarta.xml.bind-api-parent-2.3.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.2/jakarta.xml.bind-api-parent-2.3.2.pom (7.7 kB at 150 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom (4.6 kB at 91 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/activation/all/1.2.1/all-1.2.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/activation/all/1.2.1/all-1.2.1.pom (18 kB at 402 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom (12 kB at 322 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-jaxws/3.0.0/cxf-rt-frontend-jaxws-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-jaxws/3.0.0/cxf-rt-frontend-jaxws-3.0.0.pom (19 kB at 446 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-parent/3.0.0/cxf-parent-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-parent/3.0.0/cxf-parent-3.0.0.pom (93 kB at 1.7 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf/3.0.0/cxf-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf/3.0.0/cxf-3.0.0.pom (34 kB at 841 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.pom (1.6 kB at 34 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/3/apache-3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/3/apache-3.pom (3.4 kB at 90 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/asm/asm/3.3.1/asm-3.3.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/asm/asm/3.3.1/asm-3.3.1.pom (266 B at 7.4 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom (4.3 kB at 111 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-core/3.0.0/cxf-core-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-core/3.0.0/cxf-core-3.0.0.pom (17 kB at 416 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/woodstox/woodstox-core-asl/4.3.0/woodstox-core-asl-4.3.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/woodstox/woodstox-core-asl/4.3.0/woodstox-core-asl-4.3.0.pom (1.8 kB at 39 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.pom (5.5 kB at 117 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/ws/xmlschema/xmlschema-core/2.1.0/xmlschema-core-2.1.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/ws/xmlschema/xmlschema-core/2.1.0/xmlschema-core-2.1.0.pom (5.8 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/ws/xmlschema/xmlschema/2.1.0/xmlschema-2.1.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/ws/xmlschema/xmlschema/2.1.0/xmlschema-2.1.0.pom (29 kB at 666 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/9/apache-9.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/9/apache-9.pom (15 kB at 370 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-soap/3.0.0/cxf-rt-bindings-soap-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-soap/3.0.0/cxf-rt-bindings-soap-3.0.0.pom (4.2 kB at 97 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-wsdl/3.0.0/cxf-rt-wsdl-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-wsdl/3.0.0/cxf-rt-wsdl-3.0.0.pom (4.9 kB at 114 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/wsdl4j/wsdl4j/1.6.3/wsdl4j-1.6.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/wsdl4j/wsdl4j/1.6.3/wsdl4j-1.6.3.pom (1.1 kB at 29 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-databinding-jaxb/3.0.0/cxf-rt-databinding-jaxb-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-databinding-jaxb/3.0.0/cxf-rt-databinding-jaxb-3.0.0.pom (5.4 kB at 146 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/bind/jaxb-impl/2.2.7/jaxb-impl-2.2.7.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/bind/jaxb-impl/2.2.7/jaxb-impl-2.2.7.pom (4.7 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/bind/jaxb-core/2.2.7/jaxb-core-2.2.7.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/bind/jaxb-core/2.2.7/jaxb-core-2.2.7.pom (4.4 kB at 103 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/istack/istack-commons-runtime/2.16/istack-commons-runtime-2.16.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/istack/istack-commons-runtime/2.16/istack-commons-runtime-2.16.pom (3.6 kB at 91 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/istack/istack-commons/2.16/istack-commons-2.16.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/istack/istack-commons/2.16/istack-commons-2.16.pom (12 kB at 328 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/java/jvnet-parent/3/jvnet-parent-3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 154 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/fastinfoset/FastInfoset/1.2.12/FastInfoset-1.2.12.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/fastinfoset/FastInfoset/1.2.12/FastInfoset-1.2.12.pom (1.4 kB at 40 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/fastinfoset/fastinfoset-project/1.2.12/fastinfoset-project-1.2.12.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/fastinfoset/fastinfoset-project/1.2.12/fastinfoset-project-1.2.12.pom (11 kB at 261 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-xml/3.0.0/cxf-rt-bindings-xml-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-xml/3.0.0/cxf-rt-bindings-xml-3.0.0.pom (5.2 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-simple/3.0.0/cxf-rt-frontend-simple-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-simple/3.0.0/cxf-rt-frontend-simple-3.0.0.pom (5.4 kB at 124 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-ws-addr/3.0.0/cxf-rt-ws-addr-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-ws-addr/3.0.0/cxf-rt-ws-addr-3.0.0.pom (3.8 kB at 96 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-ws-policy/3.0.0/cxf-rt-ws-policy-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-ws-policy/3.0.0/cxf-rt-ws-policy-3.0.0.pom (10.0 kB at 249 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/neethi/neethi/3.0.3/neethi-3.0.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/neethi/neethi/3.0.3/neethi-3.0.3.pom (13 kB at 293 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-databinding-aegis/3.0.0/cxf-rt-databinding-aegis-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-databinding-aegis/3.0.0/cxf-rt-databinding-aegis-3.0.0.pom (5.7 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-transports-http/3.0.0/cxf-rt-transports-http-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-transports-http/3.0.0/cxf-rt-transports-http-3.0.0.pom (7.0 kB at 145 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-rs-client/3.0.0/cxf-rt-rs-client-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-rs-client/3.0.0/cxf-rt-rs-client-3.0.0.pom (4.4 kB at 105 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-jaxrs/3.0.0/cxf-rt-frontend-jaxrs-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-jaxrs/3.0.0/cxf-rt-frontend-jaxrs-3.0.0.pom (8.7 kB at 197 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/ws/rs/javax.ws.rs-api/2.0/javax.ws.rs-api-2.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/ws/rs/javax.ws.rs-api/2.0/javax.ws.rs-api-2.0.pom (20 kB at 406 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom (13 kB at 305 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/oracle/ojdbc/6.0/ojdbc-6.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/oracle/ojdbc/6.0/ojdbc-6.0.pom (445 B at 48 B/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/microsoft/sqlserver/4.1.0/sqlserver-4.1.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/microsoft/sqlserver/4.1.0/sqlserver-4.1.0.pom (458 B at 184 B/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/mysql/mysql-connector-java/5.1.46/mysql-connector-java-5.1.46.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/mysql/mysql-connector-java/5.1.46/mysql-connector-java-5.1.46.pom (1.1 kB at 23 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/freemarker/freemarker/2.3.8/freemarker-2.3.8.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/freemarker/freemarker/2.3.8/freemarker-2.3.8.pom (670 B at 18 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/dingtalk/client-sdk.api/1.0.0/client-sdk.api-1.0.0.pom Progress (1): 462 B
09-20
dependency:tree结果: Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom (7.9 kB at 46 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar (33 kB at 464 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-deploy-plugin/2.5/maven-deploy-plugin-2.5.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-deploy-plugin/2.5/maven-deploy-plugin-2.5.pom (5.7 kB at 119 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-deploy-plugin/2.5/maven-deploy-plugin-2.5.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-deploy-plugin/2.5/maven-deploy-plugin-2.5.jar (23 kB at 420 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.17/maven-surefire-plugin-2.17.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.17/maven-surefire-plugin-2.17.pom (5.0 kB at 98 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/surefire/surefire/2.17/surefire-2.17.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/surefire/surefire/2.17/surefire-2.17.pom (17 kB at 333 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.17/maven-surefire-plugin-2.17.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.17/maven-surefire-plugin-2.17.jar (34 kB at 423 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.2/maven-war-plugin-2.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.2/maven-war-plugin-2.2.pom (6.5 kB at 144 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.2/maven-war-plugin-2.2.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.2/maven-war-plugin-2.2.jar (79 kB at 1.0 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom (8.1 kB at 169 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar (30 kB at 602 kB/s) [INFO] [INFO] ---------------------------< com.sciyon:SCM >--------------------------- [INFO] Building SCM 1.0.0.0-SNAPSHOT [INFO] --------------------------------[ war ]--------------------------------- Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sciyon/syncplant5-common/1.2.3.33/syncplant5-common-1.2.3.33.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sciyon/syncplant5-common/1.2.3.33/syncplant5-common-1.2.3.33.pom (34 kB at 542 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom (5.3 kB at 118 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom (9.8 kB at 181 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-webmvc/3.2.17.RELEASE/spring-webmvc-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-webmvc/3.2.17.RELEASE/spring-webmvc-3.2.17.RELEASE.pom (8.9 kB at 168 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/3.2.17.RELEASE/spring-beans-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/3.2.17.RELEASE/spring-beans-3.2.17.RELEASE.pom (1.9 kB at 41 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/3.2.17.RELEASE/spring-core-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/3.2.17.RELEASE/spring-core-3.2.17.RELEASE.pom (2.2 kB at 45 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom (18 kB at 353 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/28/commons-parent-28.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/28/commons-parent-28.pom (50 kB at 880 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/3.2.17.RELEASE/spring-context-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/3.2.17.RELEASE/spring-context-3.2.17.RELEASE.pom (4.9 kB at 102 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/3.2.17.RELEASE/spring-aop-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/3.2.17.RELEASE/spring-aop-3.2.17.RELEASE.pom (2.5 kB at 56 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/aopalliance/aopalliance/1.0/aopalliance-1.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 7.7 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/3.2.17.RELEASE/spring-expression-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/3.2.17.RELEASE/spring-expression-3.2.17.RELEASE.pom (1.6 kB at 33 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-web/3.2.17.RELEASE/spring-web-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-web/3.2.17.RELEASE/spring-web-3.2.17.RELEASE.pom (7.0 kB at 160 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/3.2.17.RELEASE/spring-jdbc-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/3.2.17.RELEASE/spring-jdbc-3.2.17.RELEASE.pom (3.4 kB at 73 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/3.2.17.RELEASE/spring-tx-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/3.2.17.RELEASE/spring-tx-3.2.17.RELEASE.pom (3.2 kB at 72 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/spring-data-jpa/1.5.2.RELEASE/spring-data-jpa-1.5.2.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/spring-data-jpa/1.5.2.RELEASE/spring-data-jpa-1.5.2.RELEASE.pom (12 kB at 260 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/build/spring-data-parent/1.3.2.RELEASE/spring-data-parent-1.3.2.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/build/spring-data-parent/1.3.2.RELEASE/spring-data-parent-1.3.2.RELEASE.pom (23 kB at 441 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/build/spring-data-build/1.3.2.RELEASE/spring-data-build-1.3.2.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/build/spring-data-build/1.3.2.RELEASE/spring-data-build-1.3.2.RELEASE.pom (2.4 kB at 65 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-framework-bom/4.0.3.RELEASE/spring-framework-bom-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-framework-bom/4.0.3.RELEASE/spring-framework-bom-4.0.3.RELEASE.pom (5.1 kB at 122 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/spring-data-commons/1.7.2.RELEASE/spring-data-commons-1.7.2.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/spring-data-commons/1.7.2.RELEASE/spring-data-commons-1.7.2.RELEASE.pom (5.9 kB at 158 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/4.0.3.RELEASE/spring-core-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/4.0.3.RELEASE/spring-core-4.0.3.RELEASE.pom (2.3 kB at 62 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/4.0.3.RELEASE/spring-beans-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/4.0.3.RELEASE/spring-beans-4.0.3.RELEASE.pom (2.3 kB at 61 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom (2.7 kB at 63 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom (12 kB at 322 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/jcl-over-slf4j/1.7.6/jcl-over-slf4j-1.7.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/jcl-over-slf4j/1.7.6/jcl-over-slf4j-1.7.6.pom (1.9 kB at 64 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/4.0.3.RELEASE/spring-orm-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/4.0.3.RELEASE/spring-orm-4.0.3.RELEASE.pom (6.9 kB at 172 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/4.0.3.RELEASE/spring-jdbc-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/4.0.3.RELEASE/spring-jdbc-4.0.3.RELEASE.pom (3.5 kB at 110 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/4.0.3.RELEASE/spring-tx-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/4.0.3.RELEASE/spring-tx-4.0.3.RELEASE.pom (3.4 kB at 102 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/4.0.3.RELEASE/spring-context-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/4.0.3.RELEASE/spring-context-4.0.3.RELEASE.pom (4.8 kB at 48 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/4.0.3.RELEASE/spring-aop-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/4.0.3.RELEASE/spring-aop-4.0.3.RELEASE.pom (2.7 kB at 60 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/4.0.3.RELEASE/spring-expression-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/4.0.3.RELEASE/spring-expression-4.0.3.RELEASE.pom (1.7 kB at 45 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/aspectj/aspectjrt/1.7.4/aspectjrt-1.7.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/aspectj/aspectjrt/1.7.4/aspectjrt-1.7.4.pom (1.0 kB at 24 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/3.2.17.RELEASE/spring-orm-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/3.2.17.RELEASE/spring-orm-3.2.17.RELEASE.pom (5.9 kB at 128 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context-support/3.2.17.RELEASE/spring-context-support-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context-support/3.2.17.RELEASE/spring-context-support-3.2.17.RELEASE.pom (4.5 kB at 101 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/aspectj/aspectjweaver/1.7.1/aspectjweaver-1.7.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/aspectj/aspectjweaver/1.7.1/aspectjweaver-1.7.1.pom (1.0 kB at 28 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-explorer/5.22.0/activiti-explorer-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-explorer/5.22.0/activiti-explorer-5.22.0.pom (6.9 kB at 136 kB/s) Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/33/commons-parent-33.pom (53 kB at 1.0 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/joda-time/joda-time/2.6/joda-time-2.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/joda-time/joda-time/2.6/joda-time-2.6.pom (27 kB at 531 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-process-validation/5.22.0/activiti-process-validation-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-process-validation/5.22.0/activiti-process-validation-5.22.0.pom (3.3 kB at 76 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-image-generator/5.22.0/activiti-image-generator-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-image-generator/5.22.0/activiti-image-generator-5.22.0.pom (3.5 kB at 77 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-email/1.4/commons-email-1.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-email/1.4/commons-email-1.4.pom (17 kB at 330 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/37/commons-parent-37.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/37/commons-parent-37.pom (63 kB at 1.3 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/16/apache-16.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/16/apache-16.pom (15 kB at 385 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/mail/javax.mail/1.5.2/javax.mail-1.5.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/mail/javax.mail/1.5.2/javax.mail-1.5.2.pom (4.3 kB at 110 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/mail/all/1.5.2/all-1.5.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/mail/all/1.5.2/all-1.5.2.pom (20 kB at 531 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/java/jvnet-parent/1/jvnet-parent-1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/java/jvnet-parent/1/jvnet-parent-1.pom (4.7 kB at 118 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/activation/activation/1.1/activation-1.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/activation/activation/1.1/activation-1.1.pom (1.1 kB at 25 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/activation/activation/1.1.1/activation-1.1.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/activation/activation/1.1.1/activation-1.1.1.pom (644 B at 17 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/mybatis/mybatis/3.3.0/mybatis-3.3.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/mybatis/mybatis/3.3.0/mybatis-3.3.0.pom (11 kB at 317 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/mybatis/mybatis-parent/24/mybatis-parent-24.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/mybatis/mybatis-parent/24/mybatis-parent-24.pom (32 kB at 791 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/4.1.5.RELEASE/spring-beans-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/4.1.5.RELEASE/spring-beans-4.1.5.RELEASE.pom (2.5 kB at 71 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/4.1.5.RELEASE/spring-core-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/4.1.5.RELEASE/spring-core-4.1.5.RELEASE.pom (2.5 kB at 64 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-logging/commons-logging/1.2/commons-logging-1.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 436 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/34/commons-parent-34.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 1.3 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-spring/5.22.0/activiti-spring-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-spring/5.22.0/activiti-spring-5.22.0.pom (14 kB at 386 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/4.1.5.RELEASE/spring-context-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/4.1.5.RELEASE/spring-context-4.1.5.RELEASE.pom (4.8 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/4.1.5.RELEASE/spring-aop-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/4.1.5.RELEASE/spring-aop-4.1.5.RELEASE.pom (2.7 kB at 72 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/4.1.5.RELEASE/spring-expression-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/4.1.5.RELEASE/spring-expression-4.1.5.RELEASE.pom (1.7 kB at 45 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/4.1.5.RELEASE/spring-jdbc-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/4.1.5.RELEASE/spring-jdbc-4.1.5.RELEASE.pom (3.5 kB at 107 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/4.1.5.RELEASE/spring-tx-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/4.1.5.RELEASE/spring-tx-4.1.5.RELEASE.pom (3.4 kB at 70 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/4.1.5.RELEASE/spring-orm-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/4.1.5.RELEASE/spring-orm-4.1.5.RELEASE.pom (6.9 kB at 176 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-dbcp/commons-dbcp/1.4/commons-dbcp-1.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-dbcp/commons-dbcp/1.4/commons-dbcp-1.4.pom (11 kB at 293 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/12/commons-parent-12.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/12/commons-parent-12.pom (27 kB at 769 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-pool/commons-pool/1.5.4/commons-pool-1.5.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-pool/commons-pool/1.5.4/commons-pool-1.5.4.pom (11 kB at 311 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-json-converter/5.22.0/activiti-json-converter-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-json-converter/5.22.0/activiti-json-converter-5.22.0.pom (5.2 kB at 138 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/math/geom2d/javaGeom/0.11.1/javaGeom-0.11.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/math/geom2d/javaGeom/0.11.1/javaGeom-0.11.1.pom (1.6 kB at 40 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-simple-workflow/5.22.0/activiti-simple-workflow-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-simple-workflow/5.22.0/activiti-simple-workflow-5.22.0.pom (5.5 kB at 157 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-bpmn-layout/5.22.0/activiti-bpmn-layout-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-bpmn-layout/5.22.0/activiti-bpmn-layout-5.22.0.pom (4.0 kB at 81 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/tinyjee/jgraphx/jgraphx/1.10.4.1/jgraphx-1.10.4.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/tinyjee/jgraphx/jgraphx/1.10.4.1/jgraphx-1.10.4.1.pom (8.8 kB at 205 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-crystalball/5.22.0/activiti-crystalball-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-crystalball/5.22.0/activiti-crystalball-5.22.0.pom (4.4 kB at 115 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-log4j12/1.7.6/slf4j-log4j12-1.7.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-log4j12/1.7.6/slf4j-log4j12-1.7.6.pom (1.6 kB at 48 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/log4j/log4j/1.2.17/log4j-1.2.17.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 kB at 558 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/vaadin/vaadin/6.8.8/vaadin-6.8.8.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/vaadin/vaadin/6.8.8/vaadin-6.8.8.pom (3.1 kB at 72 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/h2database/h2/1.3.176/h2-1.3.176.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/h2database/h2/1.3.176/h2-1.3.176.pom (973 B at 22 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-web/4.1.5.RELEASE/spring-web-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-web/4.1.5.RELEASE/spring-web-4.1.5.RELEASE.pom (7.5 kB at 164 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/imgscalr/imgscalr-lib/4.2/imgscalr-lib-4.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/imgscalr/imgscalr-lib/4.2/imgscalr-lib-4.2.pom (3.6 kB at 97 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.0.1/commons-io-2.0.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.0.1/commons-io-2.0.1.pom (9.0 kB at 220 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/15/commons-parent-15.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/15/commons-parent-15.pom (32 kB at 674 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/7/apache-7.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/7/apache-7.pom (14 kB at 321 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/groovy/groovy-all/2.4.5/groovy-all-2.4.5.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/groovy/groovy-all/2.4.5/groovy-all-2.4.5.pom (20 kB at 497 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.2.3/jackson-core-2.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.2.3/jackson-core-2.2.3.pom (6.0 kB at 133 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/oss-parent/10/oss-parent-10.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/oss-parent/10/oss-parent-10.pom (23 kB at 647 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.2.3/jackson-databind-2.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.2.3/jackson-databind-2.2.3.pom (5.4 kB at 149 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/oss-parent/11/oss-parent-11.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/oss-parent/11/oss-parent-11.pom (23 kB at 594 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.2.3/jackson-annotations-2.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.2.3/jackson-annotations-2.2.3.pom (1.3 kB at 31 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/vaadin/vaadin/6.8.18/vaadin-6.8.18.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/vaadin/vaadin/6.8.18/vaadin-6.8.18.pom (3.1 kB at 78 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-core/1.12.0/shiro-core-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-core/1.12.0/shiro-core-1.12.0.pom (5.2 kB at 82 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-root/1.12.0/shiro-root-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-root/1.12.0/shiro-root-1.12.0.pom (75 kB at 1.3 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/29/apache-29.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/29/apache-29.pom (21 kB at 414 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-lang/1.12.0/shiro-lang-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-lang/1.12.0/shiro-lang-1.12.0.pom (3.2 kB at 77 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 67 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 336 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-cache/1.12.0/shiro-cache-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-cache/1.12.0/shiro-cache-1.12.0.pom (2.4 kB at 56 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-hash/1.12.0/shiro-crypto-hash-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-hash/1.12.0/shiro-crypto-hash-1.12.0.pom (3.1 kB at 68 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto/1.12.0/shiro-crypto-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto/1.12.0/shiro-crypto-1.12.0.pom (1.5 kB at 41 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-core/1.12.0/shiro-crypto-core-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-core/1.12.0/shiro-crypto-core-1.12.0.pom (2.4 kB at 49 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-cipher/1.12.0/shiro-crypto-cipher-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-cipher/1.12.0/shiro-crypto-cipher-1.12.0.pom (3.3 kB at 72 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config-core/1.12.0/shiro-config-core-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config-core/1.12.0/shiro-config-core-1.12.0.pom (2.4 kB at 57 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config/1.12.0/shiro-config-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config/1.12.0/shiro-config-1.12.0.pom (1.5 kB at 37 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config-ogdl/1.12.0/shiro-config-ogdl-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config-ogdl/1.12.0/shiro-config-ogdl-1.12.0.pom (4.1 kB at 88 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-event/1.12.0/shiro-event-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-event/1.12.0/shiro-event-1.12.0.pom (2.4 kB at 59 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 367 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/47/commons-parent-47.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 1.4 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 288 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/39/commons-parent-39.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 1.3 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-web/1.12.0/shiro-web-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-web/1.12.0/shiro-web-1.12.0.pom (4.5 kB at 116 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom (4.1 kB at 88 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom (20 kB at 430 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-spring/1.12.0/shiro-spring-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-spring/1.12.0/shiro-spring-1.12.0.pom (4.5 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-support/1.12.0/shiro-support-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-support/1.12.0/shiro-support-1.12.0.pom (1.8 kB at 42 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-ehcache/1.12.0/shiro-ehcache-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-ehcache/1.12.0/shiro-ehcache-1.12.0.pom (3.1 kB at 71 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/sf/ehcache/ehcache-core/2.6.11/ehcache-core-2.6.11.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/sf/ehcache/ehcache-core/2.6.11/ehcache-core-2.6.11.pom (31 kB at 728 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/sf/ehcache/ehcache-parent/2.5/ehcache-parent-2.5.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/sf/ehcache/ehcache-parent/2.5/ehcache-parent-2.5.pom (16 kB at 387 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom (3.0 kB at 79 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom (9.3 kB at 274 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/joda-time/joda-time/2.9.7/joda-time-2.9.7.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/joda-time/joda-time/2.9.7/joda-time-2.9.7.pom (33 kB at 803 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/jodd/jodd/3.3.8/jodd-3.3.8.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/jodd/jodd/3.3.8/jodd-3.3.8.pom (1.9 kB at 65 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-lang/commons-lang/2.6/commons-lang-2.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-lang/commons-lang/2.6/commons-lang-2.6.pom (17 kB at 427 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/17/commons-parent-17.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/17/commons-parent-17.pom (31 kB at 725 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 681 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/52/commons-parent-52.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 1.8 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/23/apache-23.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/23/apache-23.pom (18 kB at 449 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 119 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/dom4j/dom4j/1.6.1/dom4j-1.6.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/dom4j/dom4j/1.6.1/dom4j-1.6.1.pom (6.8 kB at 165 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 66 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/google/zxing/core/3.3.0/core-3.3.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/google/zxing/core/3.3.0/core-3.3.0.pom (2.1 kB at 59 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/google/zxing/zxing-parent/3.3.0/zxing-parent-3.3.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/google/zxing/zxing-parent/3.3.0/zxing-parent-3.3.0.pom (28 kB at 644 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-codec/commons-codec/1.15/commons-codec-1.15.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 377 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/alibaba/fastjson/1.2.83/fastjson-1.2.83.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/alibaba/fastjson/1.2.83/fastjson-1.2.83.pom (11 kB at 248 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 150 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 364 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 807 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 142 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 338 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-codec/commons-codec/1.11/commons-codec-1.11.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 368 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/42/commons-parent-42.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 1.7 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.pom (5.2 kB at 141 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom (16 kB at 410 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom (16 kB at 377 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/56/commons-parent-56.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/56/commons-parent-56.pom (82 kB at 1.8 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 166 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom (20 kB at 470 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 134 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.11.0/jackson-core-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.11.0/jackson-core-2.11.0.pom (4.9 kB at 122 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jackson-base/2.11.0/jackson-base-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jackson-base/2.11.0/jackson-base-2.11.0.pom (7.4 kB at 173 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom (13 kB at 272 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.11.0/jackson-databind-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.11.0/jackson-databind-2.11.0.pom (7.4 kB at 151 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.11.0/jackson-jaxrs-json-provider-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.11.0/jackson-jaxrs-json-provider-2.11.0.pom (4.0 kB at 76 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.11.0/jackson-jaxrs-providers-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.11.0/jackson-jaxrs-providers-2.11.0.pom (4.8 kB at 94 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.11.0/jackson-jaxrs-base-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.11.0/jackson-jaxrs-base-2.11.0.pom (1.7 kB at 39 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.11.0/jackson-annotations-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.11.0/jackson-annotations-2.11.0.pom (3.5 kB at 81 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.11.0/jackson-module-jaxb-annotations-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.11.0/jackson-module-jaxb-annotations-2.11.0.pom (3.5 kB at 86 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-modules-base/2.11.0/jackson-modules-base-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-modules-base/2.11.0/jackson-modules-base-2.11.0.pom (3.4 kB at 86 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom (16 kB at 302 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.2/jakarta.xml.bind-api-parent-2.3.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.2/jakarta.xml.bind-api-parent-2.3.2.pom (7.7 kB at 150 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom (4.6 kB at 91 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/activation/all/1.2.1/all-1.2.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/activation/all/1.2.1/all-1.2.1.pom (18 kB at 402 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom (12 kB at 322 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-jaxws/3.0.0/cxf-rt-frontend-jaxws-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-jaxws/3.0.0/cxf-rt-frontend-jaxws-3.0.0.pom (19 kB at 446 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-parent/3.0.0/cxf-parent-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-parent/3.0.0/cxf-parent-3.0.0.pom (93 kB at 1.7 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf/3.0.0/cxf-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf/3.0.0/cxf-3.0.0.pom (34 kB at 841 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.pom (1.6 kB at 34 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/3/apache-3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/3/apache-3.pom (3.4 kB at 90 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/asm/asm/3.3.1/asm-3.3.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/asm/asm/3.3.1/asm-3.3.1.pom (266 B at 7.4 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom (4.3 kB at 111 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-core/3.0.0/cxf-core-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-core/3.0.0/cxf-core-3.0.0.pom (17 kB at 416 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/woodstox/woodstox-core-asl/4.3.0/woodstox-core-asl-4.3.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/woodstox/woodstox-core-asl/4.3.0/woodstox-core-asl-4.3.0.pom (1.8 kB at 39 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.pom (5.5 kB at 117 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/ws/xmlschema/xmlschema-core/2.1.0/xmlschema-core-2.1.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/ws/xmlschema/xmlschema-core/2.1.0/xmlschema-core-2.1.0.pom (5.8 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/ws/xmlschema/xmlschema/2.1.0/xmlschema-2.1.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/ws/xmlschema/xmlschema/2.1.0/xmlschema-2.1.0.pom (29 kB at 666 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/9/apache-9.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/9/apache-9.pom (15 kB at 370 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-soap/3.0.0/cxf-rt-bindings-soap-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-soap/3.0.0/cxf-rt-bindings-soap-3.0.0.pom (4.2 kB at 97 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-wsdl/3.0.0/cxf-rt-wsdl-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-wsdl/3.0.0/cxf-rt-wsdl-3.0.0.pom (4.9 kB at 114 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/wsdl4j/wsdl4j/1.6.3/wsdl4j-1.6.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/wsdl4j/wsdl4j/1.6.3/wsdl4j-1.6.3.pom (1.1 kB at 29 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-databinding-jaxb/3.0.0/cxf-rt-databinding-jaxb-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-databinding-jaxb/3.0.0/cxf-rt-databinding-jaxb-3.0.0.pom (5.4 kB at 146 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/bind/jaxb-impl/2.2.7/jaxb-impl-2.2.7.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/bind/jaxb-impl/2.2.7/jaxb-impl-2.2.7.pom (4.7 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/bind/jaxb-core/2.2.7/jaxb-core-2.2.7.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/bind/jaxb-core/2.2.7/jaxb-core-2.2.7.pom (4.4 kB at 103 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/istack/istack-commons-runtime/2.16/istack-commons-runtime-2.16.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/istack/istack-commons-runtime/2.16/istack-commons-runtime-2.16.pom (3.6 kB at 91 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/istack/istack-commons/2.16/istack-commons-2.16.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/istack/istack-commons/2.16/istack-commons-2.16.pom (12 kB at 328 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/java/jvnet-parent/3/jvnet-parent-3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 154 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/fastinfoset/FastInfoset/1.2.12/FastInfoset-1.2.12.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/fastinfoset/FastInfoset/1.2.12/FastInfoset-1.2.12.pom (1.4 kB at 40 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/fastinfoset/fastinfoset-project/1.2.12/fastinfoset-project-1.2.12.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/fastinfoset/fastinfoset-project/1.2.12/fastinfoset-project-1.2.12.pom (11 kB at 261 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-xml/3.0.0/cxf-rt-bindings-xml-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-xml/3.0.0/cxf-rt-bindings-xml-3.0.0.pom (5.2 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-simple/3.0.0/cxf-rt-frontend-simple-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-simple/3.0.0/cxf-rt-frontend-simple-3.0.0.pom (5.4 kB at 124 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-ws-addr/3.0.0/cxf-rt-ws-addr-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-ws-addr/3.0.0/cxf-rt-ws-addr-3.0.0.pom (3.8 kB at 96 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-ws-policy/3.0.0/cxf-rt-ws-policy-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-ws-policy/3.0.0/cxf-rt-ws-policy-3.0.0.pom (10.0 kB at 249 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/neethi/neethi/3.0.3/neethi-3.0.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/neethi/neethi/3.0.3/neethi-3.0.3.pom (13 kB at 293 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-databinding-aegis/3.0.0/cxf-rt-databinding-aegis-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-databinding-aegis/3.0.0/cxf-rt-databinding-aegis-3.0.0.pom (5.7 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-transports-http/3.0.0/cxf-rt-transports-http-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-transports-http/3.0.0/cxf-rt-transports-http-3.0.0.pom (7.0 kB at 145 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-rs-client/3.0.0/cxf-rt-rs-client-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-rs-client/3.0.0/cxf-rt-rs-client-3.0.0.pom (4.4 kB at 105 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-jaxrs/3.0.0/cxf-rt-frontend-jaxrs-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-jaxrs/3.0.0/cxf-rt-frontend-jaxrs-3.0.0.pom (8.7 kB at 197 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/ws/rs/javax.ws.rs-api/2.0/javax.ws.rs-api-2.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/ws/rs/javax.ws.rs-api/2.0/javax.ws.rs-api-2.0.pom (20 kB at 406 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom (13 kB at 305 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/oracle/ojdbc/6.0/ojdbc-6.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/oracle/ojdbc/6.0/ojdbc-6.0.pom (445 B at 48 B/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/microsoft/sqlserver/4.1.0/sqlserver-4.1.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/microsoft/sqlserver/4.1.0/sqlserver-4.1.0.pom (458 B at 184 B/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/mysql/mysql-connector-java/5.1.46/mysql-connector-java-5.1.46.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/mysql/mysql-connector-java/5.1.46/mysql-connector-java-5.1.46.pom (1.1 kB at 23 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/freemarker/freemarker/2.3.8/freemarker-2.3.8.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/freemarker/freemarker/2.3.8/freemarker-2.3.8.pom (670 B at 18 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/dingtalk/client-sdk.api/1.0.0/client-sdk.api-1.0.0.pom Progress (1): 462 B
最新发布
09-20
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值