Project

General

Profile

1
<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/xsd/maven-4.0.0.xsd">
2
	<modelVersion>4.0.0</modelVersion>
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet45-parent</artifactId>
6
		<version>1.0.0</version>
7
	</parent>
8
	<groupId>eu.dnetlib</groupId>
9
	<artifactId>dnet-collector-plugins</artifactId>
10
	<version>1.4.6-SNAPSHOT</version>
11
	<scm>
12
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-collector-plugins/trunk</developerConnection>
13
	</scm>
14

    
15
	<build>
16
		<plugins>
17
			<plugin>
18
				<artifactId>maven-assembly-plugin</artifactId>
19
				<configuration>
20
					<archive>
21
						<manifest>
22
							<mainClass>eu.dnetlib.data.collector.plugins.schemaorg.SchemaOrgMainReactome</mainClass>
23
						</manifest>
24
					</archive>
25
					<descriptorRefs>
26
						<descriptorRef>jar-with-dependencies</descriptorRef>
27
					</descriptorRefs>
28
				</configuration>
29
			</plugin>
30
		</plugins>
31
	</build>
32

    
33
	<dependencies>
34
		<dependency>
35
			<groupId>eu.dnetlib</groupId>
36
			<artifactId>dnet-modular-collector-service-rmi</artifactId>
37
			<version>[1.3.0,2.0.0)</version>
38
		</dependency>
39
		<dependency>
40
			<groupId>eu.dnetlib</groupId>
41
			<artifactId>dnet-modular-collector-service</artifactId>
42
			<version>[3.3.26,4.0.0)</version>
43
		</dependency>
44
		<dependency>
45
			<groupId>com.google.code.gson</groupId>
46
			<artifactId>gson</artifactId>
47
			<version>${google.gson.version}</version>
48
		</dependency>
49
		<dependency>
50
			<groupId>commons-io</groupId>
51
			<artifactId>commons-io</artifactId>
52
			<version>${commons.io.version}</version>
53
		</dependency>
54
		<dependency>
55
			<groupId>junit</groupId>
56
			<artifactId>junit</artifactId>
57
			<version>${junit.version}</version>
58
			<scope>test</scope>
59
		</dependency>
60
		<dependency>
61
			<groupId>org.apache.httpcomponents</groupId>
62
			<artifactId>httpclient</artifactId>
63
			<version>4.5</version>
64
		</dependency>
65
		<dependency>
66
			<groupId>eu.dnetlib</groupId>
67
			<artifactId>cnr-resultset-service</artifactId>
68
			<version>[2.0.0, 3.0.0)</version>
69
			<scope>provided</scope>
70
		</dependency>
71
		<dependency>
72
			<groupId>com.ximpleware</groupId>
73
			<artifactId>vtd-xml</artifactId>
74
			<version>[2.12, 3.0.0)</version>
75
		</dependency>
76
		<dependency>
77
			<groupId>joda-time</groupId>
78
			<artifactId>joda-time</artifactId>
79
			<version>2.9.2</version>
80
		</dependency>
81

    
82
		<dependency>
83
			<groupId>org.json</groupId>
84
			<artifactId>json</artifactId>
85
			<version>20180813</version>
86
		 <type>jar</type>
87
		</dependency>
88
		<dependency>
89
			<groupId>org.apache.commons</groupId>
90
			<artifactId>commons-lang3</artifactId>
91
			<version>3.5</version>
92
		</dependency>
93

    
94
		<dependency>
95
			<groupId>org.apache.poi</groupId>
96
			<artifactId>poi</artifactId>
97
			<version>3.16</version>
98
		</dependency>
99
		<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
100
		<dependency>
101
			<groupId>org.apache.poi</groupId>
102
			<artifactId>poi-ooxml</artifactId>
103
			<version>3.16</version>
104
		</dependency>
105
		<dependency>
106
			<groupId>org.jsoup</groupId>
107
			<artifactId>jsoup</artifactId>
108
			<version>1.11.2</version>
109
		</dependency>
110
		<dependency>
111
			<groupId>commons-lang</groupId>
112
			<artifactId>commons-lang</artifactId>
113
			<version>2.6</version>
114
			<scope>compile</scope>
115
		</dependency>
116
        <dependency>
117
            <groupId>org.mockito</groupId>
118
            <artifactId>mockito-core</artifactId>
119
            <version>3.3.3</version>
120
            <scope>test</scope>
121
        </dependency>
122
    </dependencies>
123
</project>
(2-2/2)