META-INF.maven.com.credibledoc.log-combiner.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of log-combiner Show documentation
Show all versions of log-combiner Show documentation
Simple command-line tool for merging log files with different format
of lines timestamps to a single file or readable source
with lines sorted by timestamps.
See the https://github.com/credibledoc/credible-doc/tree/master/log-combiner-parent/log-combiner page.
<?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> <artifactId>log-combiner-parent</artifactId> <groupId>com.credibledoc</groupId> <version>1.0.27</version> </parent> <artifactId>log-combiner</artifactId> <name>${project.groupId}:${project.artifactId}</name> <description> Simple command-line tool for merging log files with different format of lines timestamps to a single file or readable source with lines sorted by timestamps. See the https://github.com/credibledoc/credible-doc/tree/master/log-combiner-parent/log-combiner page. </description> <url>https://github.com/credibledoc/credible-doc/tree/master/log-combiner-parent/log-combiner</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Kyrylo Semenko</name> <email>[email protected]</email> <organization>credibledoc.com</organization> <organizationUrl>http://credibledoc.com/</organizationUrl> </developer> </developers> <dependencies> <dependency> <groupId>com.credibledoc</groupId> <artifactId>log-combiner-core</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> <configuration> <finalName>${project.artifactId}-${project.version}</finalName> <appendAssemblyId>false</appendAssemblyId> <archive> <manifest> <mainClass>com.credibledoc.combiner.CombinerCommandLineMain</mainClass> </manifest> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <source>7</source> <target>7</target> </configuration> </plugin> </plugins> </build> </project>