diff --git a/generic/generic-release.sh b/generic/generic-release.sh index dbaf7098956f6e4882444877bf445132f2f062e0..ecfb8c9cda3d663ea43c0fefaafb77edd28ab925 100644 --- a/generic/generic-release.sh +++ b/generic/generic-release.sh @@ -16,12 +16,6 @@ BASEDIR="/data/extraction/wikidumps"; #https://github.com/dbpedia/databus-maven-plugin/blob/master/dbpedia/generic/pom.xml DATABUSMAVENPOMDIR="/data/extraction/databus-maven-plugin/dbpedia/generic"; -#override release pom.xml properties -RELEASEPUBLISHER="https://vehnem.github.io/webid.ttl#this"; -RELEASEPACKAGEDIR="/data/extraction/release"; -RELEASEDOWNLOADURL="http://dbpedia-generic.tib.eu/release"; -RELEASELABELPREFIX="(pre-release)" -RELEASECOMMENTPREFIX="(MARVIN is the DBpedia bot, that runs the DBpedia Information Extraction Framework (DIEF) and releases the data as is, i.e. unparsed, unsorted, not redirected for debugging the software. After its releases, data is cleaned and persisted under the dbpedia account.)" #logging directory LOGS="/data/extraction/logs/$(date +%Y-%m-%d)"; @@ -90,12 +84,16 @@ setNewVersion() { deployRelease() { cd $DATABUSMAVENPOMDIR; - mvn deploy \ - -Ddatabus.publisher="$RELEASEPUBLISHER" \ - -Ddatabus.packageDirectory="$RELEASEPACKAGEDIR/\${project.groupId}/\${project.artifactId}" \ - -Ddatabus.downloadUrlPath="$RELEASEDOWNLOADURL/\${project.groupId}/\${project.artifactId}/\${project.version}" \ - -Ddatabus.labelPrefix="$RELEASELABELPREFIX" \ - -Ddatabus.commentPrefix="$RELEASECOMMENTPREFIX"; + + #override release pom.xml properties + RELEASEPUBLISHER="https://vehnem.github.io/webid.ttl#this"; + RELEASEPACKAGEDIR="/data/extraction/release/\${project.groupId}/\${project.artifactId}"; + RELEASEDOWNLOADURL="http://dbpedia-generic.tib.eu/release/\${project.groupId}/\${project.artifactId}/\${project.version}/"; + RELEASELABELPREFIX="(pre-release)" + RELEASECOMMENTPREFIX="(MARVIN is the DBpedia bot, that runs the DBpedia Information Extraction Framework (DIEF) and releases the data as is, i.e. unparsed, unsorted, not redirected for debugging the software. After its releases, data is cleaned and persisted under the dbpedia account.)" + + + mvn deploy -Ddatabus.publisher="$RELEASEPUBLISHER" -Ddatabus.packageDirectory="$RELEASEPACKAGEDIR" -Ddatabus.downloadUrlPath="$RELEASEDOWNLOADURL" -Ddatabus.labelPrefix="$RELEASELABELPREFIX" -Ddatabus.commentPrefix="$RELEASECOMMENTPREFIX"; } compressLogs() {