pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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>org.example</groupId>
  6. <artifactId>processingLines</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>processingLines</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>org.processing</groupId>
  19. <artifactId>core</artifactId>
  20. <version>3.3.7</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.jogamp.gluegen</groupId>
  24. <artifactId>gluegen-rt-main</artifactId>
  25. <version>2.3.2</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.jogamp.jogl</groupId>
  29. <artifactId>jogl-all-main</artifactId>
  30. <version>2.3.2</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>net.compartmental.code</groupId>
  34. <artifactId>minim</artifactId>
  35. <version>2.2.2</version>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  40. <plugins>
  41. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  42. <plugin>
  43. <artifactId>maven-clean-plugin</artifactId>
  44. <version>3.1.0</version>
  45. </plugin>
  46. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  47. <plugin>
  48. <artifactId>maven-resources-plugin</artifactId>
  49. <version>3.0.2</version>
  50. </plugin>
  51. <plugin>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <version>3.8.0</version>
  54. </plugin>
  55. <plugin>
  56. <artifactId>maven-surefire-plugin</artifactId>
  57. <version>2.22.1</version>
  58. </plugin>
  59. <plugin>
  60. <artifactId>maven-jar-plugin</artifactId>
  61. <version>3.0.2</version>
  62. </plugin>
  63. <plugin>
  64. <artifactId>maven-install-plugin</artifactId>
  65. <version>2.5.2</version>
  66. </plugin>
  67. <plugin>
  68. <artifactId>maven-deploy-plugin</artifactId>
  69. <version>2.8.2</version>
  70. </plugin>
  71. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  72. <plugin>
  73. <artifactId>maven-site-plugin</artifactId>
  74. <version>3.7.1</version>
  75. </plugin>
  76. <plugin>
  77. <artifactId>maven-project-info-reports-plugin</artifactId>
  78. <version>3.0.0</version>
  79. </plugin>
  80. </plugins>
  81. </pluginManagement>
  82. </build>
  83. </project>