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>dnet45-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
	<version>2.0.0-SNAPSHOT</version>
12
        <scm>
13
                <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-openaire-connector/trunk</developerConnection>
14
        </scm>
15
	<pluginRepositories>
16
		<pluginRepository>
17
			<id>dtrotts</id>
18
			<name>Repository for maven thrift plugin</name>
19
			<url>http://maven.davidtrott.com/repository</url>
20
			<layout>default</layout>
21
		</pluginRepository>
22
	</pluginRepositories>
23
	<build>
24
		<plugins>
25
			<plugin>
26
				<artifactId>maven-assembly-plugin</artifactId>
27
				<configuration>
28
					<archive>
29

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

    
143
</project>
(2-2/2)