Changes for page maven-wolifecycle-plugin
Last modified by Ulrich Köster on 2007/02/09 11:42
From version 43.1
edited by Henrique Prange
on 2006/10/20 14:44
on 2006/10/20 14:44
Change comment:
There is no comment for this version
To 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
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. hprange1 +XWiki.uli - Content
-
... ... @@ -2,27 +2,44 @@ 2 2 3 3 "maven-woproject-plugin" is a plug-in for development of WebObjects applications and frameworks in the context of Maven. 4 4 5 -== Goals==5 +== Lifecyle == 6 6 7 - === ##org.objectstyle.woproject.maven2:woproject:bootstrap## ===7 +Lifecyle for for WebObjects projects. 8 8 9 - Bootstrapgoalfor WebObjects projects.CopyallnecessaryWebObjectsjarsintolocal mavenrepository.9 +For the moment, this project is based on the existing ant stuff. 10 10 11 - Forthemoment,this goal onlyworksfor MacOS X and Windows.11 +=== Example WOFramework === 12 12 13 -This plug-inonlyrequiresto be executedonce.13 +This goal does need previous configuration. 14 14 15 - ===Example ===15 +From the pom.xml 16 16 17 - This goaldoesn'tneed any previous configuration. Just execute the following command:17 +{{code xml}} 18 18 19 -{{noformat}} 19 +<?xml version="1.0"?> 20 +<project> 21 + ... 22 + <packaging>woapplication</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 +{code} 20 20 21 - mvnwoproject:bootstrap40 +h3. Example WOApplication 22 22 23 - {{/noformat}}42 +This goal does need previous configuration. 24 24 25 -//TODO// (Maven 1 links) 26 - 27 -* [[Preparing the Project]] 28 -* [[Maven Goals]] 44 +From the pom.xm 45 +{{/code xml}}