bytecode
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.airlift</groupId> <artifactId>bytecode</artifactId> <version>1.6</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>io.airlift</groupId> <artifactId>airbase</artifactId> <version>156</version> </parent> <artifactId>bytecode</artifactId> <version>1.6</version> <description>High-level library for generating JVM bytecode</description> <url>https://github.com/airlift/bytecode</url> <inceptionYear>2012</inceptionYear> <scm> <connection>scm:git:git://github.com/airlift/bytecode.git</connection> <developerConnection>scm:git:git@github.com:airlift/bytecode.git</developerConnection> <tag>1.6</tag> <url>https://github.com/airlift/bytecode</url> </scm> <properties> <air.check.skip-spotbugs>true</air.check.skip-spotbugs> <air.check.skip-pmd>true</air.check.skip-pmd> <air.check.skip-jacoco>true</air.check.skip-jacoco> <project.build.targetJdk>17</project.build.targetJdk> <air.modernizer.java-version>8</air.modernizer.java-version> <dep.asm.version>9.4</dep.asm.version> </properties> <dependencies> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>${dep.asm.version}</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-tree</artifactId> <version>${dep.asm.version}</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-util</artifactId> <version>${dep.asm.version}</version> </dependency> <!-- for testing --> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <excludes combine.children="append"> <exclude>src/main/java/io/airlift/bytecode/ClassInfo.java</exclude> <exclude>src/main/java/io/airlift/bytecode/ClassInfoLoader.java</exclude> </excludes> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>