Maven Repository - POM file for OSGi org.apache.felix.scr.generator 1.9.0 1.9.0

Summary

Descriptor Generator Implementation.

Provides the implementation to generate Declarative Services and Metatype Service descriptors from Java 5 Annotations..

Declaration

Here is the list of declaration for org.apache.felix.scr.generator. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.apache.felix</groupId>
   <artifactId>org.apache.felix.scr.generator</artifactId>
   <version>1.9.0</version>
</dependency>

If you think this Maven repository POM file listing for org.apache.felix.scr.generator is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





License

Apache License.

Depends on

The org.apache.felix.scr.generator-1.9.0 has 8 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
OSGiorg.osgi.core 4.2.0
POM was created by Sonatype Nexus
197
OSGiorg.osgi.compendium 4.2.0
POM was created by Sonatype Nexus
142
JUnitjunit 4.8.1
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
1256
Testing Mockeasymock 3.2
EasyMock provides an easy way to create Mock Objects for interfaces and classes generating them on the fly
69
Data Structurecommons-lang 2.6
Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang.
407
Filecommons-io 2.4
The Commons IO library contains utility classes, stream implementations, file filters, file comparators, endian transformation classes, and much more.
852
OSGiorg.apache.felix.scr.annotations 1.9.6
Annotations for generating OSGi service descriptors.
14

Plugin

The following plugins are used in the org.apache.felix.scr.generator-1.9.0.jar

  1. maven-compiler-plugin




POM File Source

Here is the content of the POM file.

<!-- 
 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>

    <groupId>org.apache.felix</groupId>
    <artifactId>org.apache.felix.scr.generator</artifactId>

    <version>1.9.0</version>
    <packaging>jar</packaging>

    <name>Descriptor Generator Implementation</name>
    <description>
        Provides the implementation to generate Declarative Services and Metatype
        Service descriptors from Java 5 Annotations.
    </description>

    <scm>
        <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.scr.generator-1.9.0</connection>
        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.scr.generator-1.9.0</developerConnection>
        <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.scr.generator-1.9.0</url>
    </scm>

    <dependencies>
        <!-- bind/unbind method generation -->
        <dependency>
            <groupId>org.ow2.asm</groupId>
            <artifactId>asm-all</artifactId>
            <version>4.0</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>org.osgi</groupId>
          <artifactId>org.osgi.core</artifactId>
          <version>4.2.0</version>
        </dependency>
        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.compendium</artifactId>
            <version>4.2.0</version>
        </dependency>


        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.1</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.easymock</groupId>
            <artifactId>easymock</artifactId>
            <version>3.2</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.6</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.4</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.apache.felix</groupId>
            <artifactId>org.apache.felix.scr.annotations</artifactId>
            <version>1.9.6</version>
            <scope>test</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>