scijava-log-slf4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.scijava</groupId>
<artifactId>scijava-log-slf4j</artifactId>
<version>1.0.3</version>
</dependency><?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>org.scijava</groupId> <artifactId>pom-scijava</artifactId> <version>9.0.0</version> <relativePath /> </parent> <artifactId>scijava-log-slf4j</artifactId> <version>1.0.3</version> <name>SciJava SLF4J Logging</name> <description>This adapter package enables the use of SLF4J-based logging within SciJava Common's logging framework. It is kept separate from the SciJava Common core classes to avoid proliferating SLF4J dependencies to downstream code that does not need SLF4J-based logging.</description> <inceptionYear>2013</inceptionYear> <licenses> <license> <name>Simplified BSD License</name> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>ctrueden</id> <name>Curtis Rueden</name> <email>ctrueden@wisc.edu</email> <url>http://loci.wisc.edu/people/curtis-rueden</url> <organization>UW-Madison LOCI</organization> <organizationUrl>http://loci.wisc.edu/</organizationUrl> <roles> <role>founder</role> <role>lead</role> <role>developer</role> <role>debugger</role> <role>reviewer</role> <role>support</role> <role>maintainer</role> </roles> <timezone>-6</timezone> </developer> <developer> <id>hinerm</id> <name>Mark Hiner</name> <email>hiner@wisc.edu</email> <url>http://loci.wisc.edu/people/mark-hiner</url> <organization>UW-Madison LOCI</organization> <organizationUrl>http://loci.wisc.edu/</organizationUrl> <roles> <role>lead</role> <role>developer</role> <role>debugger</role> <role>reviewer</role> <role>support</role> <role>maintainer</role> </roles> <timezone>-6</timezone> </developer> </developers> <contributors> <contributor> <name>Johannes Schindelin</name> <url>http://imagej.net/User:Schindelin</url> <properties><id>dscho</id></properties> </contributor> </contributors> <scm> <connection>scm:git:git://github.com/scijava/scijava-common</connection> <developerConnection>scm:git:git@github.com:scijava/scijava-common</developerConnection> <tag>scijava-log-slf4j-1.0.3</tag> <url>https://github.com/scijava/scijava-common</url> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/scijava/scijava-log-slf4j/issues</url> </issueManagement> <ciManagement> <system>Jenkins</system> <url>http://jenkins.imagej.net/job/SciJava-Log-SLF4J/</url> </ciManagement> <dependencies> <!-- SciJava dependencies --> <dependency> <groupId>org.scijava</groupId> <artifactId>scijava-common</artifactId> </dependency> <!-- Third-party dependencies --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.2</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <packageName>org.scijava.log.slf4j</packageName> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <licenseName>bsd_2</licenseName> <organizationName>Board of Regents of the University of Wisconsin-Madison.</organizationName> <projectName>SciJava Common shared library for SciJava software.</projectName> </configuration> </plugin> </plugins> </build> </project>