Modified: stanbol/trunk/commons/web/home/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/commons/web/home/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/commons/web/home/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/commons/web/home/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -13,16 +13,11 @@ # - GNU Lesser General Public License (LGPL), Version 2.1 # - ICU License # - MIT License -# - New BSD License # - Public Domain License -# - Similar to Apache License but with the acknowledgment clause removed #------------------------------------------------------------------------------- # Please fill the missing licenses for dependencies : # # -#Fri Mar 22 11:51:15 CET 2013 +#Mon Sep 05 12:38:19 CEST 2016 javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.codehaus.jettison--jettison--1.3=The Apache Software License, Version 2.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 xerces--xercesImpl--2.7.1=The Apache Software License, Version 2.0
Modified: stanbol/trunk/commons/web/resources/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/commons/web/resources/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/commons/web/resources/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/commons/web/resources/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -17,7 +17,5 @@ # Please fill the missing licenses for dependencies : # # -#Thu Dec 13 13:47:44 CET 2012 +#Mon Sep 05 12:47:02 CEST 2016 javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 Modified: stanbol/trunk/commons/web/sparql/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/commons/web/sparql/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/commons/web/sparql/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/commons/web/sparql/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -13,17 +13,10 @@ # - GNU Lesser General Public License (LGPL), Version 2.1 # - ICU License # - MIT License -# - New BSD License # - Public Domain License -# - Similar to Apache License but with the acknowledgment clause removed #------------------------------------------------------------------------------- # Please fill the missing licenses for dependencies : # # -#Thu Dec 13 13:45:31 CET 2012 -asm--asm--3.1=BSD License -javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.codehaus.jettison--jettison--1.3=The Apache Software License, Version 2.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 +#Mon Sep 05 12:47:09 CEST 2016 xerces--xercesImpl--2.7.1=The Apache Software License, Version 2.0 Modified: stanbol/trunk/commons/web/sparql/src/main/java/org/apache/stanbol/commons/web/sparql/resource/SparqlEndpointResource.java URL: http://svn.apache.org/viewvc/stanbol/trunk/commons/web/sparql/src/main/java/org/apache/stanbol/commons/web/sparql/resource/SparqlEndpointResource.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/commons/web/sparql/src/main/java/org/apache/stanbol/commons/web/sparql/resource/SparqlEndpointResource.java (original) +++ stanbol/trunk/commons/web/sparql/src/main/java/org/apache/stanbol/commons/web/sparql/resource/SparqlEndpointResource.java Tue Sep 6 15:18:50 2016 @@ -56,14 +56,12 @@ import org.osgi.framework.ServiceReferen * {@link Graph} s registered to OSGi environment. To be able to execute SPARQL queries on triple * collections, they should be registered to the OSGi environment with the following parameters: * - * <p> * <ul> * <li>graph.uri <b>(required)</b> : The URI of the graph. This is the same as used with the TcManager</li> * <li>service.ranking: If this parameter is not specified, "0" will be used as default value.</li> * <li>graph.name: The name of the graph. Human readable name intended to be used in the UI</li> * <li>graph.description: human readable description providing additional information about the RDF graph</li> * </ul> - * </p> * * <p> * If a uri is not specified, the graph having highest service.ranking value will be chosen. @@ -111,7 +109,10 @@ public class SparqlEndpointResource exte * the URI of the graph on which the SPARQL query will be executed. * @param sparqlQuery * SPARQL query to be executed - * @return + * @param headers + * HTTP request Headers + * @throws InvalidSyntaxException Invalid SPARQL Syntax Exception + * @return Http Response */ @GET @Consumes(APPLICATION_FORM_URLENCODED) @@ -150,6 +151,15 @@ public class SparqlEndpointResource exte /** * HTTP GET service to execute SPARQL queries on {@link Graph}s registered to OSGi environment. * For details, see {@link #sparql(String, String, HttpHeaders)} + * + * @param graphUri + * the URI of the graph on which the SPARQL query will be executed. + * @param sparqlQuery + * SPARQL query to be executed + * @param headers + * HTTP request Headers + * @throws InvalidSyntaxException Invalid SPARQL Syntax Exception + * @return Http Response */ @POST @Consumes(APPLICATION_FORM_URLENCODED) Modified: stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/viewable/RdfViewable.java URL: http://svn.apache.org/viewvc/stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/viewable/RdfViewable.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/viewable/RdfViewable.java (original) +++ stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/viewable/RdfViewable.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package org.apache.stanbol.commons.viewable; import org.apache.clerezza.rdf.utils.GraphNode; @@ -19,11 +36,6 @@ public class RdfViewable extends org.apa super(templatePath,graphNode); } - /** - * With this version of the constructor the templatePath is prefixed with - * the slash-separated package name of the given Class. - * - */ public RdfViewable(final String templatePath, final GraphNode graphNode, final Class<?> clazz) { super(templatePath,graphNode,clazz); } Modified: stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/viewable/Viewable.java URL: http://svn.apache.org/viewvc/stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/viewable/Viewable.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/viewable/Viewable.java (original) +++ stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/viewable/Viewable.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package org.apache.stanbol.commons.viewable; /** * This is a replacement for the jersey Vieable that allows rendering an @@ -16,21 +33,10 @@ package org.apache.stanbol.commons.viewa @Deprecated public class Viewable extends org.apache.stanbol.commons.web.viewable.Viewable { - /** - * This uses the class name of Pojo to prefix the template - * - * @param templatePath the templatePath - * @param graphNode the graphNode with the actual content - */ public Viewable(String templatePath, Object pojo) { super(templatePath, pojo); } - /** - * With this version of the constructor the templatePath is prefixed with - * the slash-separated class name of clazz. - * - */ public Viewable(final String templatePath, final Object pojo, final Class<?> clazz) { super(templatePath, pojo, clazz); } Modified: stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/web/viewable/RdfViewable.java URL: http://svn.apache.org/viewvc/stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/web/viewable/RdfViewable.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/web/viewable/RdfViewable.java (original) +++ stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/web/viewable/RdfViewable.java Tue Sep 6 15:18:50 2016 @@ -41,6 +41,10 @@ public class RdfViewable { * With this version of the constructor the rendering specification is prefixed with * the slash-separated package name of the given Class. * + * @param renderingSpecification the rendering specification + * @param graphNode the graphNode with the actual content + * @param clazz class which package name will be used as prefix + * */ public RdfViewable(final String renderingSpecification, final GraphNode graphNode, final Class<?> clazz) { final String slahSeparatedPacakgeName = clazz.getPackage().getName().replace('.', '/'); Modified: stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/web/viewable/Viewable.java URL: http://svn.apache.org/viewvc/stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/web/viewable/Viewable.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/web/viewable/Viewable.java (original) +++ stanbol/trunk/commons/web/viewable/src/main/java/org/apache/stanbol/commons/web/viewable/Viewable.java Tue Sep 6 15:18:50 2016 @@ -37,7 +37,7 @@ public class Viewable { * This uses the class name of Pojo to prefix the template * * @param templatePath the templatePath - * @param graphNode the graphNode with the actual content + * @param pojo the graphNode with the actual content */ public Viewable(final String templatePath, final Object pojo) { this(templatePath, pojo, null); @@ -46,6 +46,10 @@ public class Viewable { /** * With this version of the constructor the templatePath is prefixed with * the slash-separated class name of clazz. + * + * @param templatePath the templatePath + * @param pojo the graphNode with the actual content + * @param clazz class which package name will be used as prefix * */ public Viewable(final String templatePath, final Object pojo, final Class<?> clazz) { Modified: stanbol/trunk/conventions/stanbol-eclipse-codeformatter.xml URL: http://svn.apache.org/viewvc/stanbol/trunk/conventions/stanbol-eclipse-codeformatter.xml?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/conventions/stanbol-eclipse-codeformatter.xml (original) +++ stanbol/trunk/conventions/stanbol-eclipse-codeformatter.xml Tue Sep 6 15:18:50 2016 @@ -1,4 +1,21 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + <profiles version="11"> <profile kind="CodeFormatterProfile" name="Stanbol" version="11"> <setting id="org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags" value="insert"/> Modified: stanbol/trunk/data/defaultconfig/pom.xml URL: http://svn.apache.org/viewvc/stanbol/trunk/data/defaultconfig/pom.xml?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/data/defaultconfig/pom.xml (original) +++ stanbol/trunk/data/defaultconfig/pom.xml Tue Sep 6 15:18:50 2016 @@ -57,15 +57,8 @@ <configuration> <excludes> <!-- AL20 licensed files. See src/main/resources/README --> - <exclude>src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-language.config</exclude> - <exclude>src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-default.config</exclude> - <exclude>src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-dbpediapropernoun.config</exclude> - <exclude>src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-dbpediadisambiguation.config</exclude> - <exclude>src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-dbpedia_fst.config</exclude> - <exclude>src/main/resources/config/org.apache.stanbol.enhancer.engines.entityhublinking.EntityhubLinkingEngine-entityhub.config</exclude> - <exclude>src/main/resources/config/org.apache.stanbol.enhancer.engines.entityhublinking.EntityhubLinkingEngine-dbpedia.config</exclude> - <exclude>src/main/resources/config/org.apache.stanbol.enhancer.engines.entityhublinking.EntityhubLinkingEngine-dbpediadisamblinking.config</exclude> - <exclude>src/main/resources/config/org.apache.stanbol.enhancer.engines.lucenefstlinking.FstLinkingEngineComponent-dbpedia_fst.config</exclude> + <exclude>**/*.config</exclude> + <exclude>**/*.properties</exclude> </excludes> </configuration> </plugin> Modified: stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.allactive.impl.DefaultChain.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.allactive.impl.DefaultChain.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.allactive.impl.DefaultChain.properties (original) +++ stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.allactive.impl.DefaultChain.properties Tue Sep 6 15:18:50 2016 @@ -1,21 +1,3 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# Ensures that the DefaultChain (includeing all active EnhancementEngines) -# is registered with the name "all-active" - stanbol.enhancer.chain.default.enabled=true stanbol.enhancer.chain.default.name=all-active -service.ranking=0 \ No newline at end of file +service.ranking=0 Modified: stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-dbpedia_fst.config URL: http://svn.apache.org/viewvc/stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-dbpedia_fst.config?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-dbpedia_fst.config (original) +++ stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-dbpedia_fst.config Tue Sep 6 15:18:50 2016 @@ -1,3 +1,3 @@ stanbol.enhancer.chain.name="dbpedia-fst-linking" stanbol.enhancer.chain.weighted.chain=["tika;optional","langdetect","opennlp-sentence","opennlp-token","opennlp-pos","opennlp-chunker","dbpedia-fst","dbpedia-dereference"] -service.ranking=I"0" \ No newline at end of file +service.ranking=I"0" Modified: stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-dbpediapropernoun.config URL: http://svn.apache.org/viewvc/stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-dbpediapropernoun.config?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-dbpediapropernoun.config (original) +++ stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-dbpediapropernoun.config Tue Sep 6 15:18:50 2016 @@ -1,2 +1,2 @@ stanbol.enhancer.chain.name="dbpedia-proper-noun" -stanbol.enhancer.chain.weighted.chain=["tika;optional","langdetect","opennlp-sentence","opennlp-token","opennlp-pos","opennlp-chunker","dbpedia-proper-noun-extraction","dbpedia-dereference"] \ No newline at end of file +stanbol.enhancer.chain.weighted.chain=["tika;optional","langdetect","opennlp-sentence","opennlp-token","opennlp-pos","opennlp-chunker","dbpedia-proper-noun-extraction","dbpedia-dereference"] Modified: stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-default.config URL: http://svn.apache.org/viewvc/stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-default.config?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-default.config (original) +++ stanbol/trunk/data/defaultconfig/src/main/resources/config/org.apache.stanbol.enhancer.chain.weighted.impl.WeightedChain-default.config Tue Sep 6 15:18:50 2016 @@ -1,3 +1,3 @@ stanbol.enhancer.chain.name="default" stanbol.enhancer.chain.weighted.chain=["tika;optional","langdetect","opennlp-sentence","opennlp-token","opennlp-pos","opennlp-ner","dbpediaLinking","entityhubExtraction","dbpedia-dereference"] -service.ranking=I"-2147483648" \ No newline at end of file +service.ranking=I"-2147483648" Modified: stanbol/trunk/data/pom.xml URL: http://svn.apache.org/viewvc/stanbol/trunk/data/pom.xml?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/data/pom.xml (original) +++ stanbol/trunk/data/pom.xml Tue Sep 6 15:18:50 2016 @@ -122,6 +122,7 @@ <!-- exclude certain file types --> <exclude>**/*.config</exclude> <exclude>**/*.ref</exclude> + <exclude>**/*.properties</exclude> </excludes> </configuration> </plugin> Modified: stanbol/trunk/data/sites/entity-coref-dbpedia/dbpedia_yago_classes/build_yago_dbpedia_labels.sh URL: http://svn.apache.org/viewvc/stanbol/trunk/data/sites/entity-coref-dbpedia/dbpedia_yago_classes/build_yago_dbpedia_labels.sh?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/data/sites/entity-coref-dbpedia/dbpedia_yago_classes/build_yago_dbpedia_labels.sh (original) +++ stanbol/trunk/data/sites/entity-coref-dbpedia/dbpedia_yago_classes/build_yago_dbpedia_labels.sh Tue Sep 6 15:18:50 2016 @@ -1,3 +1,18 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + #!/usr/bin/env bash YAGO=http://resources.mpi-inf.mpg.de/yago-naga/yago/download/yago/ @@ -68,4 +83,4 @@ bzip2 ${DBPEDIA_YAGO_CLASS_LABELS_NT} rm ${YAGO_LABELS} rm ${YAGO_DBPEDIA_CLASSES} rm ${YAGO_WORDNET_LABELS} -rm ${YAGO_WORDNET_DBPEDIA_CLASSES} \ No newline at end of file +rm ${YAGO_WORDNET_DBPEDIA_CLASSES} Modified: stanbol/trunk/enhancement-engines/celi/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/celi/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/celi/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/celi/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -7,19 +7,19 @@ # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 # - Common Public License, Version 1.0 +# - Eclipse Public License 1.0 # - Eclipse Public License, Version 1.0 # - GNU General Public License (GPL), Version 2 with classpath exception # - GNU Lesser General Public License (LGPL) # - GNU Lesser General Public License (LGPL), Version 2.1 # - ICU License # - MIT License +# - New BSD License # - Public Domain License #------------------------------------------------------------------------------- # Please fill the missing licenses for dependencies : # # -#Sun Oct 07 18:27:20 CEST 2012 +#Tue Sep 06 13:34:49 CEST 2016 javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 xerces--xercesImpl--2.7.1=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/dbpedia-spotlight/src/test/java/org/apache/stanbol/enhancer/engines/dbpspotlight/TestDefaults.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/dbpedia-spotlight/src/test/java/org/apache/stanbol/enhancer/engines/dbpspotlight/TestDefaults.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/dbpedia-spotlight/src/test/java/org/apache/stanbol/enhancer/engines/dbpspotlight/TestDefaults.java (original) +++ stanbol/trunk/enhancement-engines/dbpedia-spotlight/src/test/java/org/apache/stanbol/enhancer/engines/dbpspotlight/TestDefaults.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.dbpspotlight; public interface TestDefaults { Modified: stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceConfigurationException.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceConfigurationException.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceConfigurationException.java (original) +++ stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceConfigurationException.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.dereference; /** Modified: stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceContext.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceContext.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceContext.java (original) +++ stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceContext.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.dereference; import static org.apache.stanbol.enhancer.engines.dereference.DereferenceConstants.DEREFERENCE_ENTITIES_LANGUAGES; Modified: stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceContextFactory.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceContextFactory.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceContextFactory.java (original) +++ stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceContextFactory.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.dereference; import java.util.Map; Modified: stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceEngineConfig.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceEngineConfig.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceEngineConfig.java (original) +++ stanbol/trunk/enhancement-engines/dereference/core/src/main/java/org/apache/stanbol/enhancer/engines/dereference/DereferenceEngineConfig.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.dereference; import static org.apache.stanbol.enhancer.engines.dereference.DereferenceConstants.NO_LANGUAGE_KEY; Modified: stanbol/trunk/enhancement-engines/dereference/entityhub/src/main/java/org/apache/stanbol/enhancer/engines/dereference/entityhub/EntityhubDereferenceContext.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/dereference/entityhub/src/main/java/org/apache/stanbol/enhancer/engines/dereference/entityhub/EntityhubDereferenceContext.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/dereference/entityhub/src/main/java/org/apache/stanbol/enhancer/engines/dereference/entityhub/EntityhubDereferenceContext.java (original) +++ stanbol/trunk/enhancement-engines/dereference/entityhub/src/main/java/org/apache/stanbol/enhancer/engines/dereference/entityhub/EntityhubDereferenceContext.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.dereference.entityhub; import static org.apache.stanbol.enhancer.engines.dereference.DereferenceConstants.DEREFERENCE_ENTITIES_LDPATH; Modified: stanbol/trunk/enhancement-engines/dereference/entityhub/src/main/java/org/apache/stanbol/enhancer/engines/dereference/entityhub/ParseBackend.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/dereference/entityhub/src/main/java/org/apache/stanbol/enhancer/engines/dereference/entityhub/ParseBackend.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/dereference/entityhub/src/main/java/org/apache/stanbol/enhancer/engines/dereference/entityhub/ParseBackend.java (original) +++ stanbol/trunk/enhancement-engines/dereference/entityhub/src/main/java/org/apache/stanbol/enhancer/engines/dereference/entityhub/ParseBackend.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.dereference.entityhub; import org.apache.stanbol.entityhub.ldpath.backend.AbstractBackend; @@ -40,4 +57,4 @@ final class ParseBackend<T> extends Abst protected FieldQuery createQuery() { throw new UnsupportedOperationException("Not expected to be called"); } -} \ No newline at end of file +} Modified: stanbol/trunk/enhancement-engines/entitycoreference/pom.xml URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/entitycoreference/pom.xml?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/entitycoreference/pom.xml (original) +++ stanbol/trunk/enhancement-engines/entitycoreference/pom.xml Tue Sep 6 15:18:50 2016 @@ -81,6 +81,15 @@ <target>1.7</target> </configuration> </plugin> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes> + <exclude>src/main/resources/data/place_adjectivals/en</exclude> + </excludes> + </configuration> + </plugin> </plugins> </build> Modified: stanbol/trunk/enhancement-engines/entitycoreference/src/main/resources/config/pos/en.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/entitycoreference/src/main/resources/config/pos/en.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/entitycoreference/src/main/resources/config/pos/en.properties (original) +++ stanbol/trunk/enhancement-engines/entitycoreference/src/main/resources/config/pos/en.properties Tue Sep 6 15:18:50 2016 @@ -1,2 +1,17 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + # Determiners of a noun phrase which determine that the noun phrase is a good candidate for coref. -within.text.referencing.determiners=the,this,these \ No newline at end of file +within.text.referencing.determiners=the,this,these Modified: stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/EntityCoReferenceEngineTest.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/EntityCoReferenceEngineTest.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/EntityCoReferenceEngineTest.java (original) +++ stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/EntityCoReferenceEngineTest.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.entitycoreference; import static org.apache.stanbol.enhancer.servicesapi.rdf.Properties.DC_LANGUAGE; Modified: stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/MockComponentContext.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/MockComponentContext.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/MockComponentContext.java (original) +++ stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/MockComponentContext.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.entitycoreference; import java.util.Dictionary; Modified: stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/MockEntityCorefDbpediaSite.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/MockEntityCorefDbpediaSite.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/MockEntityCorefDbpediaSite.java (original) +++ stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/MockEntityCorefDbpediaSite.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.entitycoreference; import static org.apache.stanbol.enhancer.servicesapi.rdf.Properties.RDFS_LABEL; Modified: stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/MockSiteManager.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/MockSiteManager.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/MockSiteManager.java (original) +++ stanbol/trunk/enhancement-engines/entitycoreference/src/test/java/org/apache/stanbol/enhancer/engines/entitycoreference/MockSiteManager.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.entitycoreference; import java.io.InputStream; Modified: stanbol/trunk/enhancement-engines/entitylinking/engine/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/entitylinking/engine/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/entitylinking/engine/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/entitylinking/engine/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -7,6 +7,7 @@ # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 # - Common Public License, Version 1.0 +# - Eclipse Public License 1.0 # - Eclipse Public License, Version 1.0 # - GNU General Public License (GPL), Version 2 with classpath exception # - GNU Lesser General Public License (LGPL) @@ -19,7 +20,5 @@ # Please fill the missing licenses for dependencies : # # -#Tue Jul 23 16:38:29 CEST 2013 +#Tue Sep 06 13:25:17 CEST 2016 javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-kuromoji/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-kuromoji/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-kuromoji/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-kuromoji/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -8,6 +8,7 @@ # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 # - Common Public License, Version 1.0 +# - Eclipse Public License 1.0 # - Eclipse Public License, Version 1.0 # - GNU General Public License (GPL), Version 2 with classpath exception # - GNU Lesser General Public License (LGPL) @@ -21,7 +22,7 @@ # Please fill the missing licenses for dependencies : # # -#Tue Sep 24 21:10:35 CEST 2013 +#Tue Sep 06 13:25:52 CEST 2016 antlr--antlr--2.7.2=Public Domain commons-beanutils--commons-beanutils--1.7.0=Apache Software License, Version 2.0 dom4j--dom4j--1.1=BSD-style @@ -29,8 +30,6 @@ jakarta-regexp--jakarta-regexp--1.4=Apac javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 javax.servlet.jsp--jsp-api--2.1=Common Development And Distribution License (CDDL), Version 1.0 org.apache.zookeeper--zookeeper--3.4.5=The Apache Software License, Version 2.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 org.restlet.jee--org.restlet--2.1.1=The Apache Software License, Version 2.0 org.restlet.jee--org.restlet.ext.servlet--2.1.1=The Apache Software License, Version 2.0 oro--oro--2.0.8=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-lucene/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-lucene/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-lucene/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-lucene/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -8,6 +8,7 @@ # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 # - Common Public License, Version 1.0 +# - Eclipse Public License 1.0 # - Eclipse Public License, Version 1.0 # - GNU General Public License (GPL), Version 2 with classpath exception # - GNU Lesser General Public License (LGPL) @@ -21,7 +22,7 @@ # Please fill the missing licenses for dependencies : # # -#Tue Sep 24 21:10:01 CEST 2013 +#Tue Sep 06 13:25:21 CEST 2016 antlr--antlr--2.7.2=Public Domain commons-beanutils--commons-beanutils--1.7.0=Apache Software License, Version 2.0 dom4j--dom4j--1.1=BSD-style @@ -29,8 +30,6 @@ jakarta-regexp--jakarta-regexp--1.4=Apac javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 javax.servlet.jsp--jsp-api--2.1=Common Development And Distribution License (CDDL), Version 1.0 org.apache.zookeeper--zookeeper--3.4.5=The Apache Software License, Version 2.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 org.restlet.jee--org.restlet--2.1.1=The Apache Software License, Version 2.0 org.restlet.jee--org.restlet.ext.servlet--2.1.1=The Apache Software License, Version 2.0 oro--oro--2.0.8=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-opennlp/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-opennlp/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-opennlp/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-opennlp/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -3,11 +3,11 @@ # Already used licenses in project : # - Apache Software License # - Apache Software License, Version 2.0 -# - BSD 3-Clause License # - BSD License # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 # - Common Public License, Version 1.0 +# - Eclipse Public License 1.0 # - Eclipse Public License, Version 1.0 # - GNU General Public License (GPL), Version 2 with classpath exception # - GNU Lesser General Public License (LGPL) @@ -20,7 +20,5 @@ # Please fill the missing licenses for dependencies : # # -#Tue Jul 23 16:38:31 CEST 2013 +#Tue Sep 06 13:25:25 CEST 2016 javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-smartcn/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-smartcn/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-smartcn/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/entitylinking/labeltokenizer-smartcn/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -8,6 +8,7 @@ # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 # - Common Public License, Version 1.0 +# - Eclipse Public License 1.0 # - Eclipse Public License, Version 1.0 # - GNU General Public License (GPL), Version 2 with classpath exception # - GNU Lesser General Public License (LGPL) @@ -21,7 +22,7 @@ # Please fill the missing licenses for dependencies : # # -#Tue Sep 24 21:10:18 CEST 2013 +#Tue Sep 06 13:25:29 CEST 2016 antlr--antlr--2.7.2=Public Domain commons-beanutils--commons-beanutils--1.7.0=Apache Software License, Version 2.0 dom4j--dom4j--1.1=BSD-style @@ -29,8 +30,6 @@ jakarta-regexp--jakarta-regexp--1.4=Apac javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 javax.servlet.jsp--jsp-api--2.1=Common Development And Distribution License (CDDL), Version 1.0 org.apache.zookeeper--zookeeper--3.4.5=The Apache Software License, Version 2.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 org.restlet.jee--org.restlet--2.1.1=The Apache Software License, Version 2.0 org.restlet.jee--org.restlet.ext.servlet--2.1.1=The Apache Software License, Version 2.0 oro--oro--2.0.8=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/entitytagging/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/entitytagging/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/entitytagging/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/entitytagging/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -8,6 +8,7 @@ # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 # - Common Public License, Version 1.0 +# - Eclipse Public License 1.0 # - Eclipse Public License, Version 1.0 # - GNU General Public License (GPL), Version 2 with classpath exception # - GNU Lesser General Public License (LGPL) @@ -21,19 +22,14 @@ # Please fill the missing licenses for dependencies : # # -#Tue Sep 24 21:10:48 CEST 2013 +#Tue Sep 06 13:27:28 CEST 2016 antlr--antlr--2.7.2=Public Domain -asm--asm--3.1=BSD License commons-beanutils--commons-beanutils--1.7.0=The Apache Software License, Version 2.0 dom4j--dom4j--1.1=BSD style license jakarta-regexp--jakarta-regexp--1.4=The Apache Software License, Version 2.0 javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 javax.servlet.jsp--jsp-api--2.1=Common Development And Distribution License (CDDL), Version 1.0 org.apache.zookeeper--zookeeper--3.4.5=The Apache Software License, Version 2.0 -org.codehaus.jettison--jettison--1.3=The Apache Software License, Version 2.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 org.restlet.jee--org.restlet--2.1.1=The Apache Software License, Version 2.0 org.restlet.jee--org.restlet.ext.servlet--2.1.1=The Apache Software License, Version 2.0 oro--oro--2.0.8=The Apache Software License, Version 2.0 -xerces--xercesImpl--2.7.1=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/htmlextractor/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/htmlextractor/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/htmlextractor/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/htmlextractor/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -7,6 +7,7 @@ # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 # - Common Public License, Version 1.0 +# - Eclipse Public License 1.0 # - Eclipse Public License, Version 1.0 # - GNU General Public License (GPL), Version 2 with classpath exception # - GNU Lesser General Public License (LGPL) @@ -19,7 +20,5 @@ # Please fill the missing licenses for dependencies : # # -#Thu Feb 07 13:27:34 CET 2013 -org.osgi--org.osgi.compendium--4.1.0=Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=Apache Software License, Version 2.0 +#Tue Sep 06 13:22:16 CEST 2016 xerces--xercesImpl--2.7.1=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/keywordextraction/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/keywordextraction/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/keywordextraction/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/keywordextraction/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -3,11 +3,11 @@ # Already used licenses in project : # - Apache Software License # - Apache Software License, Version 2.0 -# - BSD 3-Clause License # - BSD License # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 # - Common Public License, Version 1.0 +# - Eclipse Public License 1.0 # - Eclipse Public License, Version 1.0 # - GNU General Public License (GPL), Version 2 with classpath exception # - GNU Lesser General Public License (LGPL) @@ -20,7 +20,5 @@ # Please fill the missing licenses for dependencies : # # -#Tue Jul 23 16:38:34 CEST 2013 +#Tue Sep 06 13:33:50 CEST 2016 javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/kuromoji-nlp/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/kuromoji-nlp/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/kuromoji-nlp/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/kuromoji-nlp/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -8,6 +8,7 @@ # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 # - Common Public License, Version 1.0 +# - Eclipse Public License 1.0 # - Eclipse Public License, Version 1.0 # - GNU General Public License (GPL), Version 2 with classpath exception # - GNU Lesser General Public License (LGPL) @@ -21,7 +22,7 @@ # Please fill the missing licenses for dependencies : # # -#Tue Sep 24 21:09:16 CEST 2013 +#Tue Sep 06 13:25:06 CEST 2016 antlr--antlr--2.7.2=Public Domain commons-beanutils--commons-beanutils--1.7.0=Apache Software License, Version 2.0 dom4j--dom4j--1.1=BSD-style @@ -29,8 +30,6 @@ jakarta-regexp--jakarta-regexp--1.4=Apac javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 javax.servlet.jsp--jsp-api--2.1=Common Development And Distribution License (CDDL), Version 1.0 org.apache.zookeeper--zookeeper--3.4.5=The Apache Software License, Version 2.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 org.restlet.jee--org.restlet--2.1.1=The Apache Software License, Version 2.0 org.restlet.jee--org.restlet.ext.servlet--2.1.1=The Apache Software License, Version 2.0 oro--oro--2.0.8=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/lucenefstlinking/pom.xml URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/lucenefstlinking/pom.xml?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/lucenefstlinking/pom.xml (original) +++ stanbol/trunk/enhancement-engines/lucenefstlinking/pom.xml Tue Sep 6 15:18:50 2016 @@ -90,7 +90,7 @@ <!-- AL20 licensed files --> <exclude>src/test/resources/merkel_nlp.json</exclude> <exclude>src/test/resources/merkel.txt</exclude> - + <exclude>**/*.config</exclude> <exclude>src/license/THIRD-PARTY.properties</exclude> </excludes> </configuration> Modified: stanbol/trunk/enhancement-engines/lucenefstlinking/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/lucenefstlinking/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/lucenefstlinking/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/lucenefstlinking/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -8,6 +8,7 @@ # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 # - Common Public License, Version 1.0 +# - Eclipse Public License 1.0 # - Eclipse Public License, Version 1.0 # - GNU General Public License (GPL), Version 2 with classpath exception # - GNU Lesser General Public License (LGPL) @@ -21,7 +22,7 @@ # Please fill the missing licenses for dependencies : # # -#Mon Oct 21 10:54:21 CEST 2013 +#Tue Sep 06 13:27:45 CEST 2016 antlr--antlr--2.7.2=Public Domain commons-beanutils--commons-beanutils--1.7.0=The Apache Software License, Version 2.0 dom4j--dom4j--1.1=BSD-style @@ -29,8 +30,6 @@ jakarta-regexp--jakarta-regexp--1.4=The javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 javax.servlet.jsp--jsp-api--2.1=Common Development And Distribution License (CDDL), Version 1.0 org.apache.zookeeper--zookeeper--3.4.5=The Apache Software License, Version 2.0 -org.osgi--org.osgi.compendium--4.1.0=Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=Apache Software License, Version 2.0 org.restlet.jee--org.restlet--2.1.1=The Apache Software License, Version 2.0 org.restlet.jee--org.restlet.ext.servlet--2.1.1=The Apache Software License, Version 2.0 oro--oro--2.0.8=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/lucenefstlinking/src/main/java/org/apache/stanbol/enhancer/engines/lucenefstlinking/NamedEntityFstLinkingComponnet.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/lucenefstlinking/src/main/java/org/apache/stanbol/enhancer/engines/lucenefstlinking/NamedEntityFstLinkingComponnet.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/lucenefstlinking/src/main/java/org/apache/stanbol/enhancer/engines/lucenefstlinking/NamedEntityFstLinkingComponnet.java (original) +++ stanbol/trunk/enhancement-engines/lucenefstlinking/src/main/java/org/apache/stanbol/enhancer/engines/lucenefstlinking/NamedEntityFstLinkingComponnet.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.lucenefstlinking; import static org.apache.stanbol.enhancer.engines.entitylinking.config.EntityLinkerConfig.CASE_SENSITIVE; Modified: stanbol/trunk/enhancement-engines/lucenefstlinking/src/main/java/org/apache/stanbol/enhancer/engines/lucenefstlinking/PlainFstLinkingComponnet.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/lucenefstlinking/src/main/java/org/apache/stanbol/enhancer/engines/lucenefstlinking/PlainFstLinkingComponnet.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/lucenefstlinking/src/main/java/org/apache/stanbol/enhancer/engines/lucenefstlinking/PlainFstLinkingComponnet.java (original) +++ stanbol/trunk/enhancement-engines/lucenefstlinking/src/main/java/org/apache/stanbol/enhancer/engines/lucenefstlinking/PlainFstLinkingComponnet.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.lucenefstlinking; import static org.apache.stanbol.enhancer.engines.entitylinking.config.EntityLinkerConfig.CASE_SENSITIVE; Modified: stanbol/trunk/enhancement-engines/lucenefstlinking/src/main/java/org/apache/stanbol/enhancer/engines/lucenefstlinking/Tag.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/lucenefstlinking/src/main/java/org/apache/stanbol/enhancer/engines/lucenefstlinking/Tag.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/lucenefstlinking/src/main/java/org/apache/stanbol/enhancer/engines/lucenefstlinking/Tag.java (original) +++ stanbol/trunk/enhancement-engines/lucenefstlinking/src/main/java/org/apache/stanbol/enhancer/engines/lucenefstlinking/Tag.java Tue Sep 6 15:18:50 2016 @@ -138,4 +138,4 @@ class Tag { suggestions.get(0).getScore(); } -} \ No newline at end of file +} Modified: stanbol/trunk/enhancement-engines/nbactions.xml URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/nbactions.xml?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/nbactions.xml (original) +++ stanbol/trunk/enhancement-engines/nbactions.xml Tue Sep 6 15:18:50 2016 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> <actions> <action> <actionName>CUSTOM-update-parents</actionName> Modified: stanbol/trunk/enhancement-engines/nlp2rdf/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/nlp2rdf/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/nlp2rdf/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/nlp2rdf/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -3,7 +3,6 @@ # Already used licenses in project : # - Apache Software License # - Apache Software License, Version 2.0 -# - BSD 3-Clause License # - BSD License # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 @@ -19,7 +18,5 @@ # Please fill the missing licenses for dependencies : # # -#Tue Jul 23 16:38:27 CEST 2013 +#Tue Sep 06 13:25:03 CEST 2016 javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/opencalais/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/opencalais/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/opencalais/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/opencalais/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -7,19 +7,20 @@ # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 # - Common Public License, Version 1.0 +# - Eclipse Public License 1.0 # - Eclipse Public License, Version 1.0 # - GNU General Public License (GPL), Version 2 with classpath exception # - GNU Lesser General Public License (LGPL) # - GNU Lesser General Public License (LGPL), Version 2.1 +# - GNU Lesser General Public License, Version 2.1 # - ICU License # - MIT License +# - New BSD License # - Public Domain License +# - Revised BSD License #------------------------------------------------------------------------------- # Please fill the missing licenses for dependencies : # # -#Sun Oct 07 18:27:28 CEST 2012 -javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 +#Tue Sep 06 13:34:59 CEST 2016 xerces--xercesImpl--2.7.1=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/opennlp/opennlp-chunker/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/opennlp/opennlp-chunker/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/opennlp/opennlp-chunker/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/opennlp/opennlp-chunker/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -3,7 +3,6 @@ # Already used licenses in project : # - Apache Software License # - Apache Software License, Version 2.0 -# - BSD 3-Clause License # - BSD License # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 @@ -19,7 +18,5 @@ # Please fill the missing licenses for dependencies : # # -#Tue Jul 23 16:38:25 CEST 2013 +#Tue Sep 06 13:24:38 CEST 2016 javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/opennlp/opennlp-ner/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/opennlp/opennlp-ner/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/opennlp/opennlp-ner/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/opennlp/opennlp-ner/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -3,11 +3,11 @@ # Already used licenses in project : # - Apache Software License # - Apache Software License, Version 2.0 -# - BSD 3-Clause License # - BSD License # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 # - Common Public License, Version 1.0 +# - Eclipse Public License 1.0 # - Eclipse Public License, Version 1.0 # - GNU General Public License (GPL), Version 2 with classpath exception # - GNU Lesser General Public License (LGPL) @@ -20,7 +20,5 @@ # Please fill the missing licenses for dependencies : # # -#Tue Jul 23 16:38:25 CEST 2013 +#Tue Sep 06 13:24:33 CEST 2016 javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/opennlp/opennlp-pos/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/opennlp/opennlp-pos/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/opennlp/opennlp-pos/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/opennlp/opennlp-pos/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -3,7 +3,6 @@ # Already used licenses in project : # - Apache Software License # - Apache Software License, Version 2.0 -# - BSD 3-Clause License # - BSD License # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 @@ -19,7 +18,5 @@ # Please fill the missing licenses for dependencies : # # -#Tue Jul 23 16:38:24 CEST 2013 +#Tue Sep 06 13:24:29 CEST 2016 javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/opennlp/opennlp-sentence/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/opennlp/opennlp-sentence/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/opennlp/opennlp-sentence/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/opennlp/opennlp-sentence/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -3,7 +3,6 @@ # Already used licenses in project : # - Apache Software License # - Apache Software License, Version 2.0 -# - BSD 3-Clause License # - BSD License # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 @@ -19,7 +18,5 @@ # Please fill the missing licenses for dependencies : # # -#Tue Jul 23 16:38:24 CEST 2013 +#Tue Sep 06 13:24:23 CEST 2016 javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/opennlp/opennlp-token/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/opennlp/opennlp-token/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/opennlp/opennlp-token/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/opennlp/opennlp-token/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -3,7 +3,6 @@ # Already used licenses in project : # - Apache Software License # - Apache Software License, Version 2.0 -# - BSD 3-Clause License # - BSD License # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 @@ -19,7 +18,5 @@ # Please fill the missing licenses for dependencies : # # -#Tue Jul 23 16:38:24 CEST 2013 +#Tue Sep 06 13:24:26 CEST 2016 javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 Modified: stanbol/trunk/enhancement-engines/pom.xml URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/pom.xml?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/pom.xml (original) +++ stanbol/trunk/enhancement-engines/pom.xml Tue Sep 6 15:18:50 2016 @@ -193,6 +193,7 @@ <exclude>**/test/**/*.rules</exclude> <exclude>**/test/**/*.odt</exclude> <exclude>**/test/**/*.json</exclude> + <exclude>entitycoreference/src/main/resources/data/place_adjectivals/en</exclude> </excludes> </configuration> </plugin> Modified: stanbol/trunk/enhancement-engines/pos-chunker/src/main/java/org/apache/stanbol/enhancer/engines/poschunker/PhraseBuilder.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/pos-chunker/src/main/java/org/apache/stanbol/enhancer/engines/poschunker/PhraseBuilder.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/pos-chunker/src/main/java/org/apache/stanbol/enhancer/engines/poschunker/PhraseBuilder.java (original) +++ stanbol/trunk/enhancement-engines/pos-chunker/src/main/java/org/apache/stanbol/enhancer/engines/poschunker/PhraseBuilder.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.poschunker; import static org.apache.stanbol.enhancer.nlp.NlpAnnotations.PHRASE_ANNOTATION; Modified: stanbol/trunk/enhancement-engines/pos-chunker/src/main/java/org/apache/stanbol/enhancer/engines/poschunker/PhraseTypeDefinition.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/pos-chunker/src/main/java/org/apache/stanbol/enhancer/engines/poschunker/PhraseTypeDefinition.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/pos-chunker/src/main/java/org/apache/stanbol/enhancer/engines/poschunker/PhraseTypeDefinition.java (original) +++ stanbol/trunk/enhancement-engines/pos-chunker/src/main/java/org/apache/stanbol/enhancer/engines/poschunker/PhraseTypeDefinition.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.poschunker; import java.util.Collections; Modified: stanbol/trunk/enhancement-engines/pos-chunker/src/main/java/org/apache/stanbol/enhancer/engines/poschunker/engine/ChunkFactoryImpl.java URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/pos-chunker/src/main/java/org/apache/stanbol/enhancer/engines/poschunker/engine/ChunkFactoryImpl.java?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/pos-chunker/src/main/java/org/apache/stanbol/enhancer/engines/poschunker/engine/ChunkFactoryImpl.java (original) +++ stanbol/trunk/enhancement-engines/pos-chunker/src/main/java/org/apache/stanbol/enhancer/engines/poschunker/engine/ChunkFactoryImpl.java Tue Sep 6 15:18:50 2016 @@ -1,3 +1,20 @@ +/* +* Licensed to the Apache Software Foundation (ASF) under one or more +* contributor license agreements. See the NOTICE file distributed with +* this work for additional information regarding copyright ownership. +* The ASF licenses this file to You under the Apache License, Version 2.0 +* (the "License"); you may not use this file except in compliance with +* the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + package org.apache.stanbol.enhancer.engines.poschunker.engine; import java.util.concurrent.locks.ReadWriteLock; Modified: stanbol/trunk/enhancement-engines/refactor/src/license/THIRD-PARTY.properties URL: http://svn.apache.org/viewvc/stanbol/trunk/enhancement-engines/refactor/src/license/THIRD-PARTY.properties?rev=1759443&r1=1759442&r2=1759443&view=diff ============================================================================== --- stanbol/trunk/enhancement-engines/refactor/src/license/THIRD-PARTY.properties (original) +++ stanbol/trunk/enhancement-engines/refactor/src/license/THIRD-PARTY.properties Tue Sep 6 15:18:50 2016 @@ -8,21 +8,20 @@ # - Common Development And Distribution License (CDDL), Version 1.0 # - Common Development And Distribution License (CDDL), Version 1.1 # - Common Public License, Version 1.0 +# - Eclipse Public License 1.0 # - Eclipse Public License, Version 1.0 # - GNU General Public License (GPL), Version 2 with classpath exception # - GNU Lesser General Public License (LGPL) # - GNU Lesser General Public License (LGPL), Version 2.1 +# - GNU Lesser General Public License, Version 2.1 # - ICU License # - MIT License +# - New BSD License # - Public Domain License +# - Revised BSD License #------------------------------------------------------------------------------- # Please fill the missing licenses for dependencies : # # -#Sun Oct 07 18:21:39 CEST 2012 -asm--asm--3.1=BSD License -javax.servlet--servlet-api--2.5=Common Development And Distribution License (CDDL), Version 1.0 -org.codehaus.jettison--jettison--1.3=The Apache Software License, Version 2.0 -org.osgi--org.osgi.compendium--4.1.0=The Apache Software License, Version 2.0 -org.osgi--org.osgi.core--4.1.0=The Apache Software License, Version 2.0 +#Tue Sep 06 13:24:08 CEST 2016 xerces--xercesImpl--2.7.1=The Apache Software License, Version 2.0
