JBoss EJB 3.1 API.
JBoss EJB 3.1 API classes.
Here is the list of declaration for jboss-ejb3-api. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jboss.ejb3</groupId> <artifactId>jboss-ejb3-api</artifactId> <version>3.1.0</version> </dependency>
If you think this Maven repository POM file listing for jboss-ejb3-api is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following plugins are used in the jboss-ejb3-api-3.1.0.jar
The following packages are defined in the jboss-ejb3-api-3.1.0.jar
javax.annotation javax.annotation.security javax.ejb javax.ejb.spi javax.interceptor org.jboss.ejb3.api.spi
Here is the content of the POM file.
<!-- vi:ts=2:sw=2:expandtab --> <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.jboss.ejb3</groupId> <artifactId>jboss-ejb3-build</artifactId> <version>1.0.0-Beta9</version> <relativePath>../build/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jboss-ejb3-api</artifactId> <packaging>jar</packaging> <version>3.1.0</version> <name>JBoss EJB 3.1 API</name> <description>JBoss EJB 3.1 API classes</description> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> <executable>${JDK6_HOME}/bin/javac</executable> </configuration> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-jdk6</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireProperty> <property>env.JDK6_HOME</property> <message>JDK6_HOME is not set</message> </requireProperty> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>once</forkMode> <jvm>${JDK6_HOME}/bin/java</jvm> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>jboss.jbossws</groupId> <artifactId>jboss-jaxrpc</artifactId> <version>2.0.3.GA</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss</groupId> <artifactId>jboss-vfs</artifactId> <version>2.0.1.GA</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.javaee</groupId> <artifactId>jboss-transaction-api</artifactId> <version>1.0.1.CR2</version> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-log4j</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>org/jboss/ejb3/api/test/signature/unit/SignatureUnitTestCase.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>signaturetest</id> <activation> <property> <name>env.javax_ejb_jar_path</name> </property> </activation> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>org/jboss/ejb3/api/test/signature/unit/SignatureUnitTestCase.java</include> </includes> <systemProperties> <property> <name>javax.ejb.jar.path</name> <value>${env.javax_ejb_jar_path}</value> </property> </systemProperties> </configuration> </plugin> </plugins> </build> </profile> </profiles> <scm> <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-api-3.1.0</connection> <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-api-3.1.0</developerConnection> <url>http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-api-3.1.0</url> </scm> </project>