pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. </dependencies>
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-compiler-plugin</artifactId>
  30. <version>3.3</version>
  31. <configuration>
  32. <source>1.7</source>
  33. <target>1.7</target>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>