1 |
28033
|
alessia.ba
|
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3 |
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
4 |
|
|
<parent>
|
5 |
|
|
<groupId>eu.dnetlib</groupId>
|
6 |
|
|
<artifactId>dnet-hadoop-parent</artifactId>
|
7 |
|
|
<version>1.0.0-SNAPSHOT</version>
|
8 |
|
|
<relativePath></relativePath>
|
9 |
|
|
</parent>
|
10 |
|
|
<modelVersion>4.0.0</modelVersion>
|
11 |
|
|
<groupId>eu.dnetlib</groupId>
|
12 |
|
|
<artifactId>dnet-openaireplus-schema</artifactId>
|
13 |
|
|
<packaging>jar</packaging>
|
14 |
28075
|
alessia.ba
|
<version>2.0.0-SNAPSHOT</version>
|
15 |
28731
|
alessia.ba
|
<build>
|
16 |
|
|
<plugins>
|
17 |
29232
|
alessia.ba
|
<!--
|
18 |
|
|
Using replace plugin to set the vocabulary and ontology baseURLs: https://code.google.com/p/maven-replacer-plugin/
|
19 |
28731
|
alessia.ba
|
Template: <p>For allowed values check: $vocabulariesURL$/vocID </p>
|
20 |
29232
|
alessia.ba
|
Replaced files will go into outputBasedir/outputDir (see plugin configuration below)
|
21 |
28731
|
alessia.ba
|
-->
|
22 |
|
|
<plugin>
|
23 |
|
|
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
24 |
|
|
<artifactId>replacer</artifactId>
|
25 |
|
|
<version>1.5.3</version>
|
26 |
|
|
<executions>
|
27 |
|
|
<execution>
|
28 |
|
|
<phase>prepare-package</phase>
|
29 |
|
|
<goals>
|
30 |
|
|
<goal>replace</goal>
|
31 |
|
|
</goals>
|
32 |
|
|
</execution>
|
33 |
|
|
</executions>
|
34 |
|
|
<configuration>
|
35 |
|
|
<basedir>${project.build.directory}/../schema</basedir>
|
36 |
29232
|
alessia.ba
|
<outputBasedir>${project.build.directory}/../schema/</outputBasedir>
|
37 |
|
|
<outputDir>replaced</outputDir>
|
38 |
28731
|
alessia.ba
|
<filesToInclude>*.xsd</filesToInclude>
|
39 |
|
|
<replacements>
|
40 |
|
|
<replacement>
|
41 |
|
|
<token>vocabulariesURL</token>
|
42 |
29780
|
alessia.ba
|
<value>https://services.openaire.eu/provision/mvc/vocabularies</value>
|
43 |
28731
|
alessia.ba
|
</replacement>
|
44 |
29507
|
alessia.ba
|
<!-- <replacement> -->
|
45 |
|
|
<!-- <token>ontologyURL</token> -->
|
46 |
|
|
<!-- <value>http://www.openaire.eu/ontologies/openaireplus/1.0</value> -->
|
47 |
|
|
<!-- </replacement> -->
|
48 |
28731
|
alessia.ba
|
</replacements>
|
49 |
|
|
<delimiters>
|
50 |
|
|
<delimiter>\$</delimiter>
|
51 |
|
|
</delimiters>
|
52 |
|
|
</configuration>
|
53 |
|
|
</plugin>
|
54 |
28033
|
alessia.ba
|
|
55 |
28731
|
alessia.ba
|
</plugins>
|
56 |
|
|
</build>
|
57 |
|
|
|
58 |
28033
|
alessia.ba
|
<dependencies>
|
59 |
|
|
</dependencies>
|
60 |
|
|
</project>
|