Set of Maven archetypes to create WebObjects-related projects.
Add the WOCommunity repository to your ~/.m2/settings.xml
file.
<profiles>
<profile>
<id>wocommunity</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>wocommunity</id>
<url>https://maven.wocommunity.org/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
* This step is not required if you use a repository manager that already points to the WOCommunity repository.
- Open the Eclipse preferences.
- Navigate to Maven > Archetypes section.
- Click Add Remote Catalog...
- Enter the catalog URL and description.
- Catalog File: https://maven.wocommunity.org/content/groups/public/archetype-catalog.xml
- Description: WOCommunity Catalog
Run the archetype generate goal to create a new WebObjects project from the command line using Maven:
$ mvn archetype:generate -Dfilter=org.wocommunity:
- Create a new project using the Eclipse wizard.
- Select the
Maven Project
option. - Select the WOCommunity Catalog from the catalog list.
- Choose the catalog according to the project type.
- Fill in the project information and finish.
Pull requests are welcome. For significant changes, please open an issue first to discuss what you would like to change.