当前位置: 首页 > 工具软件 > documentation > 使用案例 >

Plugin Documentation

彭霄
2023-12-01

Apache Maven EJB Plugin

Apache/ Maven/ Plugins/ Apache Maven EJB Plugin/ Plugin Documentation
| Last Published: 2018-05-03
Version: 3.0.1

Overview
Introduction
Goals
Usage
FAQ
License
Download
Examples
Filter the deployment descriptor
Generating an EJB client
Using the ejb-client as a dependency
Project Documentation
Project Information
Project Reports
    Surefire Report
    Checkstyle
    Source Xref
    Test Source Xref
    Tag List
    Javadoc
    Test Javadoc
    FindBugs
    Sonar
    Plugin Documentation
    Invoker Build Results
Maven Projects
Archetype
Artifact Resolver
Doxia
JXR
Maven
Parent POMs
Plugins
Plugin Testing
Plugin Tools
Resource Bundles
SCM
Shared Components
Skins
Surefire
Wagon
ASF
How Apache Works
Foundation
Sponsoring Apache
Thanks

Follow ASFMavenProject
Built by Maven
Plugin Documentation

Goals available for this plugin:
Goal Description
ejb:ejb Build an EJB (and optional client) from the current project.
ejb:help Display help information on maven-ejb-plugin.
Call mvn ejb:help -Ddetail=true -Dgoal= to display parameter details.
System Requirements

The following specifies the minimum requirements to run this Maven plugin:
Maven 3.0
JDK 1.7
Memory No minimum requirement.
Disk Space No minimum requirement.
Usage

You should specify the version in your project’s plugin configuration:

<project>
  ...
  <build>
    <!-- To define the plugin version in your parent POM -->
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-ejb-plugin</artifactId>
          <version>3.0.1</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-ejb-plugin</artifactId>
        <version>3.0.1</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

For more information, see “Guide to Configuring Plug-ins”

Copyright ©2002–2018 The Apache Software Foundation. All rights reserved.

 类似资料:

相关阅读

相关文章

相关问答