组织ID: |
org.apache.felix |
项目ID: |
org.apache.felix.shell |
版本: |
1.0.0 |
最后修改时间: |
2018-07-24 07:50:01 |
包类型: |
jar |
标题: |
Apache Felix Shell Service |
描述: |
A simple OSGi command shell service. |
大小: |
49.79KB |
|
Maven引入代码: |
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.shell</artifactId>
<version>1.0.0</version>
</dependency>
|
Gradle引入代码: |
org.apache.felix:org.apache.felix.shell:1.0.0
|
下载Jar包: |
|
POM文件内容: |
<project>
<parent>
<groupId>org.apache.felix</groupId>
<artifactId>felix</artifactId>
<version>1.0.0</version>
<relativePath>../pom/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>bundle</packaging>
<name>Apache Felix Shell Service</name>
<description>A simple OSGi command shell service.</description>
<artifactId>org.apache.felix.shell</artifactId>
<dependencies>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>org.osgi.core</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>1.0.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>org.apache.felix.shell; org.ungoverned.osgi.service.shell; version=1.0.0</Export-Package>
<Private-Package>org.apache.felix.*</Private-Package>
<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
<Bundle-Activator>org.apache.felix.shell.impl.Activator</Bundle-Activator>
<Export-Service>org.apache.felix.shell.ShellService, org.ungoverned.osgi.service.shell.ShellService</Export-Service>
<Import-Service>org.osgi.service.startlevel.StartLevel, org.osgi.service.packageadmin.PackageAdmin</Import-Service>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/LICENSE
META-INF/NOTICE
META-INF/maven/org.apache.felix/org.apache.felix.shell/pom.properties
META-INF/maven/org.apache.felix/org.apache.felix.shell/pom.xml
org.apache.felix.shell.CdCommand.class
org.apache.felix.shell.Command.class
org.apache.felix.shell.ShellService.class
org.apache.felix.shell.impl.Activator$1.class
org.apache.felix.shell.impl.Activator$ExecutePrivileged.class
org.apache.felix.shell.impl.Activator$OldCommandWrapper.class
org.apache.felix.shell.impl.Activator$ShellServiceImpl.class
org.apache.felix.shell.impl.Activator.class
org.apache.felix.shell.impl.BundleLevelCommandImpl.class
org.apache.felix.shell.impl.CdCommandImpl.class
org.apache.felix.shell.impl.HeadersCommandImpl.class
org.apache.felix.shell.impl.HelpCommandImpl.class
org.apache.felix.shell.impl.InstallCommandImpl.class
org.apache.felix.shell.impl.PackagesCommandImpl.class
org.apache.felix.shell.impl.PsCommandImpl.class
org.apache.felix.shell.impl.RefreshCommandImpl.class
org.apache.felix.shell.impl.ResolveCommandImpl.class
org.apache.felix.shell.impl.ServicesCommandImpl.class
org.apache.felix.shell.impl.ShutdownCommandImpl.class
org.apache.felix.shell.impl.StartCommandImpl.class
org.apache.felix.shell.impl.StartLevelCommandImpl.class
org.apache.felix.shell.impl.StopCommandImpl.class
org.apache.felix.shell.impl.UninstallCommandImpl.class
org.apache.felix.shell.impl.UpdateCommandImpl.class
org.apache.felix.shell.impl.Util.class
org.apache.felix.shell.impl.VersionCommandImpl.class
org.ungoverned.osgi.service.shell.CdCommand.class
org.ungoverned.osgi.service.shell.Command.class
org.ungoverned.osgi.service.shell.ShellService.class
|
依赖Jar: |
org.osgi.core-1.0.0.jar
/${pom.groupId}/org.osgi.core/1.0.0
查看org.osgi.core所有版本文件
|