1 |
26600
|
sandro.lab
|
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
30710
|
claudio.at
|
<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/maven-v4_0_0.xsd">
|
3 |
26600
|
sandro.lab
|
<parent>
|
4 |
|
|
<groupId>eu.dnetlib</groupId>
|
5 |
44138
|
claudio.at
|
<artifactId>dnet-parent</artifactId>
|
6 |
30709
|
alessia.ba
|
<version>1.0.0</version>
|
7 |
30710
|
claudio.at
|
<relativePath />
|
8 |
26600
|
sandro.lab
|
</parent>
|
9 |
|
|
<modelVersion>4.0.0</modelVersion>
|
10 |
|
|
<groupId>eu.dnetlib</groupId>
|
11 |
|
|
<artifactId>dnet-openaire-data-protos</artifactId>
|
12 |
|
|
<packaging>jar</packaging>
|
13 |
46004
|
claudio.at
|
<version>3.7.7-SNAPSHOT</version>
|
14 |
30709
|
alessia.ba
|
<scm>
|
15 |
46004
|
claudio.at
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-openaire-data-protos/trunk</developerConnection>
|
16 |
30709
|
alessia.ba
|
</scm>
|
17 |
44138
|
claudio.at
|
|
18 |
|
|
<properties>
|
19 |
|
|
<!-- defined also in dnet-parent, here in case we need to override -->
|
20 |
|
|
<google.protobuf.version>2.4.1</google.protobuf.version>
|
21 |
|
|
</properties>
|
22 |
|
|
|
23 |
|
|
<pluginRepositories>
|
24 |
|
|
<pluginRepository>
|
25 |
44140
|
claudio.at
|
<id>dnet4-bootstrap-release</id>
|
26 |
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet4-bootstrap-release/</url>
|
27 |
44138
|
claudio.at
|
</pluginRepository>
|
28 |
|
|
</pluginRepositories>
|
29 |
|
|
|
30 |
26600
|
sandro.lab
|
<build>
|
31 |
|
|
<plugins>
|
32 |
|
|
<plugin>
|
33 |
44138
|
claudio.at
|
<groupId>eu.dnetlib</groupId>
|
34 |
|
|
<artifactId>protoc-jar-maven-plugin</artifactId>
|
35 |
44140
|
claudio.at
|
<version>1.1.0</version>
|
36 |
26600
|
sandro.lab
|
<executions>
|
37 |
|
|
<execution>
|
38 |
|
|
<phase>generate-sources</phase>
|
39 |
|
|
<goals>
|
40 |
44138
|
claudio.at
|
<goal>run</goal>
|
41 |
26600
|
sandro.lab
|
</goals>
|
42 |
|
|
<configuration>
|
43 |
44138
|
claudio.at
|
<protocVersion>${google.protobuf.version}</protocVersion>
|
44 |
|
|
<inputDirectories>
|
45 |
|
|
<include>src/main/resources</include>
|
46 |
|
|
</inputDirectories>
|
47 |
|
|
<outputDirectory>src/gen/java</outputDirectory>
|
48 |
26600
|
sandro.lab
|
</configuration>
|
49 |
|
|
</execution>
|
50 |
|
|
</executions>
|
51 |
|
|
</plugin>
|
52 |
|
|
</plugins>
|
53 |
|
|
</build>
|
54 |
|
|
<dependencies>
|
55 |
|
|
<dependency>
|
56 |
|
|
<groupId>com.google.protobuf</groupId>
|
57 |
|
|
<artifactId>protobuf-java</artifactId>
|
58 |
|
|
<version>${google.protobuf.version}</version>
|
59 |
|
|
</dependency>
|
60 |
|
|
</dependencies>
|
61 |
|
|
</project>
|