pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <!-- 父类定义 -->
  5. <parent>
  6. <groupId>com.iamberry</groupId>
  7. <artifactId>iamberry-parent</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <!-- 工具类本身并不依赖其他模块 -->
  11. <artifactId>watero-common-tool</artifactId>
  12. <dependencies>
  13. <!-- JWT -->
  14. <dependency>
  15. <groupId>com.auth0</groupId>
  16. <artifactId>java-jwt</artifactId>
  17. <version>2.2.1</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.github.pagehelper</groupId>
  21. <artifactId>pagehelper</artifactId>
  22. <version>RELEASE</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.jsoup</groupId>
  26. <artifactId>jsoup</artifactId>
  27. <version>1.8.1</version>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-compiler-plugin</artifactId>
  35. <version>3.3</version>
  36. <configuration>
  37. <source>1.7</source>
  38. <target>1.7</target>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. </project>