Changes for page Packaging WO Applications as true WAR with Maven
Last modified by Ulrich Köster on 2009/08/02 20:26
From 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,14 +97,10 @@ 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> 104 104 {noformat} 105 105 to the pom.xml file, so your war will have no components; you should add these lines. 106 106 107 -Also, it does not add a necessary WebObjects 5.3 dependency and, if using Wonder, the ERServlet.jar:103 +Also, it does not add a necessary WebObjects 5.3 dependency: 108 108 {noformat} 109 109 <dependency> 110 110 <groupId>${webobjects.groupId}</groupId> ... ... @@ -112,11 +112,7 @@ 112 112 </artifactId> 113 113 <version>${webobjects.version}</version> 114 114 </dependency> 115 - <dependency> 116 - <groupId>wonder.core</groupId> 117 - <artifactId>ERServlet</artifactId> 118 - <version>1.0</version> 119 - </dependency> 111 + 120 120 {noformat} 121 121 So, you may need to add that. 122 122