This server is available as a Docker image in a Docker registry at the Linux Foundation.
The image name is "federation-gateway" and the tag is a version string as shown below.
-Version 2.0.1, 2019-02-22
+Version 2.0.1, 2019-02-25
-------------------------
* Add catalogId field in solution search selector (`ACUMOS-2285 <https://jira.acumos.org/browse/ACUMOS-2285>`_)
* Normalize configured Nexus URL to have exactly one trailing slash (`ACUMOS-2554 <https://jira.acumos.org/browse/ACUMOS-2554>`_)
+* Allow server to run as unprivileged user (`ACUMOS-2551 <https://jira.acumos.org/browse/ACUMOS-2551>`_)
Version 2.0.0, 2019-02-20
-------------------------
<?xml version="1.0"?>
- <!--
+ <!--<![CDATA[
===============LICENSE_START=======================================================
Acumos
===================================================================================
See the License for the specific language governing permissions and
limitations under the License.
===============LICENSE_END=========================================================
- -->
+ ]]>-->
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
</files>
</inline>
</assembly>
+ <runCmds>
+ <!-- Ensure logs dir exists and is world writable -->
+ <runCmd>mkdir /maven/logs</runCmd>
+ <runCmd>chmod -R 777 /maven</runCmd>
+ </runCmds>
<!-- This is the same CMD used in a Dockerfile -->
<cmd>
<!-- CDATA prevents Eclipse formatter from breaking line -->
</fileSets>
</inline>
</assembly>
+ <runCmds>
+ <!-- Ensure logs dir exists and is world writable -->
+ <runCmd>mkdir /maven/logs</runCmd>
+ <runCmd>chmod -R 777 /maven</runCmd>
+ </runCmds>
<cmd>
<!-- CDATA prevents Eclipse formatter from breaking line -->
<shell><![CDATA[cd /maven; java -Xms256m -Xmx2g -cp ${project.artifactId}-${project.version}.${project.packaging}.original:${project.artifactId}-${project.version}-tests.${project.packaging}:/libs/* -Djava.security.egd=file:/dev/./urandom org.springframework.boot.loader.PropertiesLauncher]]></shell>