Changes for page maven-wolifecycle-plugin
Last modified by Ulrich Köster on 2007/02/09 11:42
From version 23.1
edited by Andrus Adamchik
on 2006/09/30 18:49
on 2006/09/30 18:49
Change comment:
There is no comment for this version
To version 35.1
edited by Ulrich Köster
on 2006/11/07 03:26
on 2006/11/07 03:26
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. andrus1 +XWiki.uli - Content
-
... ... @@ -1,4 +1,69 @@ 1 - //TODO//1 +== Description == 2 2 3 -* [[Preparing the Project]] 4 -* [[Maven Goals]] 3 +"maven-woproject-plugin" is a plug-in for development of WebObjects applications and frameworks in the context of Maven. 4 + 5 +== Lifecyle == 6 + 7 +Lifecyle for for WebObjects projects. 8 + 9 +For the moment, this project is based on the existing ant stuff. 10 + 11 +=== Example WOFramework === 12 + 13 +This goal does need previous configuration. 14 + 15 +From the pom.xml 16 + 17 +{{code}} 18 + 19 +<?xml version="1.0"?> 20 +<project> 21 + ... 22 + <packaging>woframework</packaging> 23 + ... 24 + <build> 25 + ... 26 + <plugins> 27 + <plugin> 28 + <groupId>org.objectstyle.woproject.maven2</groupId> 29 + <artifactId>maven-woproject-plugin</artifactId> 30 + <version>2.0-SNAPSHOT</version> 31 + <extensions>true</extensions> 32 + </plugin> 33 + </plugins> 34 + ... 35 + </build> 36 +... 37 +</project> 38 + 39 +{{/code}} 40 + 41 +=== Example WOApplication === 42 + 43 +This goal does need previous configuration. 44 + 45 +From the pom.xml 46 + 47 +{{code}} 48 + 49 +<?xml version="1.0"?> 50 +<project> 51 + ... 52 + <packaging>woapplication</packaging> 53 + ... 54 + <build> 55 + ... 56 + <plugins> 57 + <plugin> 58 + <groupId>org.objectstyle.woproject.maven2</groupId> 59 + <artifactId>maven-woproject-plugin</artifactId> 60 + <version>2.0-SNAPSHOT</version> 61 + <extensions>true</extensions> 62 + </plugin> 63 + </plugins> 64 + ... 65 + </build> 66 +... 67 +</project> 68 + 69 +{{/code}}