maven clean install流程解析

来源:互联网 发布:php开发游戏 编辑:程序博客网 时间:2024/05/18 03:11
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO] 
[INFO] business_pay
[INFO] business_pay-api          business_pay为父工程moudle下面两个,clean install
[INFO] business_pay-center
[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] Building business_pay 1.0.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ business_pay ---
[INFO] 
[INFO] --- maven-install-plugin:2.4:install (default-install) @ business_pay ---
[INFO] Installing D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\pom.xml to D:\m2\repository\com\cgd\business_pay\1.0.0-SNAPSHOT\business_pay-1.0.0-SNAPSHOT.pom                      将 根目录下的pom.xml下载到git的本地仓库1.0.0-SNAPSHOT文件夹下
[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] Building business_pay-api 1.0.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ business_pay-api ---
[INFO] Deleting D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-api\target      clean过程中删除target文件夹下的文件
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ business_pay-api ---      使用该插件处理资源文件,默认情况下处理src\main\resource,利用该插件添加额外的资源目录
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 0 resource
[INFO] Copying 3 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ business_pay-api ---  编译business_pay-api 
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 49 source filesto D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-api\target\classes  将编译好的文件放到target\classes目录下
[WARNING] 未与 -source 1.7 一起设置引导类路径
[INFO] 
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ business_pay-api ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.             用UTF-8编码格式复制先前被过滤的文件
[INFO] skip non existing resourceDirectory D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-api\src\test\resources
[INFO] 跳过不存在的资源文件
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ business_pay-api ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ business_pay-api ---
[INFO] No tests to run.
[INFO] 
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ business_pay-api ---  将business_pay-api打包成.jar并保存到target目录下
[INFO] Building jar: D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-api\target\business_pay-api-1.0.0-SNAPSHOT.jar
[INFO] 
[INFO] --- maven-install-plugin:2.4:install (default-install) @ business_pay-api ---

[INFO] Installing D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-api\target\business_pay-api-1.0.0-SNAPSHOT.jar to D:\m2\repository\com\cgd\business_pay-api\1.0.0-SNAPSHOT\business_pay-api-1.0.0-SNAPSHOT.jar   

将business_pay-api-1.0.0-SNAPSHOT.jar复制到git的本地仓库的1.0.0-SNAPSHOT文件夹下

[INFO] Installing D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-api\pom.xml to D:\m2\repository\com\cgd\business_pay-api\1.0.0-SNAPSHOT\business_pay-api-1.0.0-SNAPSHOT.pom    将business_pay-api根目录下的pom.xml复制到git的本地仓库1.0.0-SNAPSHOT目录下

[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] Building business_pay-center 1.0.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-antrun-plugin:1.3:run (default) @ business_pay-center ---  ant打包插件
[INFO] Executing tasks
   [delete] Deleting: D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-center\src\main\resources\env.properties
     [copy] Copying 1 file to D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-center\src\main\resources
   [delete] Deleting: D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-center\src\main\resources\log4j.xml
     [copy] Copying 1 file to D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-center\src\main\resources
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ business_pay-center ---
[INFO] Deleting D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-center\target 删除target目录下的文件
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ business_pay-center ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.      用UTF-8编码格式复制先前被过滤的文件
[INFO] Copying 10 resources
[INFO] Copying 13 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ business_pay-center ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 67 source files to D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-center\target\classes  将编译后的文件放到target\classes目录
[WARNING] 未与 -source 1.7 一起设置引导类路径
[INFO] 
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ business_pay-center ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ business_pay-center ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 22 source files to D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-center\target\test-classes
[WARNING] 未与 -source 1.7 一起设置引导类路径
[INFO] 
[INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ business_pay-center ---   测试插件


-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running com.cgd.pay.test.xml.XmlManageTest
2017-09-08 20:46:40,160 DEBUG org.springframework.test.context.junit4.SpringJUnit4ClassRunner.<init>:112 - SpringJUnit4ClassRunner constructor called with [class com.cgd.pay.test.xml.XmlManageTest].
2017-09-08 20:46:40,184 DEBUG org.springframework.test.context.BootstrapUtils.resolveTestContextBootstrapper:77 - Instantiating TestContextBootstrapper from class [org.springframework.test.context.support.DefaultTestContextBootstrapper]
2017-09-08 20:46:40,212 DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.delegateProcessing:96 - Delegating to GenericXmlContextLoader to process context configuration [ContextConfigurationAttributes@955596 declaringClass = 'com.cgd.pay.test.xml.XmlManageTest', classes = '{}', locations = '{classpath*:spring-xmltest.xml}', inheritLocations = true, initializers = '{}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader'].
2017-09-08 20:46:40,216 DEBUG org.springframework.test.context.support.ActiveProfilesUtils.resolveActiveProfiles:82 - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.cgd.pay.test.xml.XmlManageTest]
2017-09-08 20:46:40,245 INFO  org.springframework.test.context.support.DefaultTestContextBootstrapper.getTestExecutionListeners:181 - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@1afc369, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@19d4f69, org.springframework.test.context.support.DirtiesContextTestExecutionListener@1c43f4e]
2017-09-08 20:46:40,247 DEBUG org.springframework.test.annotation.ProfileValueUtils.retrieveProfileValueSource:70 - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.cgd.pay.test.xml.XmlManageTest]
2017-09-08 20:46:40,248 DEBUG org.springframework.test.annotation.ProfileValueUtils.retrieveProfileValueSource:82 - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.cgd.pay.test.xml.XmlManageTest]
2017-09-08 20:46:40,249 DEBUG org.springframework.test.annotation.ProfileValueUtils.retrieveProfileValueSource:70 - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.cgd.pay.test.xml.XmlManageTest]
2017-09-08 20:46:40,250 DEBUG org.springframework.test.annotation.ProfileValueUtils.retrieveProfileValueSource:82 - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.cgd.pay.test.xml.XmlManageTest]
2017-09-08 20:46:40,251 DEBUG org.springframework.test.annotation.ProfileValueUtils.retrieveProfileValueSource:70 - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.cgd.pay.test.xml.XmlManageTest]
2017-09-08 20:46:40,251 DEBUG org.springframework.test.annotation.ProfileValueUtils.retrieveProfileValueSource:82 - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.cgd.pay.test.xml.XmlManageTest]
2017-09-08 20:46:40,254 DEBUG org.springframework.test.annotation.ProfileValueUtils.retrieveProfileValueSource:70 - Retrieved @ProfileValueSourceConfiguration [null] for test class [com.cgd.pay.test.xml.XmlManageTest]
2017-09-08 20:46:40,255 DEBUG org.springframework.test.annotation.ProfileValueUtils.retrieveProfileValueSource:82 - Retrieved ProfileValueSource type [class org.springframework.test.annotation.SystemProfileValueSource] for class [com.cgd.pay.test.xml.XmlManageTest]
2017-09-08 20:46:40,260 DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener.prepareTestInstance:80 - Performing dependency injection for test context [[DefaultTestContext@d6fe6 testClass = XmlManageTest, testInstance = com.cgd.pay.test.xml.XmlManageTest@1a2ca36, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@44d69d testClass = XmlManageTest, locations = '{classpath*:spring-xmltest.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]].
2017-09-08 20:46:40,260 DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader.delegateLoading:106 - Delegating to GenericXmlContextLoader to load context from [MergedContextConfiguration@44d69d testClass = XmlManageTest, locations = '{classpath*:spring-xmltest.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]].
2017-09-08 20:46:40,261 DEBUG org.springframework.test.context.support.AbstractGenericContextLoader.loadContext:107 - Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@44d69d testClass = XmlManageTest, locations = '{classpath*:spring-xmltest.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
2017-09-08 20:46:40,277 DEBUG org.springframework.core.io.support.PathMatchingResourcePatternResolver.<clinit>:186 - Found Equinox FileLocator for OSGi bundle URL resolution
log4j:ERROR No appender named [loggerFile] could be found.
log4j:ERROR No appender named [loggerFile] could be found.
2017-09-08 20:46:40,357 DEBUG org.springframework.core.env.StandardEnvironment.addLast:111 - Adding [systemProperties] PropertySource with lowest search precedence
2017-09-08 20:46:40,358 DEBUG org.springframework.core.env.StandardEnvironment.addLast:111 - Adding [systemEnvironment] PropertySource with lowest search precedence
2017-09-08 20:46:40,358 DEBUG org.springframework.core.env.StandardEnvironment.<init>:126 - Initialized StandardEnvironment with PropertySources [systemProperties,systemEnvironment]
2017-09-08 20:46:40,370 DEBUG org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions:223 - Loaded 0 bean definitions from location pattern [classpath*:spring-xmltest.xml]
2017-09-08 20:46:40,390 INFO  org.springframework.context.support.GenericApplicationContext.prepareRefresh:510 - Refreshing org.springframework.context.support.GenericApplicationContext@1d47554: startup date [Fri Sep 08 20:46:40 CST 2017]; root of context hierarchy
2017-09-08 20:46:40,391 DEBUG org.springframework.context.support.GenericApplicationContext.obtainFreshBeanFactory:540 - Bean factory for org.springframework.context.support.GenericApplicationContext@1d47554: org.springframework.beans.factory.support.DefaultListableBeanFactory@56f20: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor]; root of factory hierarchy
2017-09-08 20:46:40,408 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:220 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2017-09-08 20:46:40,409 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.createBean:450 - Creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2017-09-08 20:46:40,427 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.doCreateBean:524 - Eagerly caching bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' to allow for resolving potential circular references
2017-09-08 20:46:40,429 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.createBean:478 - Finished creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2017-09-08 20:46:40,442 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:220 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2017-09-08 20:46:40,443 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.createBean:450 - Creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2017-09-08 20:46:40,444 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.doCreateBean:524 - Eagerly caching bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' to allow for resolving potential circular references
2017-09-08 20:46:40,444 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.createBean:478 - Finished creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2017-09-08 20:46:40,445 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:220 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2017-09-08 20:46:40,445 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.createBean:450 - Creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2017-09-08 20:46:40,446 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.doCreateBean:524 - Eagerly caching bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor' to allow for resolving potential circular references
2017-09-08 20:46:40,446 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.createBean:478 - Finished creating instance of bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2017-09-08 20:46:40,446 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:220 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2017-09-08 20:46:40,447 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.createBean:450 - Creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2017-09-08 20:46:40,451 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.doCreateBean:524 - Eagerly caching bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' to allow for resolving potential circular references
2017-09-08 20:46:40,452 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.createBean:478 - Finished creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2017-09-08 20:46:40,452 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:220 - Creating shared instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2017-09-08 20:46:40,452 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.createBean:450 - Creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2017-09-08 20:46:40,453 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.doCreateBean:524 - Eagerly caching bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor' to allow for resolving potential circular references
2017-09-08 20:46:40,453 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.createBean:478 - Finished creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2017-09-08 20:46:40,453 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.getSingleton:220 - Creating shared instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2017-09-08 20:46:40,453 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.createBean:450 - Creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2017-09-08 20:46:40,453 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.doCreateBean:524 - Eagerly caching bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor' to allow for resolving potential circular references
2017-09-08 20:46:40,454 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.createBean:478 - Finished creating instance of bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2017-09-08 20:46:40,456 DEBUG org.springframework.context.support.GenericApplicationContext.initMessageSource:646 - Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@c4f3a0]
2017-09-08 20:46:40,459 DEBUG org.springframework.context.support.GenericApplicationContext.initApplicationEventMulticaster:670 - Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@967906]
2017-09-08 20:46:40,459 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons:691 - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@56f20: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor]; root of factory hierarchy
2017-09-08 20:46:40,459 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBean:247 - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2017-09-08 20:46:40,460 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBean:247 - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2017-09-08 20:46:40,460 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBean:247 - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalRequiredAnnotationProcessor'
2017-09-08 20:46:40,460 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBean:247 - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2017-09-08 20:46:40,460 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBean:247 - Returning cached instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor'
2017-09-08 20:46:40,460 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBean:247 - Returning cached instance of singleton bean 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor'
2017-09-08 20:46:40,463 DEBUG org.springframework.context.support.GenericApplicationContext.initLifecycleProcessor:697 - Unable to locate LifecycleProcessor with name 'lifecycleProcessor': using default [org.springframework.context.support.DefaultLifecycleProcessor@a48628]
2017-09-08 20:46:40,463 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBean:247 - Returning cached instance of singleton bean 'lifecycleProcessor'
2017-09-08 20:46:40,466 DEBUG org.springframework.core.env.PropertySourcesPropertyResolver.getProperty:81 - Searching for key 'spring.liveBeansView.mbeanDomain' in [systemProperties]
2017-09-08 20:46:40,466 DEBUG org.springframework.core.env.PropertySourcesPropertyResolver.getProperty:81 - Searching for key 'spring.liveBeansView.mbeanDomain' in [systemEnvironment]
2017-09-08 20:46:40,466 DEBUG org.springframework.core.env.PropertySourcesPropertyResolver.getProperty:103 - Could not find key 'spring.liveBeansView.mbeanDomain' in any property source. Returning [null]
2017-09-08 20:46:40,468 DEBUG org.springframework.test.context.DefaultCacheAwareContextLoaderDelegate.loadContext:85 - Storing ApplicationContext in cache under key [[MergedContextConfiguration@44d69d testClass = XmlManageTest, locations = '{classpath*:spring-xmltest.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]].
2017-09-08 20:46:40,492 INFO  com.cgd.base.util.XmlManageDom4jUtils.transformationServiceXmlToHsf:70 - Base path is D:/vnb_work/eclipse-4.7-32/eclipse-workspace/business_pay/business_pay-center
2017-09-08 20:46:40,562 INFO  com.cgd.base.util.XmlManageDom4jUtils.transformationServiceXmlToHsf:104 - generate business_pay-api hsf config file success!
2017-09-08 20:46:40,562 DEBUG com.cgd.pay.test.xml.XmlManageTest.transXml:20 - 商品中心hsf所有文件生成成功!
2017-09-08 20:46:40,563 DEBUG org.springframework.test.context.support.DirtiesContextTestExecutionListener.afterTestMethod:85 - After test method: context [DefaultTestContext@d6fe6 testClass = XmlManageTest, testInstance = com.cgd.pay.test.xml.XmlManageTest@1a2ca36, testMethod = transXml@XmlManageTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@44d69d testClass = XmlManageTest, locations = '{classpath*:spring-xmltest.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]], class dirties context [false], class mode [null], method dirties context [false].
2017-09-08 20:46:40,565 DEBUG org.springframework.test.context.support.DirtiesContextTestExecutionListener.afterTestClass:117 - After test class: context [DefaultTestContext@d6fe6 testClass = XmlManageTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@44d69d testClass = XmlManageTest, locations = '{classpath*:spring-xmltest.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]], dirtiesContext [false].
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.799 sec - in com.cgd.pay.test.xml.XmlManageTest
2017-09-08 20:46:40,569 INFO  org.springframework.context.support.GenericApplicationContext.doClose:862 - Closing org.springframework.context.support.GenericApplicationContext@1d47554: startup date [Fri Sep 08 20:46:40 CST 2017]; root of context hierarchy
2017-09-08 20:46:40,569 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.doGetBean:247 - Returning cached instance of singleton bean 'lifecycleProcessor'
2017-09-08 20:46:40,570 DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons:499 - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@56f20: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor,org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor]; root of factory hierarchy


Results :  测试结果


Tests run: 1, Failures: 0, Errors: 0, Skipped: 0


[INFO] 
[INFO] --- maven-war-plugin:2.2:war (default-war) @ business_pay-center ---  打包成.war文件
[INFO] Packaging webapp
[INFO] Assembling webapp [business_pay-center] in [D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-center\target\business_pay-center]
[INFO] Processing war project
[INFO] Copying webapp resources [D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-center\src\main\webapp]
[INFO] Webapp assembled in [17952 msecs]
[INFO] Building war: D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-center\target\business_pay-center.war
[INFO] WEB-INF\web.xml already added, skipping
[INFO] 
[INFO] --- maven-install-plugin:2.4:install (default-install) @ business_pay-center ---

[INFO] Installing D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-center\target\business_pay-center.war to D:\m2\repository\com\cgd\business_pay-center\1.0.0-SNAPSHOT\business_pay-center-1.0.0-SNAPSHOT.war

business_pay-center-1.0.0-SNAPSHOT.jar复制到git的本地仓库的1.0.0-SNAPSHOT文件夹下

[INFO] Installing D:\vnb_work\eclipse-4.7-32\eclipse-workspace\business_pay\business_pay-center\pom.xml to D:\m2\repository\com\cgd\business_pay-center\1.0.0-SNAPSHOT\business_pay-center-1.0.0-SNAPSHOT.pom

business_pay-center根目录下的pom.xml复制到git的本地仓库1.0.0-SNAPSHOT目录下

[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] 
[INFO] business_pay ....................................... SUCCESS [  4.823 s]
[INFO] business_pay-api ................................... SUCCESS [ 17.382 s]
[INFO] business_pay-center ................................ SUCCESS [ 38.368 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS   clean install 成功
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 01:01 min
[INFO] Finished at: 2017-09-08T20:47:05+08:00
[INFO] Final Memory: 25M/61M
[INFO] ------------------------------------------------------------------------
原创粉丝点击