diff options
Diffstat (limited to 'maven/trivial-test/README.txt')
-rw-r--r-- | maven/trivial-test/README.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/maven/trivial-test/README.txt b/maven/trivial-test/README.txt new file mode 100644 index 0000000..fdc4b3f --- /dev/null +++ b/maven/trivial-test/README.txt @@ -0,0 +1,31 @@ +First, because the project isn't in the Central Repository yet, Maven +needs to be told to look at http://www.jogamp.org. Edit ~/.m2/settings.xml: + +<settings> + <profiles> + <profile> + <id>jogamp</id> + <activation> + <!-- Change this to false, if you don't like to have it on by default --> + <activeByDefault>true</activeByDefault> + </activation> + <repositories> + <repository> + <id>jogamp-remote</id> + <name>jogamp test mirror</name> + <url>http://www.jogamp.org/deployment/maven/</url> + <layout>default</layout> + </repository> + </repositories> + </profile> + </profiles> +</settings> + +Then, run: + + $ mvn clean test + +It should download all of the required packages (which may be quite a few +if you've not run Maven before) and then compile and run the included test +program. + |