Java EE: EJB API v3.0.
EJB 3 API of Java EE 5.0.
Here is the list of declaration for ow2-ejb-3.0-spec. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.ow2.spec.ee</groupId> <artifactId>ow2-ejb-3.0-spec</artifactId> <version>1.0.0</version> </dependency>
If you think this Maven repository POM file listing for ow2-ejb-3.0-spec is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
GNU Lesser General Public License.
The following plugins are used in the ow2-ejb-3.0-spec-1.0.0.jar
The following packages are defined in the ow2-ejb-3.0-spec-1.0.0.jar
javax.annotation javax.annotation.security javax.ejb javax.ejb.spi javax.interceptor
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OW2 Specifications - Copyright (C) 2007 Bull S.A.S. - Contact: easybeans@objectweb.org - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - $Id: pom.xml 4547 2009-02-09 10:01:25Z benoitf $ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <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"> <parent> <groupId>org.ow2.spec</groupId> <artifactId>ee</artifactId> <version>1.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.ow2.spec.ee</groupId> <artifactId>ow2-ejb-3.0-spec</artifactId> <packaging>bundle</packaging> <name>Java EE: EJB API v3.0</name> <description>EJB 3 API of Java EE 5.0</description> <properties> <spec.version>3.0</spec.version> <package>javax.ejb</package> </properties> <dependencies> <dependency> <groupId>org.ow2.spec.ee</groupId> <artifactId>ow2-jta-1.1-spec</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-jaxrpc_1.1_spec</artifactId> <version>1.1</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Export-Package><![CDATA[ javax.annotation.*;version=${spec.version}, javax.ejb.*;version=${spec.version}, javax.interceptor.*;version=${spec.version} ]]> </Export-Package> <Import-Package>javax.transaction.*;version=1.1, *</Import-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>