| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>assira.project</artifactId>
- <groupId>net.ranides</groupId>
- <version>2.7.0</version>
- </parent>
- <artifactId>assira.debugger</artifactId>
- <packaging>jar</packaging>
- <name>${project.groupId}:${project.artifactId}</name>
- <description>assira: general purpose java library: jdi module</description>
- <properties>
- <assira.junit.debug>false</assira.junit.debug>
- <maven.compiler.source>11</maven.compiler.source>
- <maven.compiler.target>11</maven.compiler.target>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>${maven.compiler.source}</source>
- <target>${maven.compiler.target}</target>
- <parameters>true</parameters>
- <compilerArgs>
- <argument>-Xlint:unchecked</argument>
- <argument>-Xlint:removal</argument>
- <argument>--add-modules</argument>
- <argument>jdk.jdi</argument>
- </compilerArgs>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </dependency>
- <dependency>
- <groupId>net.ranides</groupId>
- <artifactId>assira.core</artifactId>
- </dependency>
- <dependency>
- <groupId>net.ranides</groupId>
- <artifactId>assira.junit</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sun</groupId>
- <artifactId>tools</artifactId>
- <version>1.8</version>
- <scope>system</scope>
- <systemPath>${java.home}/../lib/tools.jar</systemPath>
- </dependency>
- </dependencies>
- </project>
|