Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Panel
borderColor#ccc
bgColor#FFFFCE
titleBGColor#F7D6C1
title2009 Bug Warning
borderStyledashed

It should be done, but...
The 2.0.17 archetype does not add :

No Format
			<resource>
				<targetPath>Resources</targetPath>
				<directory>${basedir}/src/main/components</directory>
			</resource>
			<resource>
				<targetPath>WebServerResources</targetPath>
				<directory>${basedir}/src/main/webserver-resources</directory>
			</resource>

to the pom.xml file, so your war will have no components; you should add these lines.

Also, it does not add a necessary WebObjects 5.3 dependency and, if using Wonder, the ERServlet.jar:

No Format
		<dependency>
			<groupId>${webobjects.groupId}</groupId>
			<artifactId>JavaWOJSPServlet_client
			</artifactId>
			<version>${webobjects.version}</version>
		</dependency>
			<dependency>
				<groupId>wonder.core</groupId>
				<artifactId>ERServlet</artifactId>
				<version>1.0</version>
			</dependency>

So, you may need to add that.

In addition, the archetype generated Info.plist needs fixing, as does the web.xml in the WEB-INF folder. There are values in these files like ${project.artifactId}, but for now, you must manually replace those values with actual values, e.g, MyProject.

These probably will be fixed in the next release of plugins, but for now, watch this space, as there may be additional
bugs posted here.

...