<?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/maven-v4_0_0.xsd"> <parent> <artifactId>wavefront</artifactId> <groupId>com.wavefront</groupId> <version>3.21</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>java-lib</artifactId> <name>Wavefront Java Libraries</name> <build> <plugins> <plugin> <groupId>org.apache.avro</groupId> <artifactId>avro-maven-plugin</artifactId> <executions> <execution> <id>schemas</id> <phase>generate-sources</phase> <goals> <goal>idl-protocol</goal> </goals> </execution> </executions> <configuration> <stringType>String</stringType> <templateDirectory>${project.basedir}/src/main/resources/wavefront/templates/</templateDirectory> <sourceDirectory>${project.basedir}/src/main/avro</sourceDirectory> </configuration> </plugin> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr4-maven-plugin</artifactId> <version>4.5</version> <executions> <execution> <goals> <goal>antlr4</goal> </goals> </execution> </executions> <configuration> <outputDirectory>target/generated-sources/antlr4/queryserver/parser</outputDirectory> <sourceDirectory>${project.basedir}/src/main/antlr4</sourceDirectory> <arguments> <argument>-visitor</argument> </arguments> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>
<dependency> <groupId>com.wavefront</groupId> <artifactId>java-lib</artifactId> <version>3.21</version> </dependency>
com.wavefront:java-lib:3.21