Changes for page maven-wolifecycle-plugin
Last modified by Ulrich Köster on 2007/02/09 11:42
From 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
To version 28.1
edited by Ulrich Köster
on 2006/11/09 05:23
on 2006/11/09 05:23
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -63,3 +63,71 @@ 63 63 </project> 64 64 65 65 {{/code}} 66 + 67 +=== Resources === 68 + 69 +Per default all resources under Resources and all webserver resources under WebServerResources are included. 70 + 71 +To include resources with existing patternset files: 72 + 73 +{{code}} 74 + 75 +<?xml version="1.0"?> 76 +<project> 77 + ... 78 + <packaging>woapplication</packaging> 79 + ... 80 + <build> 81 + ... 82 + <plugins> 83 + <plugin> 84 + <groupId>org.objectstyle.woproject.maven2</groupId> 85 + <artifactId>maven-wolifecycle-plugin</artifactId> 86 + <version>2.0-SNAPSHOT</version> 87 + <extensions>true</extensions> 88 +{color:red} 89 + <configuration> 90 + <readPatternsets>true</readPatternsets> 91 + </configuration> 92 +{color} 93 + </plugin> 94 + </plugins> 95 + ... 96 + </build> 97 +... 98 +</project> 99 + 100 +{{/code}} 101 + 102 +To include resources from a folder: 103 + 104 +{{code}} 105 + 106 +<?xml version="1.0"?> 107 +<project> 108 + ... 109 + <packaging>woapplication</packaging> 110 + ... 111 + <build> 112 + ... 113 + <resources> 114 + <resource> 115 + <directory> [your folder here] </directory> 116 + <targetPath> [either Resources or WebServerResources] </targetPath 117 + </resource> 118 + </resources> 119 +... 120 + <plugins> 121 + <plugin> 122 + <groupId>org.objectstyle.woproject.maven2</groupId> 123 + <artifactId>maven-wolifecycle-plugin</artifactId> 124 + <version>2.0-SNAPSHOT</version> 125 + <extensions>true</extensions> 126 + </plugin> 127 + </plugins> 128 + ... 129 + </build> 130 +... 131 +</project> 132 + 133 +{{/code}}