| 组织ID: |
de.benediktmeurer.gwt-slf4j |
| 项目ID: |
gwt-slf4j |
| 版本: |
0.0.2 |
| 最后修改时间: |
2018-08-02 14:38:11 |
| 包类型: |
jar |
| 标题: |
gwt-slf4j |
| 描述: |
SLF4J for GWT |
| 相关URL: |
http://bmeurer.github.com/gwt-slf4j |
| 大小: |
26.79KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>de.benediktmeurer.gwt-slf4j</groupId>
<artifactId>gwt-slf4j</artifactId>
<version>0.0.2</version>
</dependency>
|
| Gradle引入代码: |
de.benediktmeurer.gwt-slf4j:gwt-slf4j:0.0.2
|
| 下载Jar包: |
|
| POM文件内容: |
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>de.benediktmeurer.gwt-slf4j</groupId>
<artifactId>gwt-slf4j</artifactId>
<version>0.0.2</version>
<packaging>jar</packaging>
<name>gwt-slf4j</name>
<description>SLF4J for GWT</description>
<inceptionYear>2012</inceptionYear>
<url>http://bmeurer.github.com/gwt-slf4j</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>bmeurer</id>
<name>Benedikt Meurer</name>
<email>benedikt.meurer@googlemail.com</email>
<roles>
<role>owner</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
<url>http://benediktmeurer.de</url>
</developer>
</developers>
<scm>
<url>git@github.com:bmeurer/gwt-slf4j.git</url>
<connection>scm:git:https://github.com/bmeurer/gwt-slf4j.git</connection>
<developerConnection>scm:git:ssh://git@github.com/bmeurer/gwt-slf4j.git</developerConnection>
</scm>
<properties>
<gwt.version>2.4.0</gwt.version>
<slf4j.version>1.6.6</slf4j.version>
<github.global.server>github</github.global.server>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<versionRange>[2.4.0,)</versionRange>
<goals>
<goal>resources</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.6</version>
<configuration>
<message>Creating site for ${project.version}</message>
<force>true</force>
<noJekyll>true</noJekyll>
</configuration>
<executions>
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.4</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<debug>true</debug>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<addMavenDescriptor>true</addMavenDescriptor>
<manifest>
<addClasspath>true</addClasspath>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestEntries>
<Build-Number>${buildNumber}</Build-Number>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<doCheck>false</doCheck>
<doUpdate>false</doUpdate>
<getRevisionOnlyOnce>true</getRevisionOnlyOnce>
<shortRevisionLength>7</shortRevisionLength>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt.version}</version>
<executions>
<execution>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<issueManagement>
<system>GitHub Issue Tracker</system>
<url>http://github.com/bmeurer/gwt-slf4j/issues</url>
</issueManagement>
</project>
<!-- vim:set ts=4 sw=4 et: -->
|
| Jar包内容: |
META-INF/MANIFEST.MF
de/benediktmeurer/gwt/slf4j/api/API.gwt.xml
de/benediktmeurer/gwt/slf4j/api/emul/org/slf4j/helpers/FormattingTuple.java
de/benediktmeurer/gwt/slf4j/api/emul/org/slf4j/helpers/MarkerIgnoringBase.java
de/benediktmeurer/gwt/slf4j/api/emul/org/slf4j/helpers/MessageFormatter.java
de/benediktmeurer/gwt/slf4j/api/emul/org/slf4j/ILoggerFactory.java
de/benediktmeurer/gwt/slf4j/api/emul/org/slf4j/Logger.java
de/benediktmeurer/gwt/slf4j/api/emul/org/slf4j/LoggerFactory.java
de/benediktmeurer/gwt/slf4j/api/emul/org/slf4j/Marker.java
de.benediktmeurer.gwt.slf4j.jul.client.JULLogger.class
de/benediktmeurer/gwt/slf4j/jul/client/JULLogger.java
de.benediktmeurer.gwt.slf4j.jul.client.JULLoggerFactory.class
de/benediktmeurer/gwt/slf4j/jul/client/JULLoggerFactory.java
de/benediktmeurer/gwt/slf4j/jul/JUL.gwt.xml
META-INF/maven/de.benediktmeurer.gwt-slf4j/gwt-slf4j/pom.xml
META-INF/maven/de.benediktmeurer.gwt-slf4j/gwt-slf4j/pom.properties
|
| 依赖Jar: |
gwt-user-${gwt.version}.jar
/com.google.gwt/gwt-user/${gwt.version}
查看gwt-user所有版本文件
junit-4.10.jar
/junit/junit/4.10
查看junit所有版本文件
slf4j-api-${slf4j.version}.jar
/org.slf4j/slf4j-api/${slf4j.version}
查看slf4j-api所有版本文件
|