Code for a blogpost
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.

92 lines
3.1 KiB

  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</groupId>
  6. <artifactId>parallel-java-performance-overview</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>parallel-java-performance-overview</name>
  9. <url>https://jrtechs.net/java/parallel-java-performance-overview</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>1.8</maven.compiler.source>
  13. <maven.compiler.target>1.8</maven.compiler.target>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>junit</groupId>
  18. <artifactId>junit</artifactId>
  19. <version>4.11</version>
  20. <scope>test</scope>
  21. </dependency>
  22. </dependencies>
  23. <build>
  24. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  25. <plugins>
  26. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  27. <plugin>
  28. <artifactId>maven-clean-plugin</artifactId>
  29. <version>3.1.0</version>
  30. </plugin>
  31. <!-- default lifecycle, jar packaging: see https://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.8.0</version>
  39. </plugin>
  40. <plugin>
  41. <artifactId>maven-surefire-plugin</artifactId>
  42. <version>2.22.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. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  57. <plugin>
  58. <artifactId>maven-site-plugin</artifactId>
  59. <version>3.7.1</version>
  60. </plugin>
  61. <plugin>
  62. <artifactId>maven-project-info-reports-plugin</artifactId>
  63. <version>3.0.0</version>
  64. </plugin>
  65. </plugins>
  66. </pluginManagement>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-compiler-plugin</artifactId>
  71. <configuration>
  72. <source>7</source>
  73. <target>7</target>
  74. </configuration>
  75. </plugin>
  76. <plugin>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <artifactId>maven-compiler-plugin</artifactId>
  79. <configuration>
  80. <source>8</source>
  81. <target>8</target>
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. </build>
  86. </project>