<?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>com.facebook.presto</groupId> <artifactId>presto-root</artifactId> <version>0.139</version> </parent> <artifactId>presto-bytecode</artifactId> <name>presto-bytecode</name> <properties> <air.main.basedir>${project.parent.basedir}</air.main.basedir> </properties> <dependencies> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-all</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>annotations</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>io.airlift</groupId> <artifactId>log</artifactId> </dependency> <!-- for testing --> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <excludes combine.children="append"> <exclude>src/main/java/com/facebook/presto/bytecode/ClassInfo.java</exclude> <exclude>src/main/java/com/facebook/presto/bytecode/ClassInfoLoader.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>com.facebook.presto</groupId> <artifactId>presto-bytecode</artifactId> <version>0.139</version> <classifier>tests</classifier> </dependency>
com.facebook.presto:presto-bytecode:0.139:tests