| 组织ID: |
org.apache.felix |
| 项目ID: |
maven-scr-plugin |
| 版本: |
1.4.4 |
| 最后修改时间: |
2019-10-23 02:03:19 |
| 包类型: |
maven-plugin |
| 标题: |
Maven SCR Plugin |
| 描述: |
Maven plugin for generating OSGi service descriptors based on annotations.
|
| 大小: |
135.96KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<version>1.4.4</version>
</dependency>
|
| Gradle引入代码: |
org.apache.felix:maven-scr-plugin:1.4.4
|
| 下载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>
<artifactId>felix-parent</artifactId>
<groupId>org.apache.felix</groupId>
<version>1.2.0</version>
<relativePath>../pom/pom.xml</relativePath>
</parent>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<version>1.4.4</version>
<packaging>maven-plugin</packaging>
<name>Maven SCR Plugin</name>
<description>
Maven plugin for generating OSGi service descriptors based on annotations.
</description>
<scm>
<connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/maven-scr-plugin-1.4.4</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/maven-scr-plugin-1.4.4</developerConnection>
<url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/maven-scr-plugin-1.4.4</url>
</scm>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0.7</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-archiver</artifactId>
<version>2.2</version>
</dependency>
<!-- JavaDoc Tags -->
<dependency>
<groupId>com.thoughtworks.qdox</groupId>
<artifactId>qdox</artifactId>
<version>1.9.1</version>
</dependency>
<!-- SCR Annotations -->
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<version>1.3.0</version>
</dependency>
<!-- Sling Servlet SCR Annotation -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<scope>compile</scope>
</dependency>
<!-- bind/unbind method generation -->
<dependency>
<groupId>asm</groupId>
<artifactId>asm-all</artifactId>
<version>3.1</version>
</dependency>
<!-- OSGi APIs -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>4.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>4.0.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- JDK 1.5 needed for annotation support -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/LICENSE
META-INF/LICENSE.asm
META-INF/LICENSE.slf4j
META-INF/maven/plugin.xml
META-INF/NOTICE
org.apache.felix.scrplugin.Constants.class
org.apache.felix.scrplugin.helper.IssueLog$Entry.class
org.apache.felix.scrplugin.helper.IssueLog.class
org.apache.felix.scrplugin.helper.PropertyHandler$PropertyDescription.class
org.apache.felix.scrplugin.helper.PropertyHandler.class
org.apache.felix.scrplugin.helper.StringUtils.class
org.apache.felix.scrplugin.JavaClassDescriptorManager.class
org.apache.felix.scrplugin.Log.class
org.apache.felix.scrplugin.mojo.MavenJavaClassDescriptorManager$ArtifactFileInputStream.class
org.apache.felix.scrplugin.mojo.MavenJavaClassDescriptorManager.class
org.apache.felix.scrplugin.mojo.MavenLog.class
org.apache.felix.scrplugin.mojo.SCRDescriptorMojo.class
org.apache.felix.scrplugin.om.AbstractObject.class
org.apache.felix.scrplugin.om.Component.class
org.apache.felix.scrplugin.om.Components.class
org.apache.felix.scrplugin.om.Implementation.class
org.apache.felix.scrplugin.om.Interface.class
org.apache.felix.scrplugin.om.metatype.AttributeDefinition.class
org.apache.felix.scrplugin.om.metatype.Designate.class
org.apache.felix.scrplugin.om.metatype.MetaData.class
org.apache.felix.scrplugin.om.metatype.MTObject.class
org.apache.felix.scrplugin.om.metatype.OCD.class
org.apache.felix.scrplugin.om.Property.class
org.apache.felix.scrplugin.om.Reference.class
org.apache.felix.scrplugin.om.Service.class
org.apache.felix.scrplugin.SCRDescriptorException.class
org.apache.felix.scrplugin.SCRDescriptorFailureException.class
org.apache.felix.scrplugin.SCRDescriptorGenerator.class
org.apache.felix.scrplugin.tags.annotation.AnnotationJavaClassDescription.class
org.apache.felix.scrplugin.tags.annotation.AnnotationJavaField.class
org.apache.felix.scrplugin.tags.annotation.AnnotationTagProvider.class
org.apache.felix.scrplugin.tags.annotation.AnnotationTagProviderManager.class
org.apache.felix.scrplugin.tags.annotation.defaulttag.AbstractTag.class
org.apache.felix.scrplugin.tags.annotation.defaulttag.ComponentTag$1.class
org.apache.felix.scrplugin.tags.annotation.defaulttag.ComponentTag.class
org.apache.felix.scrplugin.tags.annotation.defaulttag.DefaultAnnotationTagProvider.class
org.apache.felix.scrplugin.tags.annotation.defaulttag.PropertyTag$1.class
org.apache.felix.scrplugin.tags.annotation.defaulttag.PropertyTag$PropertyOptionImpl.class
org.apache.felix.scrplugin.tags.annotation.defaulttag.PropertyTag.class
org.apache.felix.scrplugin.tags.annotation.defaulttag.ReferenceTag$1.class
org.apache.felix.scrplugin.tags.annotation.defaulttag.ReferenceTag.class
org.apache.felix.scrplugin.tags.annotation.defaulttag.ServiceTag$1.class
org.apache.felix.scrplugin.tags.annotation.defaulttag.ServiceTag.class
org.apache.felix.scrplugin.tags.annotation.defaulttag.Util$1.class
org.apache.felix.scrplugin.tags.annotation.defaulttag.Util.class
org.apache.felix.scrplugin.tags.annotation.sling.SlingAnnotationTagProvider.class
org.apache.felix.scrplugin.tags.annotation.sling.SlingFilterComponentTag.class
org.apache.felix.scrplugin.tags.annotation.sling.SlingFilterServiceTag.class
org.apache.felix.scrplugin.tags.annotation.sling.SlingServletComponentTag.class
org.apache.felix.scrplugin.tags.annotation.sling.SlingServletPropertyTag.class
org.apache.felix.scrplugin.tags.annotation.sling.SlingServletServiceTag.class
org.apache.felix.scrplugin.tags.cl.ClassLoaderJavaClassDescription.class
org.apache.felix.scrplugin.tags.cl.ClassLoaderJavaField.class
org.apache.felix.scrplugin.tags.cl.ClassLoaderJavaMethod.class
org.apache.felix.scrplugin.tags.cl.ClassLoaderJavaParameter.class
org.apache.felix.scrplugin.tags.cl.ClassLoaderJavaTag.class
org.apache.felix.scrplugin.tags.ClassUtil.class
org.apache.felix.scrplugin.tags.JavaClassDescription.class
org.apache.felix.scrplugin.tags.JavaClassDescriptionInheritanceComparator.class
org.apache.felix.scrplugin.tags.JavaField.class
org.apache.felix.scrplugin.tags.JavaMethod.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
maven-plugin-api-2.0.7.jar
/org.apache.maven/maven-plugin-api/2.0.7
查看maven-plugin-api所有版本文件
maven-archiver-2.2.jar
/org.apache.maven/maven-archiver/2.2
查看maven-archiver所有版本文件
qdox-1.9.1.jar
/com.thoughtworks.qdox/qdox/1.9.1
查看qdox所有版本文件
org.apache.felix.scr.annotations-1.3.0.jar
/org.apache.felix/org.apache.felix.scr.annotations/1.3.0
查看org.apache.felix.scr.annotations所有版本文件
servlet-api-2.4.jar
/javax.servlet/servlet-api/2.4
查看servlet-api所有版本文件
asm-all-3.1.jar
/asm/asm-all/3.1
查看asm-all所有版本文件
org.osgi.core-4.0.0.jar
/org.osgi/org.osgi.core/4.0.0
查看org.osgi.core所有版本文件
org.osgi.compendium-4.0.0.jar
/org.osgi/org.osgi.compendium/4.0.0
查看org.osgi.compendium所有版本文件
|