pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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>wuye-common</artifactId>
  7. <groupId>com.cyzh</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>wuye-common-tag</artifactId>
  12. <packaging>jar</packaging>
  13. <description>自定义标签组件</description>
  14. <dependencies>
  15. <!-- ===================================== Spring Boot JAR ===================================== -->
  16. <!-- thymeleaf -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.cyzh</groupId>
  23. <artifactId>wuye-common-core</artifactId>
  24. <version>${project.version}</version>
  25. <scope>compile</scope>
  26. </dependency>
  27. </dependencies>
  28. </project>