pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>assira.project</artifactId>
  8. <groupId>net.ranides</groupId>
  9. <version>2.7.0</version>
  10. </parent>
  11. <artifactId>assira.debugger</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.groupId}:${project.artifactId}</name>
  14. <description>assira: general purpose java library: jdi module</description>
  15. <properties>
  16. <assira.junit.debug>false</assira.junit.debug>
  17. <maven.compiler.source>11</maven.compiler.source>
  18. <maven.compiler.target>11</maven.compiler.target>
  19. </properties>
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-compiler-plugin</artifactId>
  25. <configuration>
  26. <source>${maven.compiler.source}</source>
  27. <target>${maven.compiler.target}</target>
  28. <parameters>true</parameters>
  29. <compilerArgs>
  30. <argument>-Xlint:unchecked</argument>
  31. <argument>-Xlint:removal</argument>
  32. <argument>--add-modules</argument>
  33. <argument>jdk.jdi</argument>
  34. </compilerArgs>
  35. </configuration>
  36. </plugin>
  37. </plugins>
  38. </build>
  39. <dependencies>
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>net.ranides</groupId>
  46. <artifactId>assira.core</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.ranides</groupId>
  50. <artifactId>assira.junit</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.slf4j</groupId>
  54. <artifactId>slf4j-api</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. </dependency>
  60. <!-- <dependency>-->
  61. <!-- <groupId>com.sun</groupId>-->
  62. <!-- <artifactId>tools</artifactId>-->
  63. <!-- <version>1.8</version>-->
  64. <!-- <scope>system</scope>-->
  65. <!-- <systemPath>${java.home}/../lib/tools.jar</systemPath>-->
  66. <!-- </dependency>-->
  67. </dependencies>
  68. </project>