pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. <parent>
  6. <groupId>org.jeeplus</groupId>
  7. <artifactId>jeeplus-platform</artifactId>
  8. <version>9.0</version>
  9. </parent>
  10. <artifactId>jeeplus-admin</artifactId>
  11. <packaging>jar</packaging>
  12. <name>jeeplus admin</name>
  13. <description>Admin project for jeeplus</description>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.jeeplus</groupId>
  22. <artifactId>jeeplus-common</artifactId>
  23. <version>${project.parent.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.jasig.cas.client</groupId>
  27. <artifactId>cas-client-core</artifactId>
  28. <version>3.5.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.alibaba</groupId>
  32. <artifactId>fastjson</artifactId>
  33. <version>2.0.7</version>
  34. </dependency>
  35. <!-- 解析客户端操作系统、浏览器等 -->
  36. <dependency>
  37. <groupId>eu.bitwalker</groupId>
  38. <artifactId>UserAgentUtils</artifactId>
  39. <version>1.21</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>log4j</groupId>
  43. <artifactId>log4j</artifactId>
  44. <version>1.2.17</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.flowable</groupId>
  48. <artifactId>flowable-task-service-api</artifactId>
  49. <version>6.4.2</version>
  50. </dependency>
  51. </dependencies>
  52. </project>