Commit c110cbe1f32271b72a4cc7a26669ab8c76219da3
1 parent
4283f044
增加job
Showing
3 changed files
with
148 additions
and
79 deletions
zteits-job/src/main/resources/application.properties
zteits-job/src/main/resources/logback-spring.xml
0 → 100644
| 1 | + | |
| 2 | +<configuration> | |
| 3 | + | |
| 4 | + <!-- <include resource="org/springframework/boot/logging/logback/base.xml"/>--> | |
| 5 | + <logger name="org.springframework.web" level="info"/> | |
| 6 | + <logger name="com.zteits.job.mapper" level="debug"/> | |
| 7 | + | |
| 8 | + | |
| 9 | + <appender name="ROLLING" class="ch.qos.logback.core.rolling.RollingFileAppender"> | |
| 10 | + <file>${LOG_FILE}</file> | |
| 11 | + <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy"> | |
| 12 | + <!-- rollover daily --> | |
| 13 | + <fileNamePattern>${LOG_FILE}-%d{yyyy-MM-dd}.%i.log</fileNamePattern> | |
| 14 | + <!-- each file should be at most 1GB, keep 60 days worth of history, but at most 20GB --> | |
| 15 | + <maxFileSize>1GB</maxFileSize> | |
| 16 | + <maxHistory>60</maxHistory> | |
| 17 | + <totalSizeCap>20GB</totalSizeCap> | |
| 18 | + </rollingPolicy> | |
| 19 | + <encoder> | |
| 20 | + <!-- 格式化输出:%d表示日期,%thread表示线程名,%-5level:级别从左显示5个字符宽度%msg:日志消息,%n是换行符 --> | |
| 21 | + <pattern>%yellow(%date{yyyy-MM-dd HH:mm:ss})|%cyan(%-5level)|%cyan(%thread) |%green(%logger:%line) |%highlight(%msg%n)</pattern> | |
| 22 | + </encoder> | |
| 23 | + </appender> | |
| 24 | + | |
| 25 | + <!-- <root> | |
| 26 | + <appender-ref ref="ROLLING" /> | |
| 27 | + </root> --> | |
| 28 | + | |
| 29 | + | |
| 30 | + <!--console log--> | |
| 31 | + <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | |
| 32 | + <encoder> | |
| 33 | + <pattern>%yellow(%date{yyyy-MM-dd HH:mm:ss})|%cyan(%-5level)|%cyan(%thread) |%green(%logger:%line) |%highlight(%msg%n)</pattern> | |
| 34 | + <charset>UTF-8</charset> | |
| 35 | + </encoder> | |
| 36 | + </appender> | |
| 37 | + <root level="info"> | |
| 38 | + <appender-ref ref="ROLLING" /> | |
| 39 | + <appender-ref ref="STDOUT"/> | |
| 40 | + </root> | |
| 41 | +</configuration> | ... | ... |
zteits-job/zteits-job.iml
| ... | ... | @@ -11,15 +11,17 @@ |
| 11 | 11 | </content> |
| 12 | 12 | <orderEntry type="inheritedJdk" /> |
| 13 | 13 | <orderEntry type="sourceFolder" forTests="false" /> |
| 14 | - <orderEntry type="library" name="Maven: com.zteits:zteits-framework:0.0.1-SNAPSHOT" level="project" /> | |
| 15 | - <orderEntry type="library" name="Maven: com.zteits:zteits-api:0.0.1-SNAPSHOT" level="project" /> | |
| 14 | + <orderEntry type="library" name="Maven: com.zteits:zteits-framework:2.0.1-SNAPSHOT" level="project" /> | |
| 15 | + <orderEntry type="library" name="Maven: com.zteits:zteits-api:2.0.1-SNAPSHOT" level="project" /> | |
| 16 | 16 | <orderEntry type="library" name="Maven: io.jsonwebtoken:jjwt:0.7.0" level="project" /> |
| 17 | 17 | <orderEntry type="library" name="Maven: com.alibaba:dubbo:2.5.5" level="project" /> |
| 18 | - <orderEntry type="library" name="Maven: org.javassist:javassist:3.21.0-GA" level="project" /> | |
| 18 | + <orderEntry type="library" name="Maven: org.javassist:javassist:3.20.0-GA" level="project" /> | |
| 19 | 19 | <orderEntry type="library" name="Maven: org.jboss.netty:netty:3.2.5.Final" level="project" /> |
| 20 | 20 | <orderEntry type="library" name="Maven: javax.servlet:javax.servlet-api:3.1.0" level="project" /> |
| 21 | + <orderEntry type="library" name="Maven: redis.clients:jedis:2.9.0" level="project" /> | |
| 22 | + <orderEntry type="library" name="Maven: org.apache.commons:commons-pool2:2.5.0" level="project" /> | |
| 21 | 23 | <orderEntry type="library" name="Maven: com.google.guava:guava:21.0" level="project" /> |
| 22 | - <orderEntry type="library" name="Maven: io.swagger:swagger-annotations:1.5.6" level="project" /> | |
| 24 | + <orderEntry type="library" name="Maven: io.swagger:swagger-annotations:1.5.20" level="project" /> | |
| 23 | 25 | <orderEntry type="library" name="Maven: com.sign:sign:1.0" level="project" /> |
| 24 | 26 | <orderEntry type="library" name="Maven: org.apache.poi:poi-ooxml:3.9" level="project" /> |
| 25 | 27 | <orderEntry type="library" name="Maven: org.apache.poi:poi:3.9" level="project" /> |
| ... | ... | @@ -31,9 +33,9 @@ |
| 31 | 33 | <orderEntry type="library" name="Maven: org.apache.ant:ant:1.8.2" level="project" /> |
| 32 | 34 | <orderEntry type="library" name="Maven: org.apache.ant:ant-launcher:1.8.2" level="project" /> |
| 33 | 35 | <orderEntry type="library" name="Maven: net.sourceforge.javacsv:javacsv:2.0" level="project" /> |
| 34 | - <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.8.10" level="project" /> | |
| 35 | - <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.8.0" level="project" /> | |
| 36 | - <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.8.10" level="project" /> | |
| 36 | + <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.9.6" level="project" /> | |
| 37 | + <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.9.0" level="project" /> | |
| 38 | + <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.9.6" level="project" /> | |
| 37 | 39 | <orderEntry type="library" name="Maven: org.apache.curator:curator-recipes:4.0.0" level="project" /> |
| 38 | 40 | <orderEntry type="library" name="Maven: org.apache.curator:curator-framework:4.0.0" level="project" /> |
| 39 | 41 | <orderEntry type="library" name="Maven: org.apache.curator:curator-client:4.0.0" level="project" /> |
| ... | ... | @@ -47,8 +49,8 @@ |
| 47 | 49 | <orderEntry type="library" name="Maven: com.alibaba.pay:alipay-sdk-java:1.0.0" level="project" /> |
| 48 | 50 | <orderEntry type="library" name="Maven: org.apache.rocketmq:spring-boot-starter-rocketmq:1.0.6-SNAPSHOT" level="project" /> |
| 49 | 51 | <orderEntry type="library" name="Maven: com.aliyun.openservices:ons-client:1.7.1.Final" level="project" /> |
| 50 | - <orderEntry type="library" name="Maven: org.springframework:spring-messaging:4.3.13.RELEASE" level="project" /> | |
| 51 | - <orderEntry type="library" name="Maven: org.apache.commons:commons-lang3:3.3.2" level="project" /> | |
| 52 | + <orderEntry type="library" name="Maven: org.springframework:spring-messaging:5.0.9.RELEASE" level="project" /> | |
| 53 | + <orderEntry type="library" name="Maven: org.apache.commons:commons-lang3:3.7" level="project" /> | |
| 52 | 54 | <orderEntry type="library" name="Maven: net.sourceforge.dynamicreports:dynamicreports-core:5.1.0" level="project" /> |
| 53 | 55 | <orderEntry type="library" name="Maven: net.sf.jasperreports:jasperreports:6.5.1" level="project" /> |
| 54 | 56 | <orderEntry type="library" name="Maven: commons-beanutils:commons-beanutils:1.9.3" level="project" /> |
| ... | ... | @@ -88,80 +90,94 @@ |
| 88 | 90 | <orderEntry type="library" name="Maven: net.sourceforge.dynamicreports:dynamicreports-adhoc:5.1.0" level="project" /> |
| 89 | 91 | <orderEntry type="library" name="Maven: net.sourceforge.dynamicreports:dynamicreports-googlecharts:5.1.0" level="project" /> |
| 90 | 92 | <orderEntry type="library" name="Maven: org.apache.velocity:velocity:1.7" level="project" /> |
| 91 | - <orderEntry type="library" name="Maven: org.apache.httpcomponents:httpclient:4.5.3" level="project" /> | |
| 92 | - <orderEntry type="library" name="Maven: org.apache.httpcomponents:httpcore:4.4.8" level="project" /> | |
| 93 | - <orderEntry type="library" name="Maven: commons-codec:commons-codec:1.10" level="project" /> | |
| 94 | - <orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-starter-test:1.5.9.RELEASE" level="project" /> | |
| 95 | - <orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test:1.5.9.RELEASE" level="project" /> | |
| 96 | - <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot:1.5.9.RELEASE" level="project" /> | |
| 97 | - <orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test-autoconfigure:1.5.9.RELEASE" level="project" /> | |
| 98 | - <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-autoconfigure:1.5.9.RELEASE" level="project" /> | |
| 99 | - <orderEntry type="library" scope="TEST" name="Maven: com.jayway.jsonpath:json-path:2.2.0" level="project" /> | |
| 100 | - <orderEntry type="library" scope="TEST" name="Maven: net.minidev:json-smart:2.2.1" level="project" /> | |
| 101 | - <orderEntry type="library" scope="TEST" name="Maven: net.minidev:accessors-smart:1.1" level="project" /> | |
| 102 | - <orderEntry type="library" scope="TEST" name="Maven: org.ow2.asm:asm:5.0.3" level="project" /> | |
| 103 | - <orderEntry type="library" scope="TEST" name="Maven: org.assertj:assertj-core:2.6.0" level="project" /> | |
| 104 | - <orderEntry type="library" scope="TEST" name="Maven: org.mockito:mockito-core:1.10.19" level="project" /> | |
| 105 | - <orderEntry type="library" scope="TEST" name="Maven: org.objenesis:objenesis:2.1" level="project" /> | |
| 93 | + <orderEntry type="library" name="Maven: org.springframework.data:spring-data-commons:2.0.10.RELEASE" level="project" /> | |
| 94 | + <orderEntry type="library" name="Maven: org.apache.httpcomponents:httpclient:4.5.6" level="project" /> | |
| 95 | + <orderEntry type="library" name="Maven: org.apache.httpcomponents:httpcore:4.4.10" level="project" /> | |
| 96 | + <orderEntry type="library" name="Maven: commons-codec:commons-codec:1.11" level="project" /> | |
| 97 | + <orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-starter-test:2.0.5.RELEASE" level="project" /> | |
| 98 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:2.0.5.RELEASE" level="project" /> | |
| 99 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot:2.0.5.RELEASE" level="project" /> | |
| 100 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-autoconfigure:2.0.5.RELEASE" level="project" /> | |
| 101 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-logging:2.0.5.RELEASE" level="project" /> | |
| 102 | + <orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-to-slf4j:2.10.0" level="project" /> | |
| 103 | + <orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-api:2.10.0" level="project" /> | |
| 104 | + <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.25" level="project" /> | |
| 105 | + <orderEntry type="library" name="Maven: javax.annotation:javax.annotation-api:1.3.2" level="project" /> | |
| 106 | + <orderEntry type="library" scope="RUNTIME" name="Maven: org.yaml:snakeyaml:1.19" level="project" /> | |
| 107 | + <orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test:2.0.5.RELEASE" level="project" /> | |
| 108 | + <orderEntry type="library" scope="TEST" name="Maven: org.springframework.boot:spring-boot-test-autoconfigure:2.0.5.RELEASE" level="project" /> | |
| 109 | + <orderEntry type="library" scope="TEST" name="Maven: com.jayway.jsonpath:json-path:2.4.0" level="project" /> | |
| 110 | + <orderEntry type="library" scope="TEST" name="Maven: net.minidev:json-smart:2.3" level="project" /> | |
| 111 | + <orderEntry type="library" scope="TEST" name="Maven: net.minidev:accessors-smart:1.2" level="project" /> | |
| 112 | + <orderEntry type="library" scope="TEST" name="Maven: org.ow2.asm:asm:5.0.4" level="project" /> | |
| 113 | + <orderEntry type="library" scope="TEST" name="Maven: org.assertj:assertj-core:3.9.1" level="project" /> | |
| 114 | + <orderEntry type="library" scope="TEST" name="Maven: org.mockito:mockito-core:2.15.0" level="project" /> | |
| 115 | + <orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy:1.7.11" level="project" /> | |
| 116 | + <orderEntry type="library" scope="TEST" name="Maven: net.bytebuddy:byte-buddy-agent:1.7.11" level="project" /> | |
| 117 | + <orderEntry type="library" scope="TEST" name="Maven: org.objenesis:objenesis:2.6" level="project" /> | |
| 106 | 118 | <orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" /> |
| 107 | 119 | <orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-library:1.3" level="project" /> |
| 108 | - <orderEntry type="library" scope="TEST" name="Maven: org.skyscreamer:jsonassert:1.4.0" level="project" /> | |
| 120 | + <orderEntry type="library" scope="TEST" name="Maven: org.skyscreamer:jsonassert:1.5.0" level="project" /> | |
| 109 | 121 | <orderEntry type="library" scope="TEST" name="Maven: com.vaadin.external.google:android-json:0.0.20131108.vaadin1" level="project" /> |
| 110 | - <orderEntry type="library" name="Maven: org.springframework:spring-core:4.3.13.RELEASE" level="project" /> | |
| 111 | - <orderEntry type="library" scope="TEST" name="Maven: org.springframework:spring-test:4.3.13.RELEASE" level="project" /> | |
| 112 | - <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:1.5.9.RELEASE" level="project" /> | |
| 113 | - <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:1.5.9.RELEASE" level="project" /> | |
| 114 | - <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-logging:1.5.9.RELEASE" level="project" /> | |
| 115 | - <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.25" level="project" /> | |
| 116 | - <orderEntry type="library" name="Maven: org.slf4j:log4j-over-slf4j:1.7.25" level="project" /> | |
| 117 | - <orderEntry type="library" scope="RUNTIME" name="Maven: org.yaml:snakeyaml:1.17" level="project" /> | |
| 118 | - <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-tomcat:1.5.9.RELEASE" level="project" /> | |
| 119 | - <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-core:8.5.23" level="project" /> | |
| 120 | - <orderEntry type="library" name="Maven: org.apache.tomcat:tomcat-annotations-api:8.5.23" level="project" /> | |
| 121 | - <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-el:8.5.23" level="project" /> | |
| 122 | - <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-websocket:8.5.23" level="project" /> | |
| 123 | - <orderEntry type="library" name="Maven: org.hibernate:hibernate-validator:5.3.6.Final" level="project" /> | |
| 124 | - <orderEntry type="library" name="Maven: javax.validation:validation-api:1.1.0.Final" level="project" /> | |
| 125 | - <orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.3.1.Final" level="project" /> | |
| 126 | - <orderEntry type="library" name="Maven: org.springframework:spring-web:4.3.13.RELEASE" level="project" /> | |
| 127 | - <orderEntry type="library" name="Maven: org.springframework:spring-webmvc:4.3.13.RELEASE" level="project" /> | |
| 128 | - <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-aop:1.5.9.RELEASE" level="project" /> | |
| 129 | - <orderEntry type="library" name="Maven: org.springframework:spring-aop:4.3.13.RELEASE" level="project" /> | |
| 122 | + <orderEntry type="library" name="Maven: org.springframework:spring-core:5.0.9.RELEASE" level="project" /> | |
| 123 | + <orderEntry type="library" name="Maven: org.springframework:spring-jcl:5.0.9.RELEASE" level="project" /> | |
| 124 | + <orderEntry type="library" scope="TEST" name="Maven: org.springframework:spring-test:5.0.9.RELEASE" level="project" /> | |
| 125 | + <orderEntry type="library" scope="TEST" name="Maven: org.xmlunit:xmlunit-core:2.5.1" level="project" /> | |
| 126 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:2.0.5.RELEASE" level="project" /> | |
| 127 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-json:2.0.5.RELEASE" level="project" /> | |
| 128 | + <orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.6" level="project" /> | |
| 129 | + <orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.6" level="project" /> | |
| 130 | + <orderEntry type="library" name="Maven: com.fasterxml.jackson.module:jackson-module-parameter-names:2.9.6" level="project" /> | |
| 131 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-tomcat:2.0.5.RELEASE" level="project" /> | |
| 132 | + <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-core:8.5.34" level="project" /> | |
| 133 | + <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-el:8.5.34" level="project" /> | |
| 134 | + <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-websocket:8.5.34" level="project" /> | |
| 135 | + <orderEntry type="library" name="Maven: org.hibernate.validator:hibernate-validator:6.0.12.Final" level="project" /> | |
| 136 | + <orderEntry type="library" name="Maven: javax.validation:validation-api:2.0.1.Final" level="project" /> | |
| 137 | + <orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.3.2.Final" level="project" /> | |
| 138 | + <orderEntry type="library" name="Maven: org.springframework:spring-web:5.0.9.RELEASE" level="project" /> | |
| 139 | + <orderEntry type="library" name="Maven: org.springframework:spring-webmvc:5.0.9.RELEASE" level="project" /> | |
| 140 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-aop:2.0.5.RELEASE" level="project" /> | |
| 141 | + <orderEntry type="library" name="Maven: org.springframework:spring-aop:5.0.9.RELEASE" level="project" /> | |
| 130 | 142 | <orderEntry type="library" name="Maven: org.aspectj:aspectjweaver:1.8.13" level="project" /> |
| 131 | - <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-redis:1.4.7.RELEASE" level="project" /> | |
| 132 | - <orderEntry type="library" name="Maven: org.springframework.data:spring-data-redis:1.8.9.RELEASE" level="project" /> | |
| 133 | - <orderEntry type="library" name="Maven: org.springframework.data:spring-data-keyvalue:1.2.9.RELEASE" level="project" /> | |
| 134 | - <orderEntry type="library" name="Maven: org.springframework:spring-tx:4.3.13.RELEASE" level="project" /> | |
| 135 | - <orderEntry type="library" name="Maven: org.springframework:spring-oxm:4.3.13.RELEASE" level="project" /> | |
| 136 | - <orderEntry type="library" name="Maven: org.slf4j:jcl-over-slf4j:1.7.25" level="project" /> | |
| 137 | - <orderEntry type="library" name="Maven: redis.clients:jedis:2.9.0" level="project" /> | |
| 138 | - <orderEntry type="library" name="Maven: org.apache.commons:commons-pool2:2.4.3" level="project" /> | |
| 139 | - <orderEntry type="library" name="Maven: org.springframework.session:spring-session:1.3.1.RELEASE" level="project" /> | |
| 143 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-data-redis:2.0.5.RELEASE" level="project" /> | |
| 144 | + <orderEntry type="library" name="Maven: org.springframework.data:spring-data-redis:2.0.10.RELEASE" level="project" /> | |
| 145 | + <orderEntry type="library" name="Maven: org.springframework.data:spring-data-keyvalue:2.0.10.RELEASE" level="project" /> | |
| 146 | + <orderEntry type="library" name="Maven: org.springframework:spring-tx:5.0.9.RELEASE" level="project" /> | |
| 147 | + <orderEntry type="library" name="Maven: org.springframework:spring-oxm:5.0.9.RELEASE" level="project" /> | |
| 148 | + <orderEntry type="library" name="Maven: io.lettuce:lettuce-core:5.0.5.RELEASE" level="project" /> | |
| 149 | + <orderEntry type="library" name="Maven: io.projectreactor:reactor-core:3.1.9.RELEASE" level="project" /> | |
| 150 | + <orderEntry type="library" name="Maven: org.reactivestreams:reactive-streams:1.0.2" level="project" /> | |
| 151 | + <orderEntry type="library" name="Maven: io.netty:netty-common:4.1.29.Final" level="project" /> | |
| 152 | + <orderEntry type="library" name="Maven: io.netty:netty-transport:4.1.29.Final" level="project" /> | |
| 153 | + <orderEntry type="library" name="Maven: io.netty:netty-buffer:4.1.29.Final" level="project" /> | |
| 154 | + <orderEntry type="library" name="Maven: io.netty:netty-resolver:4.1.29.Final" level="project" /> | |
| 155 | + <orderEntry type="library" name="Maven: io.netty:netty-handler:4.1.29.Final" level="project" /> | |
| 156 | + <orderEntry type="library" name="Maven: io.netty:netty-codec:4.1.29.Final" level="project" /> | |
| 157 | + <orderEntry type="library" name="Maven: org.springframework.session:spring-session-data-redis:2.0.5.RELEASE" level="project" /> | |
| 158 | + <orderEntry type="library" name="Maven: org.springframework.session:spring-session-core:2.0.6.RELEASE" level="project" /> | |
| 140 | 159 | <orderEntry type="library" name="Maven: com.xiaoleilu:hutool-all:3.0.5" level="project" /> |
| 141 | 160 | <orderEntry type="library" name="Maven: com.alibaba:fastjson:1.2.47" level="project" /> |
| 142 | 161 | <orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" /> |
| 143 | 162 | <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.21" level="project" /> |
| 144 | 163 | <orderEntry type="library" name="Maven: ch.qos.logback:logback-classic:1.1.7" level="project" /> |
| 145 | 164 | <orderEntry type="library" name="Maven: ch.qos.logback:logback-core:1.1.7" level="project" /> |
| 146 | - <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-data-jpa:1.5.9.RELEASE" level="project" /> | |
| 147 | - <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jdbc:1.5.9.RELEASE" level="project" /> | |
| 148 | - <orderEntry type="library" name="Maven: org.apache.tomcat:tomcat-jdbc:8.5.23" level="project" /> | |
| 149 | - <orderEntry type="library" name="Maven: org.apache.tomcat:tomcat-juli:8.5.23" level="project" /> | |
| 150 | - <orderEntry type="library" name="Maven: org.springframework:spring-jdbc:4.3.13.RELEASE" level="project" /> | |
| 151 | - <orderEntry type="library" name="Maven: org.hibernate:hibernate-core:5.0.12.Final" level="project" /> | |
| 152 | - <orderEntry type="library" name="Maven: org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final" level="project" /> | |
| 165 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-data-jpa:2.0.5.RELEASE" level="project" /> | |
| 166 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jdbc:2.0.5.RELEASE" level="project" /> | |
| 167 | + <orderEntry type="library" name="Maven: com.zaxxer:HikariCP:2.7.9" level="project" /> | |
| 168 | + <orderEntry type="library" name="Maven: org.springframework:spring-jdbc:5.0.9.RELEASE" level="project" /> | |
| 169 | + <orderEntry type="library" name="Maven: javax.transaction:javax.transaction-api:1.2" level="project" /> | |
| 170 | + <orderEntry type="library" name="Maven: org.hibernate:hibernate-core:5.2.17.Final" level="project" /> | |
| 171 | + <orderEntry type="library" name="Maven: org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.2.Final" level="project" /> | |
| 153 | 172 | <orderEntry type="library" name="Maven: antlr:antlr:2.7.7" level="project" /> |
| 154 | - <orderEntry type="library" name="Maven: org.jboss:jandex:2.0.0.Final" level="project" /> | |
| 173 | + <orderEntry type="library" name="Maven: org.jboss:jandex:2.0.3.Final" level="project" /> | |
| 155 | 174 | <orderEntry type="library" name="Maven: org.hibernate.common:hibernate-commons-annotations:5.0.1.Final" level="project" /> |
| 156 | - <orderEntry type="library" name="Maven: org.hibernate:hibernate-entitymanager:5.0.12.Final" level="project" /> | |
| 157 | - <orderEntry type="library" name="Maven: javax.transaction:javax.transaction-api:1.2" level="project" /> | |
| 158 | - <orderEntry type="library" name="Maven: org.springframework.data:spring-data-jpa:1.11.9.RELEASE" level="project" /> | |
| 159 | - <orderEntry type="library" name="Maven: org.springframework.data:spring-data-commons:1.13.9.RELEASE" level="project" /> | |
| 160 | - <orderEntry type="library" name="Maven: org.springframework:spring-orm:4.3.13.RELEASE" level="project" /> | |
| 161 | - <orderEntry type="library" name="Maven: org.springframework:spring-aspects:4.3.13.RELEASE" level="project" /> | |
| 162 | - <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-freemarker:1.5.9.RELEASE" level="project" /> | |
| 163 | - <orderEntry type="library" name="Maven: org.freemarker:freemarker:2.3.27-incubating" level="project" /> | |
| 164 | - <orderEntry type="library" name="Maven: org.springframework:spring-context-support:4.3.13.RELEASE" level="project" /> | |
| 175 | + <orderEntry type="library" name="Maven: org.springframework.data:spring-data-jpa:2.0.10.RELEASE" level="project" /> | |
| 176 | + <orderEntry type="library" name="Maven: org.springframework:spring-orm:5.0.9.RELEASE" level="project" /> | |
| 177 | + <orderEntry type="library" name="Maven: org.springframework:spring-aspects:5.0.9.RELEASE" level="project" /> | |
| 178 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-freemarker:2.0.5.RELEASE" level="project" /> | |
| 179 | + <orderEntry type="library" name="Maven: org.freemarker:freemarker:2.3.28" level="project" /> | |
| 180 | + <orderEntry type="library" name="Maven: org.springframework:spring-context-support:5.0.9.RELEASE" level="project" /> | |
| 165 | 181 | <orderEntry type="library" name="Maven: mysql:mysql-connector-java:5.1.42" level="project" /> |
| 166 | 182 | <orderEntry type="library" name="Maven: com.alibaba:druid:1.0.31" level="project" /> |
| 167 | 183 | <orderEntry type="module-library"> |
| ... | ... | @@ -191,7 +207,6 @@ |
| 191 | 207 | <orderEntry type="library" name="Maven: io.swagger:swagger-models:1.5.13" level="project" /> |
| 192 | 208 | <orderEntry type="library" name="Maven: io.springfox:springfox-spi:2.7.0" level="project" /> |
| 193 | 209 | <orderEntry type="library" name="Maven: io.springfox:springfox-core:2.7.0" level="project" /> |
| 194 | - <orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy:1.6.14" level="project" /> | |
| 195 | 210 | <orderEntry type="library" name="Maven: io.springfox:springfox-schema:2.7.0" level="project" /> |
| 196 | 211 | <orderEntry type="library" name="Maven: io.springfox:springfox-swagger-common:2.7.0" level="project" /> |
| 197 | 212 | <orderEntry type="library" name="Maven: io.springfox:springfox-spring-web:2.7.0" level="project" /> |
| ... | ... | @@ -201,11 +216,22 @@ |
| 201 | 216 | <orderEntry type="library" name="Maven: org.springframework.plugin:spring-plugin-metadata:1.2.0.RELEASE" level="project" /> |
| 202 | 217 | <orderEntry type="library" name="Maven: org.mapstruct:mapstruct:1.1.0.Final" level="project" /> |
| 203 | 218 | <orderEntry type="library" name="Maven: io.springfox:springfox-swagger-ui:2.7.0" level="project" /> |
| 204 | - <orderEntry type="library" name="Maven: org.springframework.security:spring-security-web:4.2.3.RELEASE" level="project" /> | |
| 205 | - <orderEntry type="library" name="Maven: aopalliance:aopalliance:1.0" level="project" /> | |
| 206 | - <orderEntry type="library" name="Maven: org.springframework.security:spring-security-core:4.2.3.RELEASE" level="project" /> | |
| 207 | - <orderEntry type="library" name="Maven: org.springframework:spring-beans:4.3.13.RELEASE" level="project" /> | |
| 208 | - <orderEntry type="library" name="Maven: org.springframework:spring-context:4.3.13.RELEASE" level="project" /> | |
| 209 | - <orderEntry type="library" name="Maven: org.springframework:spring-expression:4.3.13.RELEASE" level="project" /> | |
| 219 | + <orderEntry type="library" name="Maven: org.springframework.security:spring-security-web:5.0.8.RELEASE" level="project" /> | |
| 220 | + <orderEntry type="library" name="Maven: org.springframework.security:spring-security-core:5.0.8.RELEASE" level="project" /> | |
| 221 | + <orderEntry type="library" name="Maven: org.springframework:spring-beans:5.0.9.RELEASE" level="project" /> | |
| 222 | + <orderEntry type="library" name="Maven: org.springframework:spring-context:5.0.9.RELEASE" level="project" /> | |
| 223 | + <orderEntry type="library" name="Maven: org.springframework:spring-expression:5.0.9.RELEASE" level="project" /> | |
| 224 | + <orderEntry type="library" name="Maven: de.codecentric:spring-boot-admin-starter-client:2.0.3" level="project" /> | |
| 225 | + <orderEntry type="library" name="Maven: de.codecentric:spring-boot-admin-client:2.0.3" level="project" /> | |
| 226 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-actuator:2.0.5.RELEASE" level="project" /> | |
| 227 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator-autoconfigure:2.0.5.RELEASE" level="project" /> | |
| 228 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-actuator:2.0.5.RELEASE" level="project" /> | |
| 229 | + <orderEntry type="library" name="Maven: io.micrometer:micrometer-core:1.0.6" level="project" /> | |
| 230 | + <orderEntry type="library" name="Maven: org.hdrhistogram:HdrHistogram:2.1.10" level="project" /> | |
| 231 | + <orderEntry type="library" name="Maven: org.latencyutils:LatencyUtils:2.0.3" level="project" /> | |
| 232 | + <orderEntry type="library" name="Maven: org.jolokia:jolokia-core:1.5.0" level="project" /> | |
| 233 | + <orderEntry type="library" name="Maven: com.googlecode.json-simple:json-simple:1.1.1" level="project" /> | |
| 234 | + <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-security:2.0.5.RELEASE" level="project" /> | |
| 235 | + <orderEntry type="library" name="Maven: org.springframework.security:spring-security-config:5.0.8.RELEASE" level="project" /> | |
| 210 | 236 | </component> |
| 211 | 237 | </module> |
| 212 | 238 | \ No newline at end of file | ... | ... |