pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.usoftchina</groupId>
  8. <artifactId>usoftchina-cms</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>jpress-oauth2</artifactId>
  12. <name>jpress-oauth2</name>
  13. <url>http://jpress.io</url>
  14. <packaging>jar</packaging>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.jfinal</groupId>
  26. <artifactId>jfinal</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>javax.servlet</groupId>
  30. <artifactId>javax.servlet-api</artifactId>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.usoftchina</groupId>
  35. <artifactId>jpress-commons</artifactId>
  36. <version>1.0</version>
  37. <type>jar</type>
  38. <scope>compile</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.usoftchina</groupId>
  42. <artifactId>jpress-model</artifactId>
  43. <version>1.0</version>
  44. <type>jar</type>
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>fastjson</artifactId>
  50. </dependency>
  51. </dependencies>
  52. </project>