123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?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>
- <artifactId>apm-parent</artifactId>
- <groupId>com.persagy</groupId>
- <version>3.0.0</version>
- <relativePath>../apm-parent</relativePath>
- </parent>
- <version>1.0.0</version>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>apm-screw</artifactId>
- <properties>
- <mysql.version>8.0.15</mysql.version>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>cn.smallbun.screw</groupId>
- <artifactId>screw-maven-plugin</artifactId>
- <version>1.0.5</version>
- <dependencies>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql.version}</version>
- </dependency>
- </dependencies>
- <configuration>
- <!-- 数据库相关配置 -->
- <driverClassName>com.mysql.cj.jdbc.Driver</driverClassName>
- <jdbcUrl>jdbc:mysql://192.168.100.94:9934/report_factory</jdbcUrl>
- <username>root</username>
- <password>persagy@2020</password>
- <!-- screw 配置 -->
- <fileType>MD</fileType>
- <title>表结构设计</title> <!--标题-->
- <fileName>energy_report_1.0.0_表结构设计</fileName> <!--文档名称 为空时:将采用[数据库名称-描述-版本号]作为文档名称-->
- <description>表结构设计</description> <!--描述-->
- <version>${project.version}</version> <!--版本-->
- <openOutputDir>false</openOutputDir> <!--打开文件输出目录-->
- <produceType>freemarker</produceType> <!--生成模板-->
- </configuration>
- <executions>
- <execution>
- <phase>compile</phase>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|