Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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-parent</artifactId>
6
		<version>2.0.0-SNAPSHOT</version>
7
		<relativePath />
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-dli-domain</artifactId>
12
	<packaging>jar</packaging>
13
	<version>1.0.0-SNAPSHOT</version>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-dli-domain/trunk</developerConnection>
16
	</scm>
17
	<build>
18
		<plugins>
19
			<plugin>
20
				<groupId>eu.dnetlib</groupId>
21
				<artifactId>protoc-jar-maven-plugin</artifactId>
22
				<version>1.0.0-SNAPSHOT</version>
23
				<executions>
24
					<execution>
25
						<phase>generate-sources</phase>
26
						<goals>
27
							<goal>run</goal>
28
						</goals>
29
						<configuration>
30
							<protocVersion>${google.protobuf.version}</protocVersion>
31
							<inputDirectories>
32
								<include>src/main/resources</include>
33
							</inputDirectories>
34
							<outputDirectory>src/gen/java</outputDirectory>
35
						</configuration>
36
					</execution>
37
				</executions>
38
			</plugin>
39
		</plugins>
40
	</build>
41
	<dependencies>
42

    
43
		<dependency>
44
			<groupId>com.ximpleware</groupId>
45
			<artifactId>vtd-xml</artifactId>
46
			<version>2.11</version>
47
		</dependency>
48

    
49
		<dependency>
50
			<groupId>eu.dnetlib</groupId>
51
			<artifactId>dnet-wds-domain</artifactId>
52
			<version>1.0.0-SNAPSHOT</version>
53
		</dependency>
54

    
55
		<dependency>
56
			<groupId>junit</groupId>
57
			<artifactId>junit</artifactId>
58
			<version>${junit.version}</version>
59
			<scope>test</scope>
60
		</dependency>
61
	</dependencies>
62
</project>
    (1-1/1)