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/dnet45/modules/uoa-openaire-connector/trunk</developerConnection>
14
        </scm>
15
    <!--
16
	<pluginRepositories>
17
		<pluginRepository>
18
			<id>dtrotts</id>
19
			<name>Repository for maven thrift plugin</name>
20
			<url>http://maven.davidtrott.com/repository</url>
21
			<layout>default</layout>
22
		</pluginRepository>
23
	</pluginRepositories>
24
    -->
25
	<build>
26
		<plugins>
27
			<plugin>
28
				<artifactId>maven-assembly-plugin</artifactId>
29
				<configuration>
30
					<archive>
31

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

    
150
		<dependency>
151
			<groupId>asm</groupId>
152
			<artifactId>asm</artifactId>
153
			<version>3.3.1</version>
154
		</dependency>
155

    
156
    </dependencies>
157

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