asm-jdk-bridge-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>codes.rafael.asmjdkbridge</groupId> <artifactId>asm-jdk-bridge-test</artifactId> <version>0.0.10</version> </dependency>
<?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> <groupId>codes.rafael.asmjdkbridge</groupId> <artifactId>asm-jdk-bridge-parent</artifactId> <version>0.0.10</version> </parent> <artifactId>asm-jdk-bridge-test</artifactId> <name>ASM to OpenJDK Class API bridge (test)</name> <description>Contains tests where the API is loaded as a module to assure that the modularization works.</description> <properties> <maven.compiler.release>24</maven.compiler.release> </properties> <dependencies> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>9.7.1</version> </dependency> <dependency> <groupId>codes.rafael.asmjdkbridge</groupId> <artifactId>asm-jdk-bridge</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-util</artifactId> <version>9.7</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <configuration> <skipIfEmpty>true</skipIfEmpty> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>3.1.3</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.3</version> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>