You can download jboss-ejb-api_3.1_spec-1.0.2.final.jar in this page.
Common Development and Distribution License
jboss-ejb-api_3.1_spec-1.0.2.final.jar file has the following types.
META-INF.maven.org.jboss.spec.javax.ejb.jboss-ejb-api_3.1_spec.pom.properties META-INF.maven.org.jboss.spec.javax.ejb.jboss-ejb-api_3.1_spec.pom.xml META-INF/INDEX.LIST META-INF/LICENSE META-INF/MANIFEST.MF META-INF/README javax.ejb.AccessLocalException.class javax.ejb.AccessTimeout.class javax.ejb.ActivationConfigProperty.class javax.ejb.AfterBegin.class javax.ejb.AfterCompletion.class javax.ejb.ApplicationException.class javax.ejb.AsyncResult.class javax.ejb.Asynchronous.class javax.ejb.BeforeCompletion.class javax.ejb.ConcurrencyManagement.class javax.ejb.ConcurrencyManagementType.class javax.ejb.ConcurrentAccessException.class javax.ejb.ConcurrentAccessTimeoutException.class javax.ejb.CreateException.class javax.ejb.DependsOn.class javax.ejb.DuplicateKeyException.class javax.ejb.EJB.class javax.ejb.EJBAccessException.class javax.ejb.EJBContext.class javax.ejb.EJBException.class javax.ejb.EJBHome.class javax.ejb.EJBLocalHome.class javax.ejb.EJBLocalObject.class javax.ejb.EJBMetaData.class javax.ejb.EJBObject.class javax.ejb.EJBTransactionRequiredException.class javax.ejb.EJBTransactionRolledbackException.class javax.ejb.EJBs.class javax.ejb.EnterpriseBean.class javax.ejb.EntityBean.class javax.ejb.EntityContext.class javax.ejb.FinderException.class javax.ejb.Handle.class javax.ejb.HomeHandle.class javax.ejb.IllegalLoopbackException.class javax.ejb.Init.class javax.ejb.Local.class javax.ejb.LocalBean.class javax.ejb.LocalHome.class javax.ejb.Lock.class javax.ejb.LockType.class javax.ejb.MessageDriven.class javax.ejb.MessageDrivenBean.class javax.ejb.MessageDrivenContext.class javax.ejb.NoMoreTimeoutsException.class javax.ejb.NoSuchEJBException.class javax.ejb.NoSuchEntityException.class javax.ejb.NoSuchObjectLocalException.class javax.ejb.ObjectNotFoundException.class javax.ejb.PostActivate.class javax.ejb.PrePassivate.class javax.ejb.Remote.class javax.ejb.RemoteHome.class javax.ejb.Remove.class javax.ejb.RemoveException.class javax.ejb.Schedule.class javax.ejb.ScheduleExpression.class javax.ejb.Schedules.class javax.ejb.SessionBean.class javax.ejb.SessionContext.class javax.ejb.SessionSynchronization.class javax.ejb.Singleton.class javax.ejb.Startup.class javax.ejb.Stateful.class javax.ejb.StatefulTimeout.class javax.ejb.Stateless.class javax.ejb.TimedObject.class javax.ejb.Timeout.class javax.ejb.Timer.class javax.ejb.TimerConfig.class javax.ejb.TimerHandle.class javax.ejb.TimerService.class javax.ejb.TransactionAttribute.class javax.ejb.TransactionAttributeType.class javax.ejb.TransactionManagement.class javax.ejb.TransactionManagementType.class javax.ejb.TransactionRequiredLocalException.class javax.ejb.TransactionRolledbackLocalException.class javax.ejb.embeddable.EJBContainer.class javax.ejb.spi.EJBContainerProvider.class javax.ejb.spi.HandleDelegate.class
jboss-ejb-api_3.1_spec-1.0.2.final.pom file content.
<?xml version='1.0' encoding='UTF-8'?> <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.jboss</groupId> <artifactId>jboss-parent</artifactId> <version>9</version> </parent> <groupId>org.jboss.spec.javax.ejb</groupId> <artifactId>jboss-ejb-api_3.1_spec</artifactId> <version>1.0.2.Final</version> <packaging>jar</packaging> <name>Enterprise JavaBeans(TM) 3.1 API</name> <description>JSR 318: Enterprise JavaBeans(TM) 3.1 API</description> <licenses> <license> <name>Common Development and Distribution License</name> <url>http://repository.jboss.org/licenses/cddl.txt</url> <distribution>repo</distribution> </license> <license> <name>GNU General Public License, Version 2 with the Classpath Exception</name> <url>http://repository.jboss.org/licenses/gpl-2.0-ce.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:jboss/jboss-ejb-api_spec.git</connection> <developerConnection>scm:git:git@github.com:jboss/jboss-ejb-api_spec.git</developerConnection> <url>https://github.com/jboss/jboss-ejb-api_spec</url> </scm> <build> <plugins> <!-- Include LICENSE.txt in the META-INF directory --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-resources</id> <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <resources> <resource> <directory>${basedir}</directory> <includes> <include>LICENSE</include> <include>README</include> </includes> </resource> </resources> <outputDirectory>${project.build.outputDirectory}/META-INF</outputDirectory> </configuration> </execution> </executions> </plugin> <!-- Generate the OSGi jar Manifest. --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <archive> <manifest> <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries> </manifest> </archive> <instructions> <Specification-Title>Enterprise JavaBeans(TM) 3.1 API</Specification-Title> <Specification-Vendor>Oracle</Specification-Vendor> <Specification-Version>3.1</Specification-Version> <!-- Set the package version to match the spec version --> <Export-Package> javax.ejb*;version=3.1 </Export-Package> </instructions> </configuration> </plugin> <!-- Add the OSGi Manifest to the main jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <configuration> <archive> <manifestEntries> <Specification-Title>Enterprise JavaBeans(TM) 3.1 API</Specification-Title> <Specification-Vendor>Oracle</Specification-Vendor> <Specification-Version>3.1</Specification-Version> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jboss.spec.javax.transaction</groupId> <artifactId>jboss-transaction-api_1.1_spec</artifactId> <version>1.0.1.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.spec.javax.xml.rpc</groupId> <artifactId>jboss-jaxrpc-api_1.1_spec</artifactId> <version>1.0.1.Final</version> <scope>provided</scope> </dependency> </dependencies> </project>
<dependency> <groupId>org.jboss.spec.javax.ejb</groupId> <artifactId>jboss-ejb-api_3.1_spec</artifactId> <version>1.0.2.final</version> </dependency>
If you think the following jboss-ejb-api_3.1_spec-1.0.2.final.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download jboss-ejb-api_3.1_spec-1.0.2.final.jar file