1 |
42814
|
claudio.at
|
<?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-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 |
43447
|
claudio.at
|
<artifactId>dnet-wds-domain</artifactId>
|
12 |
42814
|
claudio.at
|
<packaging>jar</packaging>
|
13 |
|
|
<version>1.0.0-SNAPSHOT</version>
|
14 |
|
|
<scm>
|
15 |
43447
|
claudio.at
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-wds-domain/trunk</developerConnection>
|
16 |
42814
|
claudio.at
|
</scm>
|
17 |
|
|
<build>
|
18 |
|
|
<plugins>
|
19 |
|
|
<plugin>
|
20 |
43529
|
claudio.at
|
<groupId>eu.dnetlib</groupId>
|
21 |
|
|
<artifactId>protoc-jar-maven-plugin</artifactId>
|
22 |
|
|
<version>1.0.0-SNAPSHOT</version>
|
23 |
42821
|
claudio.at
|
<executions>
|
24 |
|
|
<execution>
|
25 |
|
|
<phase>generate-sources</phase>
|
26 |
42814
|
claudio.at
|
<goals>
|
27 |
43529
|
claudio.at
|
<goal>run</goal>
|
28 |
42814
|
claudio.at
|
</goals>
|
29 |
|
|
<configuration>
|
30 |
43529
|
claudio.at
|
<protocVersion>${google.protobuf.version}</protocVersion>
|
31 |
|
|
<inputDirectories>
|
32 |
|
|
<include>src/main/resources</include>
|
33 |
|
|
</inputDirectories>
|
34 |
|
|
<outputDirectory>src/gen/java</outputDirectory>
|
35 |
42814
|
claudio.at
|
</configuration>
|
36 |
|
|
</execution>
|
37 |
|
|
</executions>
|
38 |
|
|
</plugin>
|
39 |
|
|
</plugins>
|
40 |
|
|
</build>
|
41 |
|
|
<dependencies>
|
42 |
42881
|
claudio.at
|
|
43 |
42814
|
claudio.at
|
<dependency>
|
44 |
|
|
<groupId>eu.dnetlib</groupId>
|
45 |
43529
|
claudio.at
|
<artifactId>dnet-graph-domain</artifactId>
|
46 |
42881
|
claudio.at
|
<version>1.0.0-SNAPSHOT</version>
|
47 |
42814
|
claudio.at
|
</dependency>
|
48 |
42881
|
claudio.at
|
|
49 |
43529
|
claudio.at
|
|
50 |
42814
|
claudio.at
|
<dependency>
|
51 |
|
|
<groupId>junit</groupId>
|
52 |
|
|
<artifactId>junit</artifactId>
|
53 |
|
|
<version>${junit.version}</version>
|
54 |
|
|
<scope>test</scope>
|
55 |
|
|
</dependency>
|
56 |
|
|
</dependencies>
|
57 |
|
|
</project>
|