物管理后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.1 KiB

1 year ago
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.thing</groupId>
  8. <artifactId>tools</artifactId>
  9. <version>5.1</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <groupId>com.thing.tools</groupId>
  13. <artifactId>code-generator</artifactId>
  14. <packaging>jar</packaging>
  15. <name>ThingBI Server Modules code-generator</name>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.thing.modules</groupId>
  22. <artifactId>thing</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.freemarker</groupId>
  26. <artifactId>freemarker</artifactId>
  27. <version>2.3.31</version>
  28. </dependency>
  29. </dependencies>
  30. </project>