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 22.1
edited by Ulrich Köster
on 2007/02/09 07:27
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -130,7 +130,7 @@
130 130  
131 131  Per default JavaClientClasses are not included in the WebServerResources.tar.gz per default.
132 132  
133 -To include them change your pom to set the 'includeJavaClientClassesInWebServerResources'property to true.
133 +To include them change your pom to set the 'includeJavaClientClassesInWebServerResources' property to true.
134 134  
135 135  {{code}}
136 136  
... ... @@ -159,3 +159,34 @@
159 159  
160 160  
161 161  {{/code}}
162 +
163 +Per default jars provided by Apple are included per default.
164 +
165 +To skip them change your pom to set the 'includeAppleProvidedFrameworks' property to false.
166 +
167 +{{code}}
168 +
169 +<?xml version="1.0"?>
170 +<project>
171 + ...
172 + <packaging>woapplication</packaging>
173 + ...
174 +
175 +<build>
176 + ........
177 + <plugins>
178 + <plugin>
179 + <groupId>org.objectstyle.woproject.maven2</groupId>
180 + <artifactId>maven-wolifecycle-plugin</artifactId>
181 + <extensions>true</extensions>
182 + <configuration>
183 + < includeAppleProvidedFrameworks >false</includeAppleProvidedFrameworks >
184 + </configuration>
185 + </plugin>
186 + </plugins>
187 + </build>
188 +...
189 +</project>
190 +
191 +
192 +{{/code}}