Changes for page maven-wolifecycle-plugin
Last modified by Ulrich Köster on 2007/02/09 11:42
From version 40.1
edited by Ulrich Köster
on 2006/11/07 03:24
on 2006/11/07 03:24
Change comment:
There is no comment for this version
To version 34.1
edited by Ulrich Köster
on 2006/11/07 03:27
on 2006/11/07 03:27
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -4,22 +4,20 @@ 4 4 5 5 == Lifecyle == 6 6 7 -Lifecyle for for WebObjects projects. 7 +Lifecyle replacement maben plugin for for WebObjects projects. 8 8 9 -For the moment, this project is based on the existing ant stuff. 9 +For the moment, this project is based on the existing ant stuff. This plugin does need configuration. 10 10 11 11 === Example WOFramework === 12 12 13 -This goal does need previous configuration. 14 - 15 15 From the pom.xml 16 16 17 -{{code xml}}15 +{{code}} 18 18 19 19 <?xml version="1.0"?> 20 20 <project> 21 21 ... 22 - <packaging>woa pplication</packaging>20 + <packaging>woframework</packaging> 23 23 ... 24 24 <build> 25 25 ... ... ... @@ -35,11 +35,33 @@ 35 35 </build> 36 36 ... 37 37 </project> 38 -{code} 39 39 40 - h3. Example WOApplication37 +{{/code}} 41 41 42 - Thisgoaldoesneedpreviousconfiguration.39 +=== Example WOApplication === 43 43 44 -From the pom.xm 45 -{{/code xml}} 41 +From the pom.xml 42 + 43 +{{code}} 44 + 45 +<?xml version="1.0"?> 46 +<project> 47 + ... 48 + <packaging>woapplication</packaging> 49 + ... 50 + <build> 51 + ... 52 + <plugins> 53 + <plugin> 54 + <groupId>org.objectstyle.woproject.maven2</groupId> 55 + <artifactId>maven-woproject-plugin</artifactId> 56 + <version>2.0-SNAPSHOT</version> 57 + <extensions>true</extensions> 58 + </plugin> 59 + </plugins> 60 + ... 61 + </build> 62 +... 63 +</project> 64 + 65 +{{/code}}