2018-01-16 14:21:13 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dhp</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2019-04-03 16:05:16 +02:00
|
|
|
<relativePath>../</relativePath>
|
2018-01-16 14:21:13 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>dhp-schemas</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2019-10-24 10:20:31 +02:00
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>dnet-plugin</id>
|
|
|
|
<name>dnet plugin repository</name>
|
|
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-bootstrap-release</url>
|
|
|
|
<layout>default</layout>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
2018-01-16 14:21:13 +01:00
|
|
|
|
2019-10-24 10:20:31 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>eu.dnetlib</groupId>
|
|
|
|
<artifactId>protoc-jar-maven-plugin</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<protocVersion>${google.protobuf.version}</protocVersion>
|
|
|
|
<inputDirectories>
|
|
|
|
<include>src/main/resources</include>
|
|
|
|
</inputDirectories>
|
|
|
|
<outputDirectory>src/gen/java</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-03-13 14:43:20 +01:00
|
|
|
|
2019-10-24 10:20:31 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.protobuf-java-format</groupId>
|
|
|
|
<artifactId>protobuf-java-format</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
2019-03-13 14:43:20 +01:00
|
|
|
|
2018-01-16 14:21:13 +01:00
|
|
|
|
|
|
|
</project>
|