Changes for page maven-wolifecycle-plugin

Last modified by Ulrich Köster on 2007/02/09 11:42

From version 21.1
edited by Ulrich Köster
on 2007/02/03 09:09
Change comment: There is no comment for this version
To version 18.1
edited by Ulrich Köster
on 2007/01/17 10:16
Change comment: Just released the maven stuff. No need to define the version.

Summary

Details

Page properties
Content
... ... @@ -125,37 +125,3 @@
125 125  </project>
126 126  
127 127  {{/code}}
128 -
129 -== Options ==
130 -
131 -Per default JavaClientClasses are not included in the WebServerResources.tar.gz per default.
132 -
133 -To include them change your pom to set the 'includeJavaClientClassesInWebServerResources'property to true.
134 -
135 -{{code}}
136 -
137 -<?xml version="1.0"?>
138 -<project>
139 - ...
140 - <packaging>woapplication</packaging>
141 - ...
142 -
143 -<build>
144 - ........
145 - <plugins>
146 - <plugin>
147 - <groupId>org.objectstyle.woproject.maven2</groupId>
148 - <artifactId>maven-wolifecycle-plugin</artifactId>
149 - <extensions>true</extensions>
150 - <configuration>
151 - <readPatternsets>true</readPatternsets>
152 - <includeJavaClientClassesInWebServerResources>true</includeJavaClientClassesInWebServerResources>
153 - </configuration>
154 - </plugin>
155 - </plugins>
156 - </build>
157 -...
158 -</project>
159 -
160 -
161 -{{/code}}