|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>com.wb</groupId>
|
|
|
|
<artifactId>dbtool</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.0.3.RELEASE</version>
|
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>maven</id>
|
|
|
|
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<layout>default</layout>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--<dependency>-->
|
|
|
|
<!--<groupId>org.springframework.boot</groupId>-->
|
|
|
|
<!--<artifactId>spring-boot-devtools</artifactId>-->
|
|
|
|
<!--<scope>provided</scope>-->
|
|
|
|
<!--<optional>true</optional>-->
|
|
|
|
<!--</dependency>-->
|
|
|
|
|
|
|
|
<!--<dependency>-->
|
|
|
|
<!--<groupId>org.springframework.boot</groupId>-->
|
|
|
|
<!--<artifactId>spring-boot-starter-test</artifactId>-->
|
|
|
|
<!--<scope>test</scope>-->
|
|
|
|
<!--</dependency>-->
|
|
|
|
|
|
|
|
<!--<dependency>-->
|
|
|
|
<!--<groupId>org.springframework.boot</groupId>-->
|
|
|
|
<!--<artifactId>spring-boot-starter-security</artifactId>-->
|
|
|
|
<!--</dependency>-->
|
|
|
|
|
|
|
|
<!--<dependency>-->
|
|
|
|
<!--<groupId>org.apache.poi</groupId>-->
|
|
|
|
<!--<artifactId>poi-ooxml</artifactId>-->
|
|
|
|
<!--<version>3.14</version>-->
|
|
|
|
<!--</dependency>-->
|
|
|
|
|
|
|
|
<!--<dependency>-->
|
|
|
|
<!--<groupId>org.apache.poi</groupId>-->
|
|
|
|
<!--<artifactId>poi-ooxml-schemas</artifactId>-->
|
|
|
|
<!--<version>3.14</version>-->
|
|
|
|
<!--</dependency>-->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.oracle.driver</groupId>
|
|
|
|
<artifactId>odbc</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/src/main/resources/lib/ojdbc7-12.1.0.2.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<!-- 项目名称 -->
|
|
|
|
<finalName>dbtool</finalName>
|
|
|
|
<!-- 默认的主代码目录 -->
|
|
|
|
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/src/main/java</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/mpr/*.xml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*.bat</include>
|
|
|
|
</includes>
|
|
|
|
<targetPath>${project.basedir}/target</targetPath>
|
|
|
|
</resource>
|
|
|
|
<!-- 包含lib中所有jar包 -->
|
|
|
|
<resource>
|
|
|
|
<directory>${basedir}/src/main/resources/lib</directory>
|
|
|
|
<targetPath>BOOT-INF/lib/</targetPath>
|
|
|
|
<includes>
|
|
|
|
<include>*.jar</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|