组织ID: |
org.apache.felix |
项目ID: |
org.apache.felix.configadmin |
版本: |
1.2.4 |
最后修改时间: |
2018-08-03 19:11:51 |
包类型: |
jar |
标题: |
Apache Felix Configuration Admin Service |
描述: |
Implementation of the OSGi Configuration Admin Service Specification 1.2
|
大小: |
83.02KB |
|
Maven引入代码: |
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.configadmin</artifactId>
<version>1.2.4</version>
</dependency>
|
Gradle引入代码: |
org.apache.felix:org.apache.felix.configadmin:1.2.4
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.felix</groupId>
<artifactId>felix-parent</artifactId>
<version>1.2.0</version>
<relativePath>../pom/pom.xml</relativePath>
</parent>
<artifactId>org.apache.felix.configadmin</artifactId>
<version>1.2.4</version>
<packaging>bundle</packaging>
<name>Apache Felix Configuration Admin Service</name>
<description>
Implementation of the OSGi Configuration Admin Service Specification 1.2
</description>
<dependencies>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>org.osgi.core</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>1.0.0</version>
</dependency>
<!-- Integration Testing with Pax Exam -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.6</version>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam</artifactId>
<version>0.6.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-junit</artifactId>
<version>0.6.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-container-default</artifactId>
<version>0.6.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ops4j.pax.swissbox</groupId>
<artifactId>pax-swissbox-tinybundles</artifactId>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>1.4.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Category>osgi</Bundle-Category>
<Bundle-SymbolicName>
${artifactId}
</Bundle-SymbolicName>
<Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
<Export-Package>
org.apache.felix.cm;
org.apache.felix.cm.file;version=1.0,
org.osgi.service.cm;-split-package:=merge-first
</Export-Package>
<Private-Package>
org.apache.felix.cm.impl,
org.osgi.util.tracker
</Private-Package>
<Bundle-Activator>
org.apache.felix.cm.impl.ConfigurationManager
</Bundle-Activator>
<DynamicImport-Package>
org.osgi.service.log
</DynamicImport-Package>
</instructions>
</configuration>
</plugin>
<!--
configure default compilation for Java 1.3 and integration
test compilation for Java 5 (since integration tests use
Java Annotations for Pax Exam)
-->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>test-compile-java5</id>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<source>1.5</source>
<target>1.5</target>
<testExcludes>
<testExclude>**/cm/*</testExclude>
<testExclude>**/cm/file/*</testExclude>
<testExclude>**/cm/impl/**</testExclude>
</testExcludes>
<testIncludes>
<testInclude>**/integration/**</testInclude>
</testIncludes>
</configuration>
</execution>
</executions>
<configuration>
<testExcludes>
<testExclude>**/integration/**</testExclude>
</testExcludes>
</configuration>
</plugin>
<!-- Provide bundle for integration tests -->
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.3</version>
<executions>
<execution>
<id>configadmin-file-create</id>
<phase>pre-integration-test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<copy file="${project.build.directory}/${project.build.finalName}.jar" tofile="${project.build.directory}/configadmin.jar" />
</tasks>
</configuration>
</execution>
<execution>
<id>configadmin-file-remove</id>
<phase>post-integration-test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<delete file="${project.build.directory}/configadmin.jar" />
</tasks>
</configuration>
</execution>
</executions>
</plugin>
<!--
Exclude Integration tests in (default) unit tests and
conversely enable integration tests for integration testing
only. Helper classes are completely excluded from testing.
-->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>surefire-it</id>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<excludes>
<exclude>**/cm/*</exclude>
<exclude>**/cm/file/*</exclude>
<exclude>**/cm/impl/**</exclude>
</excludes>
<includes>
<include>**/integration/*</include>
</includes>
</configuration>
</execution>
</executions>
<configuration>
<excludes>
<exclude>**/integration/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<!-- repositories for Pax Exam and BND tool -->
<repositories>
<repository>
<id>ops4j</id>
<name>ops4j</name>
<url>http://repository.ops4j.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>aqute</id>
<name>aqute</name>
<url>http://www.aqute.biz/repo</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<scm>
<connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.configadmin-1.2.4</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.configadmin-1.2.4</developerConnection>
<url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.configadmin-1.2.4</url>
</scm>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/LICENSE
META-INF/NOTICE
META-INF/maven/org.apache.felix/org.apache.felix.configadmin/pom.properties
META-INF/maven/org.apache.felix/org.apache.felix.configadmin/pom.xml
org.apache.felix.cm.PersistenceManager.class
org.apache.felix.cm.file.ConfigurationHandler.class
org.apache.felix.cm.file.FilePersistenceManager$1.class
org.apache.felix.cm.file.FilePersistenceManager$2.class
org.apache.felix.cm.file.FilePersistenceManager$3.class
org.apache.felix.cm.file.FilePersistenceManager$4.class
org.apache.felix.cm.file.FilePersistenceManager$DictionaryEnumeration$1.class
org.apache.felix.cm.file.FilePersistenceManager$DictionaryEnumeration.class
org.apache.felix.cm.file.FilePersistenceManager.class
org.apache.felix.cm.impl.CaseInsensitiveDictionary.class
org.apache.felix.cm.impl.ConfigurationAdapter.class
org.apache.felix.cm.impl.ConfigurationAdminFactory.class
org.apache.felix.cm.impl.ConfigurationAdminImpl.class
org.apache.felix.cm.impl.ConfigurationBase.class
org.apache.felix.cm.impl.ConfigurationImpl.class
org.apache.felix.cm.impl.ConfigurationManager$DeleteConfiguration.class
org.apache.felix.cm.impl.ConfigurationManager$FireConfigurationEvent.class
org.apache.felix.cm.impl.ConfigurationManager$ManagedServiceFactoryTracker.class
org.apache.felix.cm.impl.ConfigurationManager$ManagedServiceFactoryUpdate.class
org.apache.felix.cm.impl.ConfigurationManager$ManagedServiceTracker.class
org.apache.felix.cm.impl.ConfigurationManager$ManagedServiceUpdate.class
org.apache.felix.cm.impl.ConfigurationManager$UpdateConfiguration.class
org.apache.felix.cm.impl.ConfigurationManager.class
org.apache.felix.cm.impl.DynamicBindings.class
org.apache.felix.cm.impl.Factory.class
org.apache.felix.cm.impl.PersistenceManagerProxy.class
org.apache.felix.cm.impl.RankingComparator.class
org.apache.felix.cm.impl.UpdateThread.class
org.osgi.service.cm.Configuration.class
org.osgi.service.cm.ConfigurationAdmin.class
org.osgi.service.cm.ConfigurationEvent.class
org.osgi.service.cm.ConfigurationException.class
org.osgi.service.cm.ConfigurationListener.class
org.osgi.service.cm.ConfigurationPermission.class
org.osgi.service.cm.ConfigurationPermissionCollection$1.class
org.osgi.service.cm.ConfigurationPermissionCollection.class
org.osgi.service.cm.ConfigurationPlugin.class
org.osgi.service.cm.ManagedService.class
org.osgi.service.cm.ManagedServiceFactory.class
org/osgi/service/cm/package.html
org/osgi/service/cm/packageinfo
org.osgi.util.tracker.ServiceTracker$AllTracked.class
org.osgi.util.tracker.ServiceTracker$Tracked.class
org.osgi.util.tracker.ServiceTracker.class
org.osgi.util.tracker.ServiceTrackerCustomizer.class
org/osgi/util/tracker/package.html
org/osgi/util/tracker/packageinfo
|
依赖Jar: |
org.osgi.core-1.0.0.jar
/${pom.groupId}/org.osgi.core/1.0.0
查看org.osgi.core所有版本文件
org.osgi.compendium-1.0.0.jar
/${pom.groupId}/org.osgi.compendium/1.0.0
查看org.osgi.compendium所有版本文件
junit-4.6.jar
/junit/junit/4.6
查看junit所有版本文件
pax-exam-0.6.0.jar
/org.ops4j.pax.exam/pax-exam/0.6.0
查看pax-exam所有版本文件
pax-exam-junit-0.6.0.jar
/org.ops4j.pax.exam/pax-exam-junit/0.6.0
查看pax-exam-junit所有版本文件
pax-exam-container-default-0.6.0.jar
/org.ops4j.pax.exam/pax-exam-container-default/0.6.0
查看pax-exam-container-default所有版本文件
pax-swissbox-tinybundles-1.0.0.jar
/org.ops4j.pax.swissbox/pax-swissbox-tinybundles/1.0.0
查看pax-swissbox-tinybundles所有版本文件
|