You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2022/04/15 07:35:11 UTC

[isis] 02/02: updates README with details of the nightly build

This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git

commit 1367c3bf3c298f01bf455e9ce5bf512b811309f3
Author: Dan Haywood <da...@haywood-associates.co.uk>
AuthorDate: Fri Apr 15 08:35:02 2022 +0100

    updates README with details of the nightly build
---
 README.adoc                       | 49 ++++++++++++++++++++++++++++++++++++++-
 antora/supplemental-ui/index.html |  6 +----
 2 files changed, 49 insertions(+), 6 deletions(-)

diff --git a/README.adoc b/README.adoc
index 27c4e9f4a9..ccb3820676 100644
--- a/README.adoc
+++ b/README.adoc
@@ -15,10 +15,57 @@ Start learning about Apache Isis using the https://github.com/apache/isis-app-he
 Explore features with our daily built demo docker image https://github.com/apache/isis/blob/master/examples/demo/domain/src/main/adoc/modules/demo/pages/about.adoc["DemoApp"].
 Build your own apps using our https://github.com/apache/isis-app-simpleapp["SimpleApp"] starter app.
 
-For help and support, join our https://cwiki.apache.org/confluence/display/ISIS/Signing+up+to+Slack[Slack channel] or http://isis.apache.org/support.html[mailing list].
+For help and support, join our https://isis.apache.org/docs/2.0.0-M7/support/slack-channel.html[Slack channel] or https://isis.apache.org/docs/2.0.0-M7/support/mailing-list.html[mailing list].
 
 toc::[]
 
+== Nightly Builds
+
+Nightly builds are available as link:https://github.com/orgs/apache/packages?repo_name=isis[packages] of this repo.
+
+One way to make them available is to add the following to your `~/.m2/settings.xml` file.
+You will need to add a github token in the location indicated:
+
+[source,xml]
+.~/.m2/settings.xml
+----
+<settings>
+  <servers>
+    <server>
+      <id>github-apache-isis</id>
+      <username>myusername</username>                               <!--.-->
+      <password>ghp_TOKEN_WITH_PACKAGE_REPO_READ_ACCESS</password>  <!--.-->
+    </server>
+  </servers>
+  <profiles>
+    <profile>
+      <id>github-apache-isis</id>
+      <activation>
+        <property>
+          <name>!skip.github-apache-isis</name>
+        </property>
+      </activation>
+      <repositories>
+        <repository>
+          <id>github-apache-isis</id>
+          <url>https://maven.pkg.github.com/apache/isis</url>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
+      </repositories>
+    </profile>
+  </profiles>
+  <activeProfiles>
+    <activeProfile>github-apache-isis</activeProfile>
+  </activeProfiles>
+</settings>
+----
+<.> your github username.
+<.> a corresponding personal token to provide access, as per link:https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-apache-maven-registry#authenticating-to-github-packages[these docs].
+
+You can find the latest version by browsing the link:https://github.com/apache/isis/packages/1304938[org.apache.isis.core.isis-applib] package.
+
 == Core Features
 
 Apache Isis automatically generates the UI from the domain classes.
diff --git a/antora/supplemental-ui/index.html b/antora/supplemental-ui/index.html
index dedceb89a4..6a08523a89 100644
--- a/antora/supplemental-ui/index.html
+++ b/antora/supplemental-ui/index.html
@@ -50,15 +50,11 @@
       -->
     </div>
     <div class="social-links float-right">
-      <a href="https://lists.apache.org/list.html?users@isis.apache.org" class="email"><i class="fa fa-at"></i></a>
+      <a href="docs/latest/support/mailing-list.html" class="email"><i class="fa fa-at"></i></a>
       <a href="docs/latest/support/slack-channel.html" class="slack"><i class="fa fa-slack"></i></a>
       <a href="https://issues.apache.org/jira/secure/RapidBoard.jspa?rapidView=87" class="bug"><i class="fa fa-bug"></i></a>
       <a href="https://stackoverflow.com/questions/tagged/isis" class="stackoverflow"><i class="fa fa-stack-overflow"></i></a>
       <a href="https://twitter.com/ApacheIsis" class="twitter"><i class="fa fa-twitter"></i></a>
-      <!--
-              <a href="#" class="instagram"><i class="fa fa-instagram"></i></a>
-              <a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a>
-      -->
     </div>
   </div>
 </section>