组织ID: |
org.apache.felix |
项目ID: |
org.apache.felix.inventory |
版本: |
1.0.2 |
最后修改时间: |
2018-08-23 09:25:54 |
包类型: |
jar |
标题: |
Apache Felix Inventory |
描述: |
Apache Felix Inventory provides some mechanisms to get the current state of the system and therefore provides an inventory of the system. |
大小: |
49.98KB |
|
Maven引入代码: |
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.inventory</artifactId>
<version>1.0.2</version>
</dependency>
|
Gradle引入代码: |
org.apache.felix:org.apache.felix.inventory:1.0.2
|
下载Jar包: |
|
POM文件内容: |
<!--
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>2.1</version>
<relativePath>../pom/pom.xml</relativePath>
</parent>
<artifactId>org.apache.felix.inventory</artifactId>
<packaging>bundle</packaging>
<version>1.0.2</version>
<name>Apache Felix Inventory</name>
<description>Apache Felix Inventory provides some mechanisms to get the current state of the system and therefore provides an inventory of the system.</description>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.inventory-1.0.2</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.inventory-1.0.2</developerConnection>
<url>http://svn.apache.org/viewvc/felix/releases/org.apache.felix.inventory-1.0.2</url>
</scm>
<build>
<plugins>
<!-- Make sure to not use non Java 1.4 API -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.4</source>
<target>1.4</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.7</version>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java14</artifactId>
<version>1.0</version>
</signature>
</configuration>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<excludePackageNames>
*.impl
</excludePackageNames>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Category>osgi</Bundle-Category>
<Bundle-SymbolicName>
${project.artifactId}
</Bundle-SymbolicName>
<Bundle-Activator>
org.apache.felix.inventory.impl.Activator
</Bundle-Activator>
<Export-Package>
org.apache.felix.inventory;version=1.0.0
</Export-Package>
<DynamicImport-Package>
javax.servlet, javax.servlet.http
</DynamicImport-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>4.2.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>4.2.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/NOTICE
META-INF/changelog.txt
META-INF/maven/org.apache.felix/org.apache.felix.inventory/pom.properties
META-INF/maven/org.apache.felix/org.apache.felix.inventory/pom.xml
org.apache.felix.inventory.Format.class
org.apache.felix.inventory.InventoryPrinter.class
org.apache.felix.inventory.ZipAttachmentProvider.class
org.apache.felix.inventory.impl.AbstractWebConsolePlugin.class
org.apache.felix.inventory.impl.Activator$1.class
org.apache.felix.inventory.impl.Activator.class
org.apache.felix.inventory.impl.DefaultWebConsolePlugin.class
org.apache.felix.inventory.impl.InventoryPrinterAdapter$1.class
org.apache.felix.inventory.impl.InventoryPrinterAdapter.class
org.apache.felix.inventory.impl.InventoryPrinterDescription.class
org.apache.felix.inventory.impl.InventoryPrinterHandler.class
org.apache.felix.inventory.impl.InventoryPrinterManagerImpl$1.class
org.apache.felix.inventory.impl.InventoryPrinterManagerImpl.class
org.apache.felix.inventory.impl.WebConsolePlugin$1.class
org.apache.felix.inventory.impl.WebConsolePlugin.class
org.apache.felix.inventory.impl.helper.ConfigurationWriter.class
org.apache.felix.inventory.impl.helper.HtmlConfigurationWriter.class
org.apache.felix.inventory.impl.helper.JSONConfigurationWriter.class
org.apache.felix.inventory.impl.helper.PlainTextConfigurationWriter.class
org.apache.felix.inventory.impl.helper.SimpleJson.class
org.apache.felix.inventory.impl.helper.ZipConfigurationWriter$1.class
org.apache.felix.inventory.impl.helper.ZipConfigurationWriter$ConfigZipOutputStream.class
org.apache.felix.inventory.impl.helper.ZipConfigurationWriter.class
org.apache.felix.inventory.impl.webconsole.ConfigurationPrinterAdapter.class
org.apache.felix.inventory.impl.webconsole.ConsoleConstants.class
org.apache.felix.inventory.impl.webconsole.ResourceBundleManager.class
org.apache.felix.inventory.impl.webconsole.WebConsoleAdapter$WebConsolePrinter.class
org.apache.felix.inventory.impl.webconsole.WebConsoleAdapter.class
|
依赖Jar: |
org.osgi.core-4.2.0.jar
/org.osgi/org.osgi.core/4.2.0
查看org.osgi.core所有版本文件
org.osgi.compendium-4.2.0.jar
/org.osgi/org.osgi.compendium/4.2.0
查看org.osgi.compendium所有版本文件
servlet-api-2.4.jar
/javax.servlet/servlet-api/2.4
查看servlet-api所有版本文件
junit-4.10.jar
/junit/junit/4.10
查看junit所有版本文件
|