组织ID: |
org.apache.sling |
项目ID: |
org.apache.sling.testing.osgi-mock |
版本: |
1.9.4 |
最后修改时间: |
2019-11-01 09:53:47 |
包类型: |
jar |
标题: |
Apache Sling Testing OSGi Mock |
描述: |
Mock implementation of selected OSGi APIs. |
大小: |
82.92KB |
|
Maven引入代码: |
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.testing.osgi-mock</artifactId>
<version>1.9.4</version>
</dependency>
|
Gradle引入代码: |
org.apache.sling:org.apache.sling.testing.osgi-mock:1.9.4
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<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.apache.sling</groupId>
<artifactId>sling</artifactId>
<version>26</version>
<relativePath />
</parent>
<artifactId>org.apache.sling.testing.osgi-mock</artifactId>
<version>1.9.4</version>
<packaging>bundle</packaging>
<name>Apache Sling Testing OSGi Mock</name>
<description>Mock implementation of selected OSGi APIs.</description>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.testing.osgi-mock-1.9.4</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.testing.osgi-mock-1.9.4</developerConnection>
<url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.testing.osgi-mock-1.9.4</url>
</scm>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.commons.osgi</artifactId>
<version>2.2.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
<version>5.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>15.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<!-- Do not use version 0.9.10, it created threading issues when running junit tests in parallel (see SLING-5002) -->
<version>0.9.9</version>
<scope>compile</scope>
<!-- exclude all optional dependencies -->
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</exclusion>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.testing.logging-mock</artifactId>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludes>
<exclude>src/test/resources/META-INF/test.txt</exclude>
<exclude>src/test/resources/bundleData/nested/first.txt</exclude>
<exclude>src/test/resources/bundleData/nested/second.txt</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>osgi-6</id>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/NOTICE
META-INF/maven/org.apache.sling/org.apache.sling.testing.osgi-mock/pom.properties
META-INF/maven/org.apache.sling/org.apache.sling.testing.osgi-mock/pom.xml
OSGI-INF/org.apache.sling.testing.mock.osgi.MockEventAdmin.xml
org.apache.sling.testing.mock.osgi.ComponentContextBuilder.class
org.apache.sling.testing.mock.osgi.ManifestScanner.class
org.apache.sling.testing.mock.osgi.MapMergeUtil.class
org.apache.sling.testing.mock.osgi.MapUtil.class
org.apache.sling.testing.mock.osgi.MatchAllFilter.class
org.apache.sling.testing.mock.osgi.MockBundle.class
org.apache.sling.testing.mock.osgi.MockBundleContext$1.class
org.apache.sling.testing.mock.osgi.MockBundleContext.class
org.apache.sling.testing.mock.osgi.MockComponentContext.class
org.apache.sling.testing.mock.osgi.MockConfiguration.class
org.apache.sling.testing.mock.osgi.MockConfigurationAdmin.class
org.apache.sling.testing.mock.osgi.MockEventAdmin$1.class
org.apache.sling.testing.mock.osgi.MockEventAdmin$EventHandlerItem.class
org.apache.sling.testing.mock.osgi.MockEventAdmin.class
org.apache.sling.testing.mock.osgi.MockLogService.class
org.apache.sling.testing.mock.osgi.MockOsgi.class
org.apache.sling.testing.mock.osgi.MockServiceReference.class
org.apache.sling.testing.mock.osgi.MockServiceRegistration.class
org.apache.sling.testing.mock.osgi.NoScrMetadataException.class
org.apache.sling.testing.mock.osgi.OsgiMetadataUtil$1.class
org.apache.sling.testing.mock.osgi.OsgiMetadataUtil$2.class
org.apache.sling.testing.mock.osgi.OsgiMetadataUtil$FieldCollectionType.class
org.apache.sling.testing.mock.osgi.OsgiMetadataUtil$OsgiMetadata.class
org.apache.sling.testing.mock.osgi.OsgiMetadataUtil$Reference.class
org.apache.sling.testing.mock.osgi.OsgiMetadataUtil$ReferenceCardinality.class
org.apache.sling.testing.mock.osgi.OsgiMetadataUtil$ReferencePolicy.class
org.apache.sling.testing.mock.osgi.OsgiMetadataUtil$ReferencePolicyOption.class
org.apache.sling.testing.mock.osgi.OsgiMetadataUtil.class
org.apache.sling.testing.mock.osgi.OsgiServiceUtil$ReferenceInfo.class
org.apache.sling.testing.mock.osgi.OsgiServiceUtil$ServiceInfo.class
org.apache.sling.testing.mock.osgi.OsgiServiceUtil.class
org.apache.sling.testing.mock.osgi.ReferenceViolationException.class
org.apache.sling.testing.mock.osgi.context.AbstractContextPlugin.class
org.apache.sling.testing.mock.osgi.context.ContextCallback.class
org.apache.sling.testing.mock.osgi.context.ContextPlugin.class
org.apache.sling.testing.mock.osgi.context.ContextPlugins$1.class
org.apache.sling.testing.mock.osgi.context.ContextPlugins$2.class
org.apache.sling.testing.mock.osgi.context.ContextPlugins$3.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
org.apache.sling.commons.osgi-2.2.0.jar
/org.apache.sling/org.apache.sling.commons.osgi/2.2.0
查看org.apache.sling.commons.osgi所有版本文件
org.apache.felix.framework-5.0.0.jar
/org.apache.felix/org.apache.felix.framework/5.0.0
查看org.apache.felix.framework所有版本文件
guava-15.0.jar
/com.google.guava/guava/15.0
查看guava所有版本文件
commons-lang3-3.0.1.jar
/org.apache.commons/commons-lang3/3.0.1
查看commons-lang3所有版本文件
commons-io-2.4.jar
/commons-io/commons-io/2.4
查看commons-io所有版本文件
reflections-0.9.9.jar
/org.reflections/reflections/0.9.9
查看reflections所有版本文件
mockito-all-1.9.5.jar
/org.mockito/mockito-all/1.9.5
查看mockito-all所有版本文件
org.apache.sling.testing.logging-mock-1.0.0.jar
/org.apache.sling/org.apache.sling.testing.logging-mock/1.0.0
查看org.apache.sling.testing.logging-mock所有版本文件
|