pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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>info.hkzlab.dupal.analyzer</groupId>
  6. <artifactId>dupal-analyzer</artifactId>
  7. <version>0.0.1</version>
  8. <name>dupal-analyzer</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>14</maven.compiler.source>
  14. <maven.compiler.target>1.8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>io.github.java-native</groupId>
  19. <artifactId>jssc</artifactId>
  20. <version>2.9.2</version>
  21. <scope>system</scope>
  22. <systemPath>${project.basedir}/lib/jssc-2.9.2.jar</systemPath>
  23. </dependency>
  24. <dependency>
  25. <groupId>io.github.java-native</groupId>
  26. <artifactId>jssc-javadoc</artifactId>
  27. <version>2.9.2</version>
  28. <scope>system</scope>
  29. <systemPath>${project.basedir}/lib/jssc-2.9.2-javadoc.jar</systemPath>
  30. </dependency>
  31. <dependency>
  32. <groupId>io.github.java-native</groupId>
  33. <artifactId>jssc-sources</artifactId>
  34. <version>2.9.2</version>
  35. <scope>system</scope>
  36. <systemPath>${project.basedir}/lib/jssc-2.9.2-sources.jar</systemPath>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.slf4j</groupId>
  40. <artifactId>slf4j-api</artifactId>
  41. <version>1.7.30</version>
  42. </dependency>
  43. <!--dependency>
  44. <groupId>org.slf4j</groupId>
  45. <artifactId>slf4j-jdk14</artifactId>
  46. <version>1.7.30</version>
  47. </dependency-->
  48. <dependency>
  49. <groupId>org.slf4j</groupId>
  50. <artifactId>slf4j-simple</artifactId>
  51. <version>1.7.30</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.scijava</groupId>
  55. <artifactId>native-lib-loader</artifactId>
  56. <version>2.3.4</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>junit</groupId>
  60. <artifactId>junit</artifactId>
  61. <version>4.11</version>
  62. <scope>test</scope>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  67. <plugins>
  68. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  69. <plugin>
  70. <artifactId>maven-clean-plugin</artifactId>
  71. <version>3.1.0</version>
  72. </plugin>
  73. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  74. <plugin>
  75. <artifactId>maven-resources-plugin</artifactId>
  76. <version>3.0.2</version>
  77. </plugin>
  78. <plugin>
  79. <artifactId>maven-compiler-plugin</artifactId>
  80. <version>3.8.0</version>
  81. </plugin>
  82. <plugin>
  83. <artifactId>maven-surefire-plugin</artifactId>
  84. <version>2.22.1</version>
  85. </plugin>
  86. <plugin>
  87. <artifactId>maven-jar-plugin</artifactId>
  88. <version>3.0.2</version>
  89. </plugin>
  90. <plugin>
  91. <artifactId>maven-install-plugin</artifactId>
  92. <version>2.5.2</version>
  93. </plugin>
  94. <plugin>
  95. <artifactId>maven-deploy-plugin</artifactId>
  96. <version>2.8.2</version>
  97. </plugin>
  98. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  99. <plugin>
  100. <artifactId>maven-site-plugin</artifactId>
  101. <version>3.7.1</version>
  102. </plugin>
  103. <plugin>
  104. <artifactId>maven-project-info-reports-plugin</artifactId>
  105. <version>3.0.0</version>
  106. </plugin>
  107. </plugins>
  108. </pluginManagement>
  109. </build>
  110. </project>