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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet-hadoop-parent</artifactId>
6
		<version>1.0.0</version>
7
		<relativePath />
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-openaire-data-protos</artifactId>
12
	<packaging>jar</packaging>
13
	<version>3.0.0</version>
14
	<scm>
15
	  <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-openaire-data-protos/tags/dnet-openaire-data-protos-3.0.0</developerConnection>
16
	</scm>
17
	<build>
18
		<plugins>
19
			<plugin>
20
				<groupId>com.google.protobuf.tools</groupId>
21
				<artifactId>maven-protoc-plugin</artifactId>
22
				<executions>
23
					<execution>
24
						<id>generate-sources</id>
25
						<phase>generate-sources</phase>
26
						<goals>
27
							<goal>compile</goal>
28
						</goals>
29
						<configuration>
30
							<protoSourceRoot>${basedir}/src/main/resources/</protoSourceRoot>
31
							<includes>
32
								<param>**/*.proto</param>
33
							</includes>
34
						</configuration>
35
					</execution>
36
				</executions>
37
			</plugin>
38
		</plugins>
39
	</build>
40
	<pluginRepositories>
41
		<pluginRepository>
42
			<id>dtrott</id>
43
			<url>http://maven.davidtrott.com/repository</url>
44
		</pluginRepository>
45
	</pluginRepositories>		
46
	<dependencies>
47
		<dependency>
48
			<groupId>com.google.protobuf</groupId>
49
			<artifactId>protobuf-java</artifactId>
50
			<version>${google.protobuf.version}</version>
51
		</dependency>		
52
	</dependencies>
53
</project>
(2-2/2)