pom.xml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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-dbsimple</artifactId>
  12. <name>jpress-search-dbsimple</name>
  13. <url>http://jpress.io</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>junit</groupId>
  20. <artifactId>junit</artifactId>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.usoftchina</groupId>
  25. <artifactId>jpress-search-api</artifactId>
  26. <version>1.0</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.usoftchina</groupId>
  30. <artifactId>jpress-model</artifactId>
  31. <version>1.0</version>
  32. </dependency>
  33. </dependencies>
  34. </project>