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>v1.0.0-SNAPSHOT</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/dmp_alarm</jdbcUrl>
- <username>root</username>
- <password>persagy@2020</password>
-
- <fileType>MD</fileType>
- <title>表结构设计</title>
- <fileName>dmp_alarm表结构设计</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>
|