mirror of
https://github.com/apache/maven.git
synced 2025-02-12 04:55:38 +00:00
o add navigation.xml git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162627 13f79535-47bb-0310-9956-ffa450edef68
17 lines
393 B
Bash
Executable File
17 lines
393 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Generate the sources from the model
|
|
modello --model=maven.mdo --mode=java --dir=src/main/java
|
|
|
|
# Generate the source for the xpp3 marshaller and unmarshaller
|
|
modello --model=maven.mdo --mode=xpp3 --dir=src/main/java
|
|
|
|
# Build the sources
|
|
mboot
|
|
|
|
# Generate XML Schema
|
|
modello --model=maven.mdo --mode=xsd --dir=.
|
|
|
|
# Generate XDoc
|
|
modello --model=maven.mdo --mode=xdoc --dir=./xdocs
|