<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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.elastisys.scale</groupId> <artifactId>commons.root</artifactId> <version>2.2.10</version> </parent> <artifactId>commons.logreplayer</artifactId> <name>elastisys:scale :: commons :: logreplayer</name> <description>simple replayer of apache log files</description> <packaging>jar</packaging> <dependencies> <!-- Asynchronous HTTP client --> <dependency> <groupId>com.ning</groupId> <artifactId>async-http-client</artifactId> <version>1.9.31</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty</artifactId> <version>3.10.4.Final</version> </dependency> <dependency> <groupId>com.elastisys.scale</groupId> <artifactId>commons.util</artifactId> <version>${project.version}</version> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <!-- command-line parsing --> <dependency> <groupId>args4j</groupId> <artifactId>args4j</artifactId> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- Build a standalone executable jar file that embeds all classpath dependencies. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.2</version> <configuration> <transformers> <!-- Make jar file executable (add Main-Class header to jar manifest) --> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>com.elastisys.scale.commons.logreplayer.LogReplayerMain</mainClass> </transformer> </transformers> <!-- Make shaded jar file the main artifact output by the build. --> <shadedArtifactAttached>false</shadedArtifactAttached> <createDependencyReducedPom>false</createDependencyReducedPom> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>com.elastisys.scale</groupId> <artifactId>commons.logreplayer</artifactId> <version>2.2.10</version> </dependency>
com.elastisys.scale:commons.logreplayer:2.2.10