Maven Repository - POM file for JEE sca-api-r1.0 0.2.1 0.2.1

Summary

SCA API Version 1.0.

Service Component Architecture V1.0 Java API and Annotations.

Declaration

Here is the list of declaration for sca-api-r1.0. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.codehaus.fabric3.spec</groupId>
   <artifactId>sca-api-r1.0</artifactId>
   <version>0.2.1</version>
</dependency>

If you think this Maven repository POM file listing for sca-api-r1.0 is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Apache License.

Depended by

The following table lists the most popular artifacts which are depending on sca-api-r1.0-0.2.1. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Securityfabric3-scdl 0.6.5
Fabric3 model of standard SCDL concepts.
5
Securityfabric3-api 0.5
Fabric3 APIs for end user applications.
6
Securityfabric3-api 0.7
Fabric3 APIs for end user applications.
7
Securityfabric3-api 0.5ALPHA1
Fabric3 APIs for end user applications.
5
Securityfabric3-api 0.2
Fabric3 APIs for end user applications.
6
Securityfabric3-api 0.5ALPHA2
Fabric3 APIs for end user applications.
5
Securityfabric3-scdl 0.5.1
Fabric3 model of standard SCDL concepts.
5
Securityfabric3-api 0.6.5
Fabric3 APIs for end user applications.
7
Securityfabric3-api 0.6
Fabric3 APIs for end user applications.
7
Securityfabric3-api 0.5.1
Fabric3 APIs for end user applications.
6
Securityfabric3-scdl 0.6
Fabric3 model of standard SCDL concepts.
5
Securityfabric3-scdl 0.5
Fabric3 model of standard SCDL concepts.
5




Plugin

The following plugins are used in the sca-api-r1.0-0.2.1.jar

  1. maven-bundle-plugin

Packages

The following packages are defined in the sca-api-r1.0-0.2.1.jar

org.osoa.sca
org.osoa.sca.annotations

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<!--
 See the NOTICE file distributed with this work for information
 regarding copyright ownership.  This file is licensed
 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.codehaus.fabric3</groupId>
        <artifactId>parent</artifactId>
        <version>3</version>
    </parent>
    <groupId>org.codehaus.fabric3.spec</groupId>
    <artifactId>sca-api-r1.0</artifactId>
    <version>0.2.1</version>
    <packaging>bundle</packaging>
    <name>SCA API Version 1.0</name>
    <description>Service Component Architecture V1.0 Java API and Annotations</description>

    <build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>RELEASE</version>
                    <configuration>
                        <source>1.5</source>
                        <target>1.5</target>
                    </configuration>
                </plugin>
                <plugin>
                    <artifactId>maven-source-plugin</artifactId>
                    <version>RELEASE</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>jar</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
                <plugin>
                    <artifactId>maven-javadoc-plugin</artifactId>
                    <version>RELEASE</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>jar</goal>
                            </goals>
                        </execution>
                    </executions>
                    <configuration>
                        <quiet>true</quiet>
                        <links>
                            <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
                        </links>
                        <header>${pom.name}</header>
                        <bottom><![CDATA[Copyright &copy; {inceptionYear}-{currentYear} Fabric3 project contributors. All Rights Reserved. <br />Licensed under the terms of the <a href="http://www.opensource.org/licenses/apache2.0.php">Apache License 2.0</a>.]]></bottom>
                    </configuration>
                </plugin>
                <plugin>
                    <artifactId>maven-gpg-plugin</artifactId>
                    <version>RELEASE</version>
                    <executions>
                        <execution>
                            <id>sign-artifacts</id>
                            <phase>verify</phase>
                            <goals>
                                <goal>sign</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </pluginManagement>

        <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.osoa.sca,org.osoa.sca.annotations</Export-Package>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <scm>
        <connection>scm:svn:http://svn.codehaus.org/fabric3/spec/tags/sca-api-r1.0-0.2.1</connection>
        <developerConnection>scm:svn:https://svn.codehaus.org/fabric3/spec/tags/sca-api-r1.0-0.2.1</developerConnection>
        <url>http://svn.fabric3.codehaus.org/browse/fabric3/spec/tags/sca-api-r1.0-0.2.1</url>
    </scm>

    <profiles>
        <profile>
            <id>release-profile</id>
            <activation>
                <property>
                    <name>performRelease</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <artifactId>maven-gpg-plugin</artifactId>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>