| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 | 
							- <?xml version="1.0" encoding="UTF-8"?>
 
- <project xmlns="http://maven.apache.org/POM/4.0.0"
 
-          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
-          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 
-     <parent>
 
-         <groupId>com.yihu.jw</groupId>
 
-         <artifactId>wlyy-parent-pom</artifactId>
 
-         <version>2.0.0</version>
 
-         <relativePath>../../wlyy-parent-pom/pom.xml</relativePath>
 
-     </parent>
 
-     <modelVersion>4.0.0</modelVersion>
 
-     <artifactId>ag-basic</artifactId>
 
-     <version>${parent.version}</version>
 
-     <packaging>jar</packaging>
 
-     <dependencies>
 
-         <!-- 支持Tomcat启动 -->
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-web</artifactId>
 
-             <exclusions>
 
-                 <exclusion>
 
-                     <groupId>org.springframework.boot</groupId>
 
-                     <artifactId>spring-boot-starter-tomcat</artifactId>
 
-                 </exclusion>
 
-             </exclusions>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-tomcat</artifactId>
 
-             <scope>provided</scope>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>javax.servlet</groupId>
 
-             <artifactId>javax.servlet-api</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.apache.tomcat.embed</groupId>
 
-             <artifactId>tomcat-embed-jasper</artifactId>
 
-         </dependency>
 
-         <!-- 支持Tomcat启动 -->
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-actuator</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.springframework.cloud</groupId>
 
-             <artifactId>spring-cloud-starter-eureka</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.springframework.cloud</groupId>
 
-             <artifactId>spring-cloud-starter-zuul</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.springframework.cloud</groupId>
 
-             <artifactId>spring-cloud-starter-config</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.springframework.retry</groupId>
 
-             <artifactId>spring-retry</artifactId>
 
-         </dependency>
 
-         <!--<dependency>
 
-             <groupId>org.springframework.cloud</groupId>
 
-             <artifactId>spring-cloud-starter-zipkin</artifactId>
 
-         </dependency>-->
 
-         <!-- 安全认证中心-->
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-security</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.springframework.security.oauth</groupId>
 
-             <artifactId>spring-security-oauth2</artifactId>
 
-         </dependency>
 
-         <!-- 安全认证中心-->
 
-         <!-- Redis  -->
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-data-redis</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>redis.clients</groupId>
 
-             <artifactId>jedis</artifactId>
 
-         </dependency>
 
-         <!-- Redis  -->
 
-         <!-- JdbcTemplate-->
 
-         <dependency>
 
-             <groupId>org.springframework.boot</groupId>
 
-             <artifactId>spring-boot-starter-jdbc</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>mysql</groupId>
 
-             <artifactId>mysql-connector-java</artifactId>
 
-             <scope>runtime</scope>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>org.apache.commons</groupId>
 
-             <artifactId>commons-dbcp2</artifactId>
 
-         </dependency>
 
-         <!-- JdbcTemplate-->
 
-         <dependency>
 
-             <groupId>com.yihu.jw</groupId>
 
-             <artifactId>common-web</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>com.yihu.jw</groupId>
 
-             <artifactId>common-rest-model</artifactId>
 
-         </dependency>
 
-         <dependency>
 
-             <groupId>commons-fileupload</groupId>
 
-             <artifactId>commons-fileupload</artifactId>
 
-             <version>1.3.1</version>
 
-         </dependency>
 
-         <!--oracle驱动-->
 
-         <dependency>
 
-             <groupId>com.oracle</groupId>
 
-             <artifactId>ojdbc6</artifactId>
 
-             <version>11.2.0.3</version>
 
-         </dependency>
 
-     </dependencies>
 
-     <build>
 
-         <finalName>ag-basic</finalName>
 
-         <plugins>
 
-             <plugin>
 
-                 <groupId>org.springframework.boot</groupId>
 
-                 <artifactId>spring-boot-maven-plugin</artifactId>
 
-             </plugin>
 
-             <plugin>
 
-                 <artifactId>maven-war-plugin</artifactId>
 
-                 <configuration>
 
-                     <failOnMissingWebXml>false</failOnMissingWebXml>
 
-                     <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
 
-                 </configuration>
 
-             </plugin>
 
-         </plugins>
 
-     </build>
 
- </project>
 
 
  |