SCA API Version 1.0.
Service Component Architecture V1.0 Java API and Annotations.
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.3</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.
Apache License.
The following table lists the most popular artifacts which are depending on sca-api-r1.0-0.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Security | fabric3-management-api 1.0 Fabric3 Management API. | 5 |
Security | fabric3-api 1.0 Fabric3 APIs for end user applications. | 7 |
The following plugins are used in the sca-api-r1.0-0.3.jar
The following packages are defined in the sca-api-r1.0-0.3.jar
org.oasisopen.sca org.oasisopen.sca.annotation org.osoa.sca org.osoa.sca.annotations
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.3</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 © {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, org.oasisopen.sca, org.oasisopen.sca.annotation</Export-Package> </instructions> </configuration> </plugin> </plugins> </build> <scm> <connection>scm:svn:http://svn.codehaus.org/fabric3/spec/tags/sca-api-r1.0-0.3</connection> <developerConnection>scm:svn:https://svn.codehaus.org/fabric3/spec/tags/sca-api-r1.0-0.3</developerConnection> <url>http://svn.fabric3.codehaus.org/browse/fabric3/spec/tags/sca-api-r1.0-0.3</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>