summaryrefslogtreecommitdiffstats
path: root/maven/trivial-test/README.txt
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-05-21 01:00:43 +0200
committerSven Gothel <[email protected]>2023-05-21 01:00:43 +0200
commit3745290a2e139b528bdc9137168d67d72aa4853b (patch)
treef8a7cbed322c88b96e7bf5ff2f5f9267041e3814 /maven/trivial-test/README.txt
parent473197df152f000211945d1e1c8e780eddda4cc7 (diff)
maven/trivial-test: Update pom.xml to use https (added note in README.txt) for 2.5.0-rc-20230521v2.5.0
Note: Maven version is 2.5.0-rc-20230521, but jar manifest version is 2.5.0-rc-20230520 due to 'day-leap'. Compare git-sha1 .. all good ;-) Refined README.txt TestJOGL prints the build-in manifest version of the jars.
Diffstat (limited to 'maven/trivial-test/README.txt')
-rw-r--r--maven/trivial-test/README.txt11
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.
+