not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
2.1 KiB

6 years ago
  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. <groupId>net.jrtechs.www</groupId>
  6. <artifactId>HtmlParser</artifactId>
  7. <version>0.1</version>
  8. <name>HtmlParser</name>
  9. <!-- FIXME change it to the project's website -->
  10. <url>http://www.example.com</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <maven.compiler.source>1.7</maven.compiler.source>
  14. <maven.compiler.target>1.7</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>junit</groupId>
  19. <artifactId>junit</artifactId>
  20. <version>4.11</version>
  21. <scope>test</scope>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  26. <plugins>
  27. <plugin>
  28. <artifactId>maven-clean-plugin</artifactId>
  29. <version>3.0.0</version>
  30. </plugin>
  31. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  32. <plugin>
  33. <artifactId>maven-resources-plugin</artifactId>
  34. <version>3.0.2</version>
  35. </plugin>
  36. <plugin>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <version>3.7.0</version>
  39. </plugin>
  40. <plugin>
  41. <artifactId>maven-surefire-plugin</artifactId>
  42. <version>2.20.1</version>
  43. </plugin>
  44. <plugin>
  45. <artifactId>maven-jar-plugin</artifactId>
  46. <version>3.0.2</version>
  47. </plugin>
  48. <plugin>
  49. <artifactId>maven-install-plugin</artifactId>
  50. <version>2.5.2</version>
  51. </plugin>
  52. <plugin>
  53. <artifactId>maven-deploy-plugin</artifactId>
  54. <version>2.8.2</version>
  55. </plugin>
  56. </plugins>
  57. </pluginManagement>
  58. </build>
  59. </project>