Mavenized: please read MAVENIZATION-README #6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The mavenization process has kept the overal contents.
It has changed directory structure in accordance to the maven standards.
Besides, some ant task have been replaced by maven goals.
For instance:
build: instead of "ant"
mvn install
o better
mvn clean install
it will create target/frej-1.158.jar
clean:
mvn clean
javadoc: instead of "ant doc" you must use:
mvn javadoc:javadoc
it creates api javadoc under target/apidocs
mvn javadoc:jar
it creates a jar archive, e.g. target/frej-1.1.58-javadoc.jar, containing the html pages
all: instead of "ant all"
mvn install
it will create both target/frej-1.1.58-javadoc.jar and target/frej-1.1.58.jar
demo:
mvn install -Pdemo
it behaves like the previous 'mvn jar' but this time the target/frej-1.1.58.jar
will contain the applet code and the test.html too