webmagic-selenium-0.7.4.pom 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>webmagic-parent</artifactId>
  5. <groupId>us.codecraft</groupId>
  6. <version>0.7.4</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>webmagic-selenium</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.seleniumhq.selenium</groupId>
  13. <artifactId>selenium-java</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>${project.groupId}</groupId>
  17. <artifactId>webmagic-core</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.github.detro</groupId>
  22. <artifactId>phantomjsdriver</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>junit</groupId>
  26. <artifactId>junit</artifactId>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-deploy-plugin</artifactId>
  34. <version>3.0.0-M1</version>
  35. <configuration>
  36. <skip>true</skip>
  37. </configuration>
  38. </plugin>
  39. </plugins>
  40. </build>
  41. </project>