Changes for page maven-wolifecycle-plugin

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

From version 19.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.
To version 16.1
edited by Ulrich Köster
on 2007/02/03 09:09
Change comment: There is no comment for this version

Summary

Details

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