| 组织ID: |
com.mockrunner |
| 项目ID: |
mockrunner-ejb |
| 版本: |
1.0.4 |
| 最后修改时间: |
2019-10-25 04:39:15 |
| 包类型: |
jar |
| 标题: |
MockRunner-EJB |
| 描述: |
Mock classes for enterprise java beans |
| 大小: |
35.56KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.mockrunner</groupId>
<artifactId>mockrunner-ejb</artifactId>
<version>1.0.4</version>
</dependency>
|
| Gradle引入代码: |
com.mockrunner:mockrunner-ejb:1.0.4
|
| 下载Jar包: |
|
| POM文件内容: |
<?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>com.mockrunner</groupId>
<artifactId>mockrunner</artifactId>
<version>1.0.4</version>
<relativePath>..</relativePath>
</parent>
<artifactId>mockrunner-ejb</artifactId>
<name>MockRunner-EJB</name>
<description>Mock classes for enterprise java beans</description>
<dependencies>
<dependency>
<groupId>com.mockrunner</groupId>
<artifactId>mockrunner-core</artifactId>
<version>1.0.4</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>org.mockejb</groupId>
<artifactId>mockejb</artifactId>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>jboss-j2ee</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<compilerVersion>1.7</compilerVersion>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<!-- Generate a jar for the source files when deploying -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<!-- Generate a jar for the javadocs when deploying -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadoc</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<javadocExecutable>${javadoc-executable-path}</javadocExecutable>
<charset>${project.build.sourceEncoding}</charset>
<encoding>${project.build.sourceEncoding}</encoding>
<docencoding>${project.build.sourceEncoding}</docencoding>
<additionalparam>-Xdoclint:none</additionalparam> <!-- This prevents javadoc from failing with warnings -->
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-module-exclusives</id>
<!-- Profile automatically triggered when release:perform is executed -->
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<configuration>
<path>${project.artifactId}</path>
</configuration>
<executions>
<execution>
<id>github-site</id>
<goals>
<goal>site</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.mockrunner.ejb.BasicEJBTestCaseAdapter.class
com.mockrunner.ejb.Configuration.class
com.mockrunner.ejb.EJBTestModule.class
com.mockrunner.ejb.JNDIUtil.class
com.mockrunner.example.ejb.BillEntityBean.class
com.mockrunner.example.ejb.BillManagerSessionBean.class
com.mockrunner.example.ejb.DBStatefulBean.class
com.mockrunner.example.ejb.interfaces.BillEntity.class
com.mockrunner.example.ejb.interfaces.BillEntityHome.class
com.mockrunner.example.ejb.interfaces.BillManagerSession.class
com.mockrunner.example.ejb.interfaces.BillManagerSessionHome.class
com.mockrunner.example.ejb.interfaces.DBStateful.class
com.mockrunner.example.ejb.interfaces.DBStatefulHome.class
com.mockrunner.example.ejb.interfaces.LogSession.class
com.mockrunner.example.ejb.interfaces.LogSessionHome.class
com.mockrunner.example.ejb.interfaces.PaySession.class
com.mockrunner.example.ejb.interfaces.PaySessionHome.class
com.mockrunner.example.ejb.interfaces.UserEntity.class
com.mockrunner.example.ejb.interfaces.UserEntityHome.class
com.mockrunner.example.ejb.interfaces.UserLoginSession.class
com.mockrunner.example.ejb.interfaces.UserLoginSessionHome.class
com.mockrunner.example.ejb.LogSessionBean.class
com.mockrunner.example.ejb.PaySessionBean.class
com.mockrunner.example.ejb.PaySessionException.class
com.mockrunner.example.ejb.UserEntityBean.class
com.mockrunner.example.ejb.UserLoginSessionBean.class
com.mockrunner.mock.ejb.EJBMockObjectFactory.class
com.mockrunner.mock.ejb.MockUserTransaction.class
META-INF/maven/com.mockrunner/mockrunner-ejb/pom.xml
META-INF/maven/com.mockrunner/mockrunner-ejb/pom.properties
|
| 依赖Jar: |
mockrunner-core-1.0.4.jar
/com.mockrunner/mockrunner-core/1.0.4
查看mockrunner-core所有版本文件
|