pom.xml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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-search-api</artifactId>
  12. <name>jpress-search-api</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>com.usoftchina</groupId>
  30. <artifactId>jpress-commons</artifactId>
  31. <version>1.0</version>
  32. <type>jar</type>
  33. <scope>compile</scope>
  34. </dependency>
  35. </dependencies>
  36. </project>