Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The first step to enabling the tables feature is to set add the following to your maven settings file (<userhome>/.m2/settings.xml):.

The property 'org.sagebionetworks.table.enabled' must be set to true (see line 20 bellow).

Code Block
linenumberstrue
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                      http://maven.apache.org/xsd/settings-1.0.0.xsd">
    <localRepository />
    <interactiveMode />
    <usePluginRegistry />
    <offline />
    <pluginGroups />
    <mirrors />
    <proxies />
    <profiles>
        <profile>
            <id>dev-environment</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <properties>
				....
                <org.sagebionetworks.table.enabled>true</org.sagebionetworks.table.enabled>
            <				...
		 </properties>
        </profile>
    </profiles>
    <activeProfiles />
</settings>

...