Changes for page maven-wolifecycle-plugin

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

From version 17.1
edited by Ulrich Köster
on 2007/02/03 09:09
Change comment: There is no comment for this version
To version 25.1
edited by Ulrich Köster
on 2006/11/09 05:22
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -25,6 +25,7 @@
25 25   <plugin>
26 26   <groupId>org.objectstyle.woproject.maven2</groupId>
27 27   <artifactId>maven-wolifecycle-plugin</artifactId>
28 + <version>2.0-SNAPSHOT</version>
28 28   <extensions>true</extensions>
29 29   </plugin>
30 30   </plugins>
... ... @@ -52,6 +52,7 @@
52 52   <plugin>
53 53   <groupId>org.objectstyle.woproject.maven2</groupId>
54 54   <artifactId>maven-wolifecycle-plugin</artifactId>
56 + <version>2.0-SNAPSHOT</version>
55 55   <extensions>true</extensions>
56 56   </plugin>
57 57   </plugins>
... ... @@ -81,6 +81,7 @@
81 81   <plugin>
82 82   <groupId>org.objectstyle.woproject.maven2</groupId>
83 83   <artifactId>maven-wolifecycle-plugin</artifactId>
86 + <version>2.0-SNAPSHOT</version>
84 84   <extensions>true</extensions>
85 85   <configuration>
86 86   <readPatternsets>true</readPatternsets>
... ... @@ -116,6 +116,7 @@
116 116   <plugin>
117 117   <groupId>org.objectstyle.woproject.maven2</groupId>
118 118   <artifactId>maven-wolifecycle-plugin</artifactId>
122 + <version>2.0-SNAPSHOT</version>
119 119   <extensions>true</extensions>
120 120   </plugin>
121 121   </plugins>
... ... @@ -125,35 +125,3 @@
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}}