Changes for page maven-wolifecycle-plugin
Last modified by Ulrich Köster on 2007/02/09 11:42
From version 38.1
edited by Ulrich Köster
on 2006/11/07 03:25
on 2006/11/07 03:25
Change comment:
There is no comment for this version
To version 32.1
edited by Ulrich Köster
on 2006/11/08 06:52
on 2006/11/08 06:52
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Title
-
... ... @@ -1,1 +1,1 @@ 1 -maven-wo project-plugin1 +maven-wolifecycle-plugin - Content
-
... ... @@ -1,17 +1,15 @@ 1 1 == Description == 2 2 3 -"maven-wo project-plugin" is a plug-in for development of WebObjects applications and frameworks in the context of Maven.3 +"maven-wolifecycle-plugin" is a plug-in for development of WebObjects applications and frameworks in the context of Maven. 4 4 5 5 == Lifecyle == 6 6 7 -Lifecyle forfor WebObjects projects.7 +Lifecyle maven plugin 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 17 {{code}} ... ... @@ -19,7 +19,7 @@ 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 ... ... ... @@ -26,7 +26,7 @@ 26 26 <plugins> 27 27 <plugin> 28 28 <groupId>org.objectstyle.woproject.maven2</groupId> 29 - <artifactId>maven-wo project-plugin</artifactId>27 + <artifactId>maven-wolifecycle-plugin</artifactId> 30 30 <version>2.0-SNAPSHOT</version> 31 31 <extensions>true</extensions> 32 32 </plugin> ... ... @@ -40,6 +40,28 @@ 40 40 41 41 === Example WOApplication === 42 42 43 -This goal does need previous configuration. 44 - 45 45 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-wolifecycle-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}}