pom.xml 896 B

12345678910111213141516171819202122232425
  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>hsweb-logging</artifactId>
  7. <groupId>org.hswebframework.web</groupId>
  8. <version>4.0.15</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>hsweb-access-logging-api</artifactId>
  13. <description>访问日志API模块</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.hswebframework.web</groupId>
  17. <artifactId>hsweb-core</artifactId>
  18. <version>${project.version}</version>
  19. <scope>compile</scope>
  20. </dependency>
  21. </dependencies>
  22. </project>