tinylog-coloredconsole
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.tobiasrm</groupId>
<artifactId>tinylog-coloredconsole</artifactId>
<version>1.3.1</version>
</dependency><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> <groupId>com.github.tobiasrm</groupId> <artifactId>tinylog-coloredconsole</artifactId> <version>1.3.1</version> <packaging>jar</packaging> <name>Tinylog ColoredConsole Writer Extension</name> <description>A Tinylog console writer extension for colored log-levels and arbitrary parts via custom tags.</description> <url>https://github.com/tobiasrm/tinylog-coloredconsole</url> <dependencies> <dependency> <groupId>org.tinylog</groupId> <artifactId>tinylog</artifactId> <version>1.3.1</version> </dependency> </dependencies> <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>Tobias R. Mayer</name> <email>tobiasrm@me.com</email> <url>https://tobiasrm.github.io</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/tobiasrm/tinylog-coloredconsole.git</connection> <developerConnection>scm:git:ssh://github.com/tobiasrm/tinylog-coloredconsole.git</developerConnection> <url>https://github.com/tobiasrm/tinylog-coloredconsole/tree/master</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <!-- ========== generate executable jar INCLUDING dependencies ========== --> <!-- <plugin> --> <!-- <groupId>org.springframework.boot</groupId> --> <!-- <artifactId>spring-boot-maven-plugin</artifactId> --> <!-- <executions> --> <!-- <execution> --> <!-- <goals> --> <!-- <goal>repackage</goal> --> <!-- </goals> --> <!-- <configuration> --> <!-- <classifier>executable</classifier> --> <!-- <mainClass>com.github.tobiasrm.Main --> <!-- </mainClass> --> <!-- </configuration> --> <!-- </execution> --> <!-- </executions> --> <!-- </plugin> --> <!-- ========== for maven centra deployment ========== --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>