pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>apm-parent</artifactId>
  7. <groupId>com.persagy</groupId>
  8. <version>3.0.0</version>
  9. <relativePath>../apm-parent</relativePath>
  10. </parent>
  11. <version>1.0.0</version>
  12. <modelVersion>4.0.0</modelVersion>
  13. <artifactId>apm-screw</artifactId>
  14. <properties>
  15. <mysql.version>8.0.15</mysql.version>
  16. </properties>
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <groupId>cn.smallbun.screw</groupId>
  21. <artifactId>screw-maven-plugin</artifactId>
  22. <version>1.0.5</version>
  23. <dependencies>
  24. <dependency>
  25. <groupId>mysql</groupId>
  26. <artifactId>mysql-connector-java</artifactId>
  27. <version>${mysql.version}</version>
  28. </dependency>
  29. </dependencies>
  30. <configuration>
  31. <!-- 数据库相关配置 -->
  32. <driverClassName>com.mysql.cj.jdbc.Driver</driverClassName>
  33. <jdbcUrl>jdbc:mysql://192.168.100.94:9934/report_factory</jdbcUrl>
  34. <username>root</username>
  35. <password>persagy@2020</password>
  36. <!-- screw 配置 -->
  37. <fileType>MD</fileType>
  38. <title>表结构设计</title> <!--标题-->
  39. <fileName>energy_report_1.0.0_表结构设计</fileName> <!--文档名称 为空时:将采用[数据库名称-描述-版本号]作为文档名称-->
  40. <description>表结构设计</description> <!--描述-->
  41. <version>${project.version}</version> <!--版本-->
  42. <openOutputDir>false</openOutputDir> <!--打开文件输出目录-->
  43. <produceType>freemarker</produceType> <!--生成模板-->
  44. </configuration>
  45. <executions>
  46. <execution>
  47. <phase>compile</phase>
  48. <goals>
  49. <goal>run</goal>
  50. </goals>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>