Project

General

Profile

1
<?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-openaire-data-protos</artifactId>
13
	<packaging>jar</packaging>
14
	<version>3.1.0-SNAPSHOT</version>
15
	<build>
16
		<plugins>
17
			<plugin>
18
				<groupId>com.google.protobuf.tools</groupId>
19
				<artifactId>maven-protoc-plugin</artifactId>
20
				<executions>
21
					<execution>
22
						<id>generate-sources</id>
23
						<phase>generate-sources</phase>
24
						<goals>
25
							<goal>compile</goal>
26
						</goals>
27
						<configuration>
28
							<protoSourceRoot>${basedir}/src/main/resources/</protoSourceRoot>
29
							<includes>
30
								<param>**/*.proto</param>
31
							</includes>
32
						</configuration>
33
					</execution>
34
				</executions>
35
			</plugin>
36
		</plugins>
37
	</build>
38
	<pluginRepositories>
39
		<pluginRepository>
40
			<id>dtrott</id>
41
			<url>http://maven.davidtrott.com/repository</url>
42
		</pluginRepository>
43
	</pluginRepositories>		
44
	<dependencies>
45
		<dependency>
46
			<groupId>com.google.protobuf</groupId>
47
			<artifactId>protobuf-java</artifactId>
48
			<version>${google.protobuf.version}</version>
49
		</dependency>		
50
	</dependencies>
51
</project>
(2-2/2)