added stock_uri and fishery_uri as fields to be ignored

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-catalogue/grsf-publisher-ws@162113 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Costantino Perciante 2018-01-12 10:50:20 +00:00
parent badbf63b57
commit 61aee0d483
2 changed files with 8 additions and 1 deletions

View File

@ -6,6 +6,12 @@
<dependent-module archiveName="grsf-common-library-1.0.1-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/grsf-common-library/grsf-common-library">
<dependency-type>uses</dependency-type>
</dependent-module>
<dependent-module archiveName="home-library-jcr-2.11.3-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/HomeLibraryJCR/HomeLibraryJCR">
<dependency-type>uses</dependency-type>
</dependent-module>
<dependent-module archiveName="home-library-model-1.8.0-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/home-library-model/home-library-model">
<dependency-type>uses</dependency-type>
</dependent-module>
<property name="context-root" value="grsf-publisher-ws"/>
<property name="java-output-path" value="/grsf-publisher-ws/target/classes"/>
</wb-module>

View File

@ -24,7 +24,8 @@ import com.fasterxml.jackson.annotation.JsonProperty;
public class Base {
private static final List<String> FIELDS_TO_IGNORE = Arrays.asList(
Constants.AUTHOR, Constants.AUTHOR_CONTACT, Constants.SYSTEM_TYPE_CUSTOM_KEY, Constants.GRSF_TYPE_JSON_KEY);
Constants.AUTHOR, Constants.AUTHOR_CONTACT, Constants.SYSTEM_TYPE_CUSTOM_KEY, Constants.GRSF_TYPE_JSON_KEY,
Constants.FISHERY_URI, Constants.STOCK_URI);
private static Logger logger = LoggerFactory.getLogger(Base.class);