Project

General

Profile

1
<?xml version="1.0"?>
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>1.0.0-SNAPSHOT</version>
7
        </parent>
8
  <modelVersion>4.0.0</modelVersion>
9
  <groupId>eu.dnetlib</groupId>
10
  <artifactId>uoa-openaire-connector</artifactId>
11
  <packaging>jar</packaging>
12
  <version>1.0.0-SNAPSHOT</version>
13
  <pluginRepositories>
14
    <pluginRepository>
15
      <id>dtrotts</id>
16
      <name>Repository for maven thrift plugin</name>
17
      <url>http://maven.davidtrott.com/repository</url>
18
      <layout>default</layout>
19
    </pluginRepository>
20
  </pluginRepositories>
21
  <build>
22
    <plugins>
23
      <plugin>
24
        <artifactId>maven-assembly-plugin</artifactId>
25
        <configuration>
26
          <archive>
27

    
28
          </archive>
29
          <descriptorRefs>
30
            <descriptorRef>jar-with-dependencies</descriptorRef>
31
          </descriptorRefs>
32
        </configuration>
33
      </plugin>
34
      <plugin>
35
        <groupId>org.apache.thrift.tools</groupId>
36
        <artifactId>maven-thrift-plugin</artifactId>
37
        <version>0.1.10</version>
38
        <executions>
39
          <execution>
40
            <id>thrift-sources</id>
41
            <phase>generate-sources</phase>
42
            <goals>
43
              <goal>compile</goal>
44
            </goals>
45
          </execution>
46
          <execution>
47
            <id>thrift-test-sources</id>
48
            <phase>generate-test-sources</phase>
49
            <goals>
50
              <goal>testCompile</goal>
51
            </goals>
52
          </execution>
53
        </executions>
54
      </plugin>
55
    </plugins>
56
    <pluginManagement>
57
      <plugins>
58
        <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
59
        <plugin>
60
          <groupId>org.eclipse.m2e</groupId>
61
          <artifactId>lifecycle-mapping</artifactId>
62
          <version>1.0.0</version>
63
          <configuration>
64
            <lifecycleMappingMetadata>
65
              <pluginExecutions>
66
                <pluginExecution>
67
                  <pluginExecutionFilter>
68
                    <groupId>org.apache.thrift.tools</groupId>
69
                    <artifactId>maven-thrift-plugin</artifactId>
70
                    <versionRange>[0.1.10,)</versionRange>
71
                    <goals>
72
                      <goal>testCompile</goal>
73
                    </goals>
74
                  </pluginExecutionFilter>
75
                  <action>
76
                    <ignore/>
77
                  </action>
78
                </pluginExecution>
79
              </pluginExecutions>
80
            </lifecycleMappingMetadata>
81
          </configuration>
82
        </plugin>
83
      </plugins>
84
    </pluginManagement>
85
  </build>
86
  <dependencies>
87
    <dependency>
88
      <groupId>junit</groupId>
89
      <artifactId>junit</artifactId>
90
      <version>[0.0.0,)</version>
91
      <scope>test</scope>
92
    </dependency>
93
    <dependency>
94
      <groupId>org.slf4j</groupId>
95
      <artifactId>slf4j-api</artifactId>
96
      <version>1.7.5</version>
97
    </dependency>
98
    <dependency>
99
      <groupId>commons-dbcp</groupId>
100
      <artifactId>commons-dbcp</artifactId>
101
      <version>[1.2, 1.3)</version>
102
    </dependency>
103
    <dependency>
104
      <groupId>eu.dnetlib</groupId>
105
      <artifactId>uoa-utils</artifactId>
106
      <version>[0.0.0-SNAPSHOT,)</version>
107
    </dependency>
108
    <dependency>
109
      <groupId>eu.dnetlib</groupId>
110
      <artifactId>uoa-commons</artifactId>
111
      <version>[0.0.0-SNAPSHOT,)</version>
112
    </dependency>
113
    <dependency>
114
      <groupId>org.apache.thrift</groupId>
115
      <artifactId>libthrift</artifactId>
116
      <version>0.8.0</version>
117
    </dependency>
118
    <dependency>
119
      <groupId>org.postgresql</groupId>
120
      <artifactId>jdbc4driver</artifactId>
121
      <version>9.1</version>
122
    </dependency>
123
<dependency>
124
	<groupId>org.apache.velocity</groupId>
125
	<artifactId>velocity</artifactId>
126
	<version>1.7</version>
127
</dependency>
128
  </dependencies>
129
</project>
(2-2/2)