diff options
Diffstat (limited to 'maven/trivial-test/README.txt')
-rw-r--r-- | maven/trivial-test/README.txt | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/maven/trivial-test/README.txt b/maven/trivial-test/README.txt index fdc4b3f..3914c5c 100644 --- a/maven/trivial-test/README.txt +++ b/maven/trivial-test/README.txt @@ -1,5 +1,8 @@ +Note: This sub-project's pom.xml file already includes the +below general setting for 'jogamp-remote'. + 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: +needs to be told to look at https://www.jogamp.org. Edit ~/.m2/settings.xml: <settings> <profiles> @@ -13,7 +16,7 @@ needs to be told to look at http://www.jogamp.org. Edit ~/.m2/settings.xml: <repository> <id>jogamp-remote</id> <name>jogamp test mirror</name> - <url>http://www.jogamp.org/deployment/maven/</url> + <url>https://www.jogamp.org/deployment/maven/</url> <layout>default</layout> </repository> </repositories> @@ -23,9 +26,11 @@ needs to be told to look at http://www.jogamp.org. Edit ~/.m2/settings.xml: Then, run: - $ mvn clean test + $ mvn -U 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. +The '-U' option somewhat was required to force an update. + |