组织ID: |
org.slf4j |
项目ID: |
integration |
版本: |
1.7.3 |
最后修改时间: |
2019-10-24 02:39:27 |
包类型: |
jar |
标题: |
SLF4J Integration tests |
描述: |
SLF4J integration tests |
大小: |
2.04KB |
|
Maven引入代码: |
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>integration</artifactId>
<version>1.7.3</version>
</dependency>
|
Gradle引入代码: |
org.slf4j:integration:1.7.3
|
下载Jar包: |
|
POM文件内容: |
<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">
<parent>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-parent</artifactId>
<version>1.7.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.slf4j</groupId>
<artifactId>integration</artifactId>
<packaging>jar</packaging>
<name>SLF4J Integration tests</name>
<url>http://www.slf4j.org</url>
<description>SLF4J integration tests</description>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- declaration to cimcumvent http://jira.codehaus.org/browse/MANTRUN-95 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
<!-- declaration to cimcumvent http://jira.codehaus.org/browse/MANTRUN-95 -->
<dependency>
<groupId>ant</groupId>
<artifactId>ant-junit</artifactId>
<version>1.6.5</version>
</dependency>
<!-- some test run Felix in hosted mode -->
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.main</artifactId>
<version>2.0.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.2</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>ant</groupId>
<artifactId>ant-junit</artifactId>
<version>1.6.5</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>ant-test</id>
<phase>package</phase>
<configuration>
<tasks>
<property name="currentVersion" value="${project.version}" />
<property name="compile_classpath" refid="maven.compile.classpath"/>
<property name="runtime_classpath" refid="maven.runtime.classpath"/>
<property name="test_classpath" refid="maven.test.classpath"/>
<property name="plugin_classpath" refid="maven.plugin.classpath"/>
<ant antfile="${basedir}/build.xml"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>ant-osgi-test</id>
<phase>package</phase>
<configuration>
<tasks>
<property name="currentVersion" value="${project.version}" />
<property name="test_classpath" refid="maven.test.classpath"/>
<property name="basedir" value="${basedir}"/>
<ant antfile="${basedir}/osgi-build.xml"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>once</forkMode>
<reportFormat>plain</reportFormat>
<trimStackTrace>false</trimStackTrace>
<excludes>
<exclude>**/*Test.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/maven/org.slf4j/integration/pom.xml
META-INF/maven/org.slf4j/integration/pom.properties
|
依赖Jar: |
junit-3.8.1.jar
/junit/junit/3.8.1
查看junit所有版本文件
ant-junit-1.6.5.jar
/ant/ant-junit/1.6.5
查看ant-junit所有版本文件
org.apache.felix.main-2.0.2.jar
/org.apache.felix/org.apache.felix.main/2.0.2
查看org.apache.felix.main所有版本文件
|