Changes for page maven-wolifecycle-plugin
Last modified by Ulrich Köster on 2007/02/09 11:42
From version 20.1
edited by Ulrich Köster
on 2007/02/09 07:28
on 2007/02/09 07:28
Change comment:
There is no comment for this version
To version 21.1
edited by Ulrich Köster
on 2007/02/03 09:09
on 2007/02/03 09:09
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
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' 133 +To include them change your pom to set the 'includeJavaClientClassesInWebServerResources'property to true. 134 134 135 135 {{code}} 136 136 ... ... @@ -159,36 +159,3 @@ 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 -(since 2.0.4) 168 - 169 -{{code}} 170 - 171 -<?xml version="1.0"?> 172 -<project> 173 - ... 174 - <packaging>woapplication</packaging> 175 - ... 176 - 177 -<build> 178 - ........ 179 - <plugins> 180 - <plugin> 181 - <groupId>org.objectstyle.woproject.maven2</groupId> 182 - <artifactId>maven-wolifecycle-plugin</artifactId> 183 - <extensions>true</extensions> 184 - <configuration> 185 - < includeAppleProvidedFrameworks >false</includeAppleProvidedFrameworks > 186 - </configuration> 187 - </plugin> 188 - </plugins> 189 - </build> 190 -... 191 -</project> 192 - 193 - 194 -{{/code}}