Skinny WAR Maven Plugin

Repackages WARs in EARs into skinny WARs.

License

License

MIT
Categories

Categories

Maven Build Tools
GroupId

GroupId

com.github.marschall
ArtifactId

ArtifactId

skinny-war-maven-plugin
Last Version

Last Version

1.0.3
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

Skinny WAR Maven Plugin
Repackages WARs in EARs into skinny WARs.
Project URL

Project URL

https://github.com/marschall/skinny-war-maven-plugin/
Source Code Management

Source Code Management

https://github.com/marschall/skinny-war-maven-plugin/

Download skinny-war-maven-plugin

How to add to project

<plugin>
    <groupId>com.github.marschall</groupId>
    <artifactId>skinny-war-maven-plugin</artifactId>
    <version>1.0.3</version>
</plugin>

Dependencies

compile (3)

Group / Artifact Type Version
org.apache.maven : maven-plugin-api jar 3.6.3
org.apache.maven : maven-core jar 3.6.3
org.codehaus.plexus : plexus-utils jar 3.3.0

provided (1)

Group / Artifact Type Version
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.6.0

Project Modules

There are no modules declared in this project.

Skinny WAR Maven Plugin

This Maven plugin gives you an easy way to build skinny WARs.

Usage

Simply run the skinny-war-maven-plugin after the maven-ear-plugin

<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.acme</groupId>
  <artifactId>application</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>ear</packaging>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-ear-plugin</artifactId>
      </plugin>
      <plugin>
        <groupId>com.github.marschall</groupId>
        <artifactId>skinny-war-maven-plugin</artifactId>
        <version>1.0.3</version>
        <executions>
          <execution>
            <id>repackage</id>
            <goals>
              <goal>repackage</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>

For more information check out the generated plugin page.

Versions

Version
1.0.3
1.0.2
1.0.1