Changes for page Packaging WO Applications as true WAR with Maven
Last modified by Ulrich Köster on 2009/08/02 20:26
To version 20.1
edited by Greg.Brown
on 2009/08/02 18:21
on 2009/08/02 18:21
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -97,10 +97,14 @@ 97 97 <targetPath>Resources</targetPath> 98 98 <directory>${basedir}/src/main/components</directory> 99 99 </resource> 100 + <resource> 101 + <targetPath>WebServerResources</targetPath> 102 + <directory>${basedir}/src/main/webserver-resources</directory> 103 + </resource> 100 100 {noformat} 101 101 to the pom.xml file, so your war will have no components; you should add these lines. 102 102 103 -Also, it does not add a necessary WebObjects 5.3 dependency: 107 +Also, it does not add a necessary WebObjects 5.3 dependency and, if using Wonder, the ERServlet.jar: 104 104 {noformat} 105 105 <dependency> 106 106 <groupId>${webobjects.groupId}</groupId> ... ... @@ -108,7 +108,11 @@ 108 108 </artifactId> 109 109 <version>${webobjects.version}</version> 110 110 </dependency> 111 - 115 + <dependency> 116 + <groupId>wonder.core</groupId> 117 + <artifactId>ERServlet</artifactId> 118 + <version>1.0</version> 119 + </dependency> 112 112 {noformat} 113 113 So, you may need to add that. 114 114