Wiki source code of maven-woproject-plugin
Version 38.1 by Ulrich Köster on 2006/11/07 03:25
Hide last authors
| author | version | line-number | content |
|---|---|---|---|
| |
25.1 | 1 | == Description == |
| |
16.1 | 2 | |
| |
33.1 | 3 | "maven-woproject-plugin" is a plug-in for development of WebObjects applications and frameworks in the context of Maven. |
| |
25.1 | 4 | |
| 5 | == Lifecyle == | ||
| 6 | |||
| |
35.1 | 7 | Lifecyle for for WebObjects projects. |
| |
25.1 | 8 | |
| |
35.1 | 9 | For the moment, this project is based on the existing ant stuff. |
| |
25.1 | 10 | |
| 11 | === Example WOFramework === | ||
| 12 | |||
| |
35.1 | 13 | This goal does need previous configuration. |
| 14 | |||
| |
25.1 | 15 | From the pom.xml |
| 16 | |||
| 17 | {{code}} | ||
| 18 | |||
| 19 | <?xml version="1.0"?> | ||
| 20 | <project> | ||
| 21 | ... | ||
| |
37.1 | 22 | <packaging>woapplication</packaging> |
| |
25.1 | 23 | ... |
| 24 | <build> | ||
| 25 | ... | ||
| 26 | <plugins> | ||
| 27 | <plugin> | ||
| 28 | <groupId>org.objectstyle.woproject.maven2</groupId> | ||
| |
33.1 | 29 | <artifactId>maven-woproject-plugin</artifactId> |
| |
25.1 | 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 | |||
| |
35.1 | 43 | This goal does need previous configuration. |
| 44 | |||
| |
25.1 | 45 | From the pom.xml |