pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.wsm</groupId>
  6. <artifactId>wsm-admin-web</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>jar</packaging>
  9. <repositories>
  10. <repository>
  11. <id>nexus-aliyun</id>
  12. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  13. </repository>
  14. </repositories>
  15. <name>wsm-admin-web</name>
  16. <description>wsm admin web project</description>
  17. <parent>
  18. <groupId>com.wsm</groupId>
  19. <artifactId>wsm-base</artifactId>
  20. <version>1.0.0</version>
  21. <relativePath>../pom.xml</relativePath>
  22. </parent>
  23. <properties>
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  26. <java.version>1.8</java.version>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>com.wsm</groupId>
  31. <artifactId>wsm-common</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.wsm</groupId>
  35. <artifactId>wsm-admin-dao</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.wsm</groupId>
  39. <artifactId>wsm-admin-service</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.github.theborakompanioni</groupId>
  43. <artifactId>thymeleaf-extras-shiro</artifactId>
  44. </dependency>
  45. </dependencies>
  46. </project>