Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Minerva"

Line 2: Line 2:
  
 
= Building =
 
= Building =
 +
 +
To build the project from the command line, simply run
 +
 +
<pre style="width: 40em;">
 +
mvn -Dskip.ui.tests clean install
 +
</pre>
 +
 +
The parent pom.xml looks like this:
 +
<pre style="width: 40em;">
 +
...
 +
<groupId>org.aniszczyk.minerva</groupId>
 +
<artifactId>minerva-parent</artifactId>
 +
<version>1.0.0-SNAPSHOT</version>
 +
<packaging>pom</packaging>
 +
 +
<name>Minvera Parent</name>
 +
...
 +
</pre>
  
 
== Features ==
 
== Features ==

Revision as of 15:52, 3 March 2011

Minerva is the Maven version of Athena.

Building

To build the project from the command line, simply run

mvn -Dskip.ui.tests clean install

The parent pom.xml looks like this:

...
<groupId>org.aniszczyk.minerva</groupId>
<artifactId>minerva-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Minvera Parent</name>
...

Features

Plug-ins

Repositories (Update Sites)

Tests

TODO

Headless Tests

TODO

UI Tests

TODO

Documentation

TODO

Code Coverage

TODO

Signing

TODO

Publishing

TODO

Back to the top