组织ID: |
org.apache.sling |
项目ID: |
org.apache.sling.testing.osgi-mock |
版本: |
2.2.0 |
最后修改时间: |
2019-11-02 05:38:56 |
包类型: |
jar |
标题: |
Apache Sling Testing OSGi Mock |
描述: |
Mock implementation of selected OSGi APIs. |
大小: |
460.29KB |
|
Maven引入代码: |
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.testing.osgi-mock</artifactId>
<version>2.2.0</version>
</dependency>
|
Gradle引入代码: |
org.apache.sling:org.apache.sling.testing.osgi-mock:2.2.0
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="ISO-8859-1"?>
<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>
<artifactId>sling</artifactId>
<groupId>org.apache.sling</groupId>
<version>29</version>
<relativePath>pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>org.apache.sling.testing.osgi-mock</artifactId>
<packaging>bundle</packaging>
<name>Apache Sling Testing OSGi Mock</name>
<version>2.2.0</version>
<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-2.2.0</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.testing.osgi-mock-2.2.0</developerConnection>
<url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.testing.osgi-mock-2.2.0</url>
</scm>
<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>
<exclude>dependency-reduced-pom.xml</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createSourcesJar>true</createSourcesJar>
<shadeSourcesContent>true</shadeSourcesContent>
<artifactSet>
<includes>
<include>org.apache.sling:org.apache.sling.commons.osgi</include>
<include>org.apache.felix:org.apache.felix.framework</include>
<include>org.apache.felix:org.apache.felix.scr</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.apache.sling.commons.osgi</pattern>
<shadedPattern>osgimock.org.apache.sling.commons.osgi</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.felix.framework</pattern>
<shadedPattern>osgimock.org.apache.felix.framework</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.felix.scr.impl</pattern>
<shadedPattern>osgimock.org.apache.felix.scr.impl</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
<artifact>org.apache.sling:org.apache.sling.commons.osgi</artifact>
<includes>
<include>org/apache/sling/commons/osgi/ServiceUtil*</include>
<include>org/apache/sling/commons/osgi/Order*</include>
</includes>
</filter>
<filter>
<artifact>org.apache.felix:org.apache.felix.framework</artifact>
<includes>
<include>org/apache/felix/framework/**</include>
</includes>
</filter>
<filter>
<artifact>org.apache.felix:org.apache.felix.scr</artifact>
<includes>
<include>org/apache/felix/scr/impl/inject/Annotations*</include>
<include>org/apache/felix/scr/impl/helper/Coercions*</include>
</includes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>6.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.cmpn</artifactId>
<version>6.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>
<version>1.7.6</version>
<scope>compile</scope>
</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>
<version>4.12</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.testing.logging-mock</artifactId>
<version>2.0.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>slf4j-simple</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.annotation</artifactId>
<version>6.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.service.component.annotations</artifactId>
<version>1.3.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.service.metatype.annotations</artifactId>
<version>1.3.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<version>1.11.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>biz.aQute.bnd</groupId>
<artifactId>biz.aQute.bndlib</artifactId>
<version>3.2.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</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$1.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
org.apache.sling.testing.mock.osgi.context.ContextPlugins$4.class
org.apache.sling.testing.mock.osgi.context.ContextPlugins.class
org.apache.sling.testing.mock.osgi.context.OsgiContextImpl.class
org.apache.sling.testing.mock.osgi.context.package-info.class
org.apache.sling.testing.mock.osgi.junit.OsgiContext$1.class
org.apache.sling.testing.mock.osgi.junit.OsgiContext.class
org.apache.sling.testing.mock.osgi.junit.OsgiContextBuilder.class
org.apache.sling.testing.mock.osgi.junit.OsgiContextCallback.class
org.apache.sling.testing.mock.osgi.junit.package-info.class
org.apache.sling.testing.mock.osgi.package-info.class
osgimock.org.apache.sling.commons.osgi.Order.class
osgimock.org.apache.sling.commons.osgi.ServiceUtil$1.class
osgimock.org.apache.sling.commons.osgi.ServiceUtil$ComparableImplementation.class
osgimock.org.apache.sling.commons.osgi.ServiceUtil.class
osgimock.org.apache.felix.framework.BundleContextImpl$ServiceObjectsImpl.class
osgimock.org.apache.felix.framework.BundleContextImpl.class
osgimock.org.apache.felix.framework.BundleImpl.class
osgimock.org.apache.felix.framework.BundleProtectionDomain$1.class
osgimock.org.apache.felix.framework.BundleProtectionDomain$BundleInputStream.class
osgimock.org.apache.felix.framework.BundleProtectionDomain$OutputStreamBuffer.class
osgimock.org.apache.felix.framework.BundleProtectionDomain$RevisionAsJarURL$1.class
osgimock.org.apache.felix.framework.BundleProtectionDomain$RevisionAsJarURL.class
osgimock.org.apache.felix.framework.BundleProtectionDomain.class
osgimock.org.apache.felix.framework.BundleRevisionDependencies.class
osgimock.org.apache.felix.framework.BundleRevisionImpl.class
osgimock.org.apache.felix.framework.BundleWiringImpl$1.class
osgimock.org.apache.felix.framework.BundleWiringImpl$BundleClassLoader.class
osgimock.org.apache.felix.framework.BundleWiringImpl$BundleClassLoaderJava5.class
osgimock.org.apache.felix.framework.BundleWiringImpl$ResourceSource.class
osgimock.org.apache.felix.framework.BundleWiringImpl$ToLocalUrlEnumeration.class
osgimock.org.apache.felix.framework.BundleWiringImpl.class
osgimock.org.apache.felix.framework.DTOFactory.class
osgimock.org.apache.felix.framework.EntryFilterEnumeration.class
osgimock.org.apache.felix.framework.ExportedPackageImpl.class
osgimock.org.apache.felix.framework.ExtensionManager$1.class
osgimock.org.apache.felix.framework.ExtensionManager$2.class
osgimock.org.apache.felix.framework.ExtensionManager$ExtensionManagerRevision.class
osgimock.org.apache.felix.framework.ExtensionManager$ExtensionManagerWiring.class
osgimock.org.apache.felix.framework.ExtensionManager$ExtensionTuple.class
osgimock.org.apache.felix.framework.ExtensionManager.class
osgimock.org.apache.felix.framework.FakeURLStreamHandler.class
osgimock.org.apache.felix.framework.Felix$1.class
osgimock.org.apache.felix.framework.Felix$2.class
osgimock.org.apache.felix.framework.Felix$3.class
osgimock.org.apache.felix.framework.Felix$RefreshHelper.class
osgimock.org.apache.felix.framework.Felix$StartLevelTuple.class
osgimock.org.apache.felix.framework.Felix$SystemBundleActivator.class
osgimock.org.apache.felix.framework.Felix.class
osgimock/org/apache/felix/framework/Felix.properties
osgimock.org.apache.felix.framework.FilterImpl$DictionaryToMap.class
osgimock.org.apache.felix.framework.FilterImpl$WrapperCapability.class
osgimock.org.apache.felix.framework.FilterImpl.class
osgimock.org.apache.felix.framework.FrameworkFactory.class
osgimock.org.apache.felix.framework.FrameworkStartLevelImpl$1.class
osgimock.org.apache.felix.framework.FrameworkStartLevelImpl$BundleStartLevelImpl.class
osgimock.org.apache.felix.framework.FrameworkStartLevelImpl.class
osgimock.org.apache.felix.framework.FrameworkWiringImpl.class
osgimock.org.apache.felix.framework.Logger.class
osgimock.org.apache.felix.framework.PackageAdminImpl$1.class
osgimock.org.apache.felix.framework.PackageAdminImpl$2.class
osgimock.org.apache.felix.framework.PackageAdminImpl.class
osgimock.org.apache.felix.framework.RequiredBundleImpl.class
osgimock.org.apache.felix.framework.ResolveContextImpl.class
osgimock.org.apache.felix.framework.ServiceRegistrationImpl$1.class
osgimock.org.apache.felix.framework.ServiceRegistrationImpl$ServiceFactoryPrivileged.class
osgimock.org.apache.felix.framework.ServiceRegistrationImpl$ServiceReferenceImpl.class
osgimock.org.apache.felix.framework.ServiceRegistrationImpl$ServiceReferenceMap.class
osgimock.org.apache.felix.framework.ServiceRegistrationImpl.class
osgimock.org.apache.felix.framework.ServiceRegistry$1.class
osgimock.org.apache.felix.framework.ServiceRegistry$ServiceRegistryCallbacks.class
osgimock.org.apache.felix.framework.ServiceRegistry$UsageCount.class
osgimock.org.apache.felix.framework.ServiceRegistry.class
osgimock.org.apache.felix.framework.StartLevelImpl.class
osgimock.org.apache.felix.framework.StatefulResolver$ResolverHookRecord$1$1.class
osgimock.org.apache.felix.framework.StatefulResolver$ResolverHookRecord$1.class
osgimock.org.apache.felix.framework.StatefulResolver$ResolverHookRecord.class
osgimock.org.apache.felix.framework.StatefulResolver.class
osgimock.org.apache.felix.framework.URLHandlers.class
osgimock.org.apache.felix.framework.URLHandlersActivator.class
osgimock.org.apache.felix.framework.URLHandlersBundleStreamHandler.class
osgimock.org.apache.felix.framework.URLHandlersBundleURLConnection.class
osgimock.org.apache.felix.framework.URLHandlersContentHandlerProxy.class
osgimock.org.apache.felix.framework.URLHandlersStreamHandlerProxy.class
osgimock.org.apache.felix.framework.WovenClassImpl.class
osgimock.org.apache.felix.framework.cache.BundleArchive.class
osgimock.org.apache.felix.framework.cache.BundleArchiveRevision.class
osgimock.org.apache.felix.framework.cache.BundleCache.class
osgimock.org.apache.felix.framework.cache.Content.class
osgimock.org.apache.felix.framework.cache.ContentDirectoryContent$EntriesEnumeration.class
osgimock.org.apache.felix.framework.cache.ContentDirectoryContent.class
osgimock.org.apache.felix.framework.cache.DirectoryContent$EntriesEnumeration.class
osgimock.org.apache.felix.framework.cache.DirectoryContent.class
osgimock.org.apache.felix.framework.cache.DirectoryRevision.class
osgimock.org.apache.felix.framework.cache.JarContent$DevNullRunnable.class
osgimock.org.apache.felix.framework.cache.JarContent$EntriesEnumeration.class
osgimock.org.apache.felix.framework.cache.JarContent.class
osgimock.org.apache.felix.framework.cache.JarRevision.class
osgimock.org.apache.felix.framework.capabilityset.CapabilitySet.class
osgimock.org.apache.felix.framework.capabilityset.SimpleFilter.class
osgimock.org.apache.felix.framework.ext.FelixBundleContext.class
osgimock.org.apache.felix.framework.ext.SecurityProvider.class
osgimock.org.apache.felix.framework.resolver.CandidateComparator.class
osgimock.org.apache.felix.framework.resolver.ResolveException.class
osgimock.org.apache.felix.framework.resolver.ResourceNotFoundException.class
osgimock.org.apache.felix.framework.util.CompoundEnumeration.class
osgimock.org.apache.felix.framework.util.EventDispatcher$1.class
osgimock.org.apache.felix.framework.util.EventDispatcher$2.class
osgimock.org.apache.felix.framework.util.EventDispatcher$3.class
osgimock.org.apache.felix.framework.util.EventDispatcher$4.class
osgimock.org.apache.felix.framework.util.EventDispatcher$5.class
osgimock.org.apache.felix.framework.util.EventDispatcher$Request.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
osgi.core-6.0.0.jar
/org.osgi/osgi.core/6.0.0
查看osgi.core所有版本文件
osgi.cmpn-6.0.0.jar
/org.osgi/osgi.cmpn/6.0.0
查看osgi.cmpn所有版本文件
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所有版本文件
slf4j-api-1.7.6.jar
/org.slf4j/slf4j-api/1.7.6
查看slf4j-api所有版本文件
mockito-all-1.9.5.jar
/org.mockito/mockito-all/1.9.5
查看mockito-all所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
org.apache.sling.testing.logging-mock-2.0.0.jar
/org.apache.sling/org.apache.sling.testing.logging-mock/2.0.0
查看org.apache.sling.testing.logging-mock所有版本文件
osgi.annotation-6.0.1.jar
/org.osgi/osgi.annotation/6.0.1
查看osgi.annotation所有版本文件
org.osgi.service.component.annotations-1.3.0.jar
/org.osgi/org.osgi.service.component.annotations/1.3.0
查看org.osgi.service.component.annotations所有版本文件
org.osgi.service.metatype.annotations-1.3.0.jar
/org.osgi/org.osgi.service.metatype.annotations/1.3.0
查看org.osgi.service.metatype.annotations所有版本文件
org.apache.felix.scr.annotations-1.11.0.jar
/org.apache.felix/org.apache.felix.scr.annotations/1.11.0
查看org.apache.felix.scr.annotations所有版本文件
biz.aQute.bndlib-3.2.0.jar
/biz.aQute.bnd/biz.aQute.bndlib/3.2.0
查看biz.aQute.bndlib所有版本文件
|