pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>assira.project</artifactId>
  7. <groupId>net.ranides</groupId>
  8. <version>2.7.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>assira.debugger</artifactId>
  12. <properties>
  13. <assira.junit.debug>false</assira.junit.debug>
  14. <maven.compiler.source>11</maven.compiler.source>
  15. <maven.compiler.target>11</maven.compiler.target>
  16. </properties>
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <groupId>org.apache.maven.plugins</groupId>
  21. <artifactId>maven-compiler-plugin</artifactId>
  22. <configuration>
  23. <source>${maven.compiler.source}</source>
  24. <target>${maven.compiler.target}</target>
  25. <parameters>true</parameters>
  26. <compilerArgs>
  27. <argument>-Xlint:unchecked</argument>
  28. <argument>-Xlint:removal</argument>
  29. <argument>--add-modules</argument>
  30. <argument>jdk.jdi</argument>
  31. </compilerArgs>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. <dependencies>
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>net.ranides</groupId>
  43. <artifactId>assira.core</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>net.ranides</groupId>
  47. <artifactId>assira.junit</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.slf4j</groupId>
  51. <artifactId>slf4j-api</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.projectlombok</groupId>
  55. <artifactId>lombok</artifactId>
  56. </dependency>
  57. <!-- <dependency>-->
  58. <!-- <groupId>com.sun</groupId>-->
  59. <!-- <artifactId>tools</artifactId>-->
  60. <!-- <version>1.8</version>-->
  61. <!-- <scope>system</scope>-->
  62. <!-- <systemPath>${java.home}/../lib/tools.jar</systemPath>-->
  63. <!-- </dependency>-->
  64. </dependencies>
  65. </project>