The tables features is disabled by default for repository services developers. The following outlines the steps need to enable this feature for development work.
Maven Settings
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).
<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>