Commit ba4c13c82f3400a1366b12c3e04a5dbd38099236
1 parent
e2300bd23e
Exists in
master
and in
6 other branches
etl pom提交
Showing 1 changed file with 68 additions and 0 deletions
regional-etl/pom.xml
View file @
ba4c13c
| 1 | +<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"> | |
| 2 | + <modelVersion>4.0.0</modelVersion> | |
| 3 | + <parent> | |
| 4 | + <groupId>org.springframework.boot</groupId> | |
| 5 | + <artifactId>spring-boot-starter-parent</artifactId> | |
| 6 | + <version>1.5.3.RELEASE</version> | |
| 7 | + </parent> | |
| 8 | + | |
| 9 | + <groupId>com.lyms.etl</groupId> | |
| 10 | + <artifactId>regional-etl</artifactId> | |
| 11 | + | |
| 12 | + <properties> | |
| 13 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| 14 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | |
| 15 | + <java.version>1.8</java.version> | |
| 16 | + </properties> | |
| 17 | + | |
| 18 | + <dependencies> | |
| 19 | + <dependency> | |
| 20 | + <groupId>org.springframework.boot</groupId> | |
| 21 | + <artifactId>spring-boot-starter-web</artifactId> | |
| 22 | + </dependency> | |
| 23 | + | |
| 24 | + <dependency> | |
| 25 | + <groupId>org.mybatis.spring.boot</groupId> | |
| 26 | + <artifactId>mybatis-spring-boot-starter</artifactId> | |
| 27 | + <version>1.2.0</version> | |
| 28 | + </dependency> | |
| 29 | + | |
| 30 | + <dependency> | |
| 31 | + <groupId>org.springframework.boot</groupId> | |
| 32 | + <artifactId>spring-boot-starter-data-mongodb</artifactId> | |
| 33 | + <version>1.5.2.RELEASE</version> | |
| 34 | + </dependency> | |
| 35 | + | |
| 36 | + <dependency> | |
| 37 | + <groupId>org.springframework.boot</groupId> | |
| 38 | + <artifactId>spring-boot-starter-test</artifactId> | |
| 39 | + <scope>test</scope> | |
| 40 | + </dependency> | |
| 41 | + | |
| 42 | + <dependency> | |
| 43 | + <groupId>mysql</groupId> | |
| 44 | + <artifactId>mysql-connector-java</artifactId> | |
| 45 | + </dependency> | |
| 46 | + | |
| 47 | + <dependency> | |
| 48 | + <groupId>com.alibaba</groupId> | |
| 49 | + <artifactId>druid</artifactId> | |
| 50 | + <version>1.0.28</version> | |
| 51 | + </dependency> | |
| 52 | + | |
| 53 | + <dependency> | |
| 54 | + <groupId>org.springframework.boot</groupId> | |
| 55 | + <artifactId>spring-boot-devtools</artifactId> | |
| 56 | + <optional>true</optional> | |
| 57 | + </dependency> | |
| 58 | + </dependencies> | |
| 59 | + | |
| 60 | + <build> | |
| 61 | + <plugins> | |
| 62 | + <plugin> | |
| 63 | + <groupId>org.springframework.boot</groupId> | |
| 64 | + <artifactId>spring-boot-maven-plugin</artifactId> | |
| 65 | + </plugin> | |
| 66 | + </plugins> | |
| 67 | + </build> | |
| 68 | +</project> |