NIH | National Cancer Institute | NCI Wiki  

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Wiki Markup
{scrollbar:icons=false}
Panel
titleContents of this Page
Table of Contents
minLevel2

...

The following maven options will need to be set to set the correct https protocols.  This can be done with the following command:

Code Block
titlemaven optsMAVEN OPTS
export MAVEN_OPTS="-Dhttps.protocols=TLSv1.1,TLSv1.2 -Dforce.http.jre.executor=true -Xmx3072m -XX:MaxPermSize=752m"

...

Code Block
titlesettings.xml
    <settings>
      
      <mirrors>
        <mirror>
          <id>edu.informatics.maven.thirdparty.mirror</id>
          <name>NCI Maven 3rd Party Repository - MIRROR</name>
          <url>https://ncimvn.nci.nih.gov/nexus/content/repositories/LexEVS3rdParty</url>
          <mirrorOf>edu.informatics.maven.thirdparty</mirrorOf>
        </mirror>
        <mirror>
          <id>edu.informatics.maven.releases.mirror</id>
          <name>NCI Maven Releases Repository- MIRROR</name>
          <url>https://ncimvn.nci.nih.gov/nexus/content/repositories/LexEVSRelease</url>
          <mirrorOf>edu.informatics.maven.releases</mirrorOf>
        </mirror>
        <mirror>
          <id>edu.informatics.maven.snapshot.mirror</id>
          <name>NCI Maven snapshot - MIRROR</name>
          <url>https://ncimvn.nci.nih.gov/nexus/content/repositories/LexEVSSnapshots</url>
          <mirrorOf>edu.informatics.maven.snapshot</mirrorOf>
        </mirror>
      </mirrors>
      
    </settings>

Ant Builds

The following projects are ant projects:

...

There is no workaround to build the existing 6.4.1 ant projects to point to the new NCI Nexus server without modifying the existing ivysettings.xml for each project.

Future Builds

All future build of the lexevs projects (after version 6.4.1) will point to the NCI Nexus server.

Ant Builds

Future ant builds will require the following ANT_OPTS to allow https protocols to work.

Code Block

...

title

 

...

ANT OPTS
export ANT_OPTS="-Dhttps.protocols=TLSv1.1,TLSv1.2 -Dforce.http.jre.executor=true -Xmx3072m -XX:MaxPermSize=752m"

Maven Builds

Future maven builds will also need maven options to be set to set the correct https protocols.  
See the MAVEN_OPTS export command above.