This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee-patch-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 395d1ea  Update README.adoc
395d1ea is described below

commit 395d1ea215eefc5b443fd75e1da6f02de92905b8
Author: David Blevins <[email protected]>
AuthorDate: Fri Mar 26 21:08:03 2021 -0700

    Update README.adoc
---
 README.adoc | 45 +++++++++++++++++++++++++++++----------------
 1 file changed, 29 insertions(+), 16 deletions(-)

diff --git a/README.adoc b/README.adoc
index 5633764..ea8814f 100644
--- a/README.adoc
+++ b/README.adoc
@@ -1,21 +1,34 @@
 In the configuration of the plugin you can have a directive like the following:
 
-       <configuration>
-         <select>tomee-plume-webapp-transformed-.*\.war</select>
-         <patchSources>
-           <source>${project.basedir}/../../transform/src/patch/java/</source>
-           <source>${project.basedir}/src/patch/java/</source>
-         </patchSources>
-         <replace>
-           <jars>
-             
<jakarta.faces-3.0.0.jar>org.glassfish:jakarta.faces:jar:3.0.0</jakarta.faces-3.0.0.jar>
-             
<eclipselink-3.0.0.jar>org.eclipse.persistence:eclipselink:jar:3.0.0</eclipselink-3.0.0.jar>
-           </jars>
-           <resources>
-             
<openejb-version.properties>${project.build.outputDirectory}/openejb-version.properties</openejb-version.properties>
-           </resources>
-         </replace>
-       </configuration>
+      <plugin>
+        <groupId>org.apache.tomee.patch</groupId>
+        <artifactId>tomee-patch-plugin</artifactId>
+        <version>0.4-SNAPSHOT</version>
+        <configuration>
+          <select>tomee-plume-webapp-transformed-.*\.war</select>
+          <patchSources>
+            <source>${project.basedir}/../../transform/src/patch/java/</source>
+            <source>${project.basedir}/src/patch/java/</source>
+          </patchSources>
+          <replace>
+            <jars>
+              
<jakarta.faces-3.0.0.jar>org.glassfish:jakarta.faces:jar:3.0.0</jakarta.faces-3.0.0.jar>
+              
<eclipselink-3.0.0.jar>org.eclipse.persistence:eclipselink:jar:3.0.0</eclipselink-3.0.0.jar>
+            </jars>
+            <resources>
+              
<openejb-version.properties>${project.build.outputDirectory}/openejb-version.properties</openejb-version.properties>
+            </resources>
+          </replace>
+        </configuration>
+        <executions>
+          <execution>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <phase>package</phase>
+          </execution>
+        </executions>
+      </plugin>
 
 ## select
 

Reply via email to