Project

General

Profile

« Previous | Next » 

Revision 52062

added integration test for VTD parser, reads the datacite collection and provide statistics about the parser performances

View differences:

pom.xml
14 14
	<scm>
15 15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-openaireplus-mapping-utils/trunk</developerConnection>
16 16
	</scm>
17

  
18
	<build>
19
		<plugins>
20
			<plugin>
21
				<groupId>org.apache.maven.plugins</groupId>
22
				<artifactId>maven-failsafe-plugin</artifactId>
23
				<version>2.19.1</version>
24
				<executions>
25
					<execution>
26
						<id>integration-test</id>
27
						<goals>
28
							<goal>integration-test</goal>
29
						</goals>
30
					</execution>
31
					<execution>
32
						<id>verify</id>
33
						<goals>
34
							<goal>verify</goal>
35
						</goals>
36
					</execution>
37
				</executions>
38
			</plugin>
39
		</plugins>
40
	</build>
41

  
17 42
	<dependencies>
18 43
		<dependency>
19 44
			<groupId>com.google.guava</groupId>
......
86 111
			<version>1.2</version>
87 112
		</dependency>
88 113
		<dependency>
114
			<groupId>org.apache.commons</groupId>
115
			<artifactId>commons-lang3</artifactId>
116
			<version>3.5</version>
117
		</dependency>
118

  
119
		<!-- test deps -->
120
		<dependency>
89 121
			<groupId>eu.dnetlib</groupId>
90 122
			<artifactId>dnet-openaireplus-profiles</artifactId>
91 123
			<version>[1.0.0,2.0.0)</version>
92 124
			<scope>test</scope>
93 125
		</dependency>
94 126
		<dependency>
95
			<groupId>org.apache.commons</groupId>
96
			<artifactId>commons-lang3</artifactId>
97
			<version>3.5</version>
127
			<groupId>org.mongodb</groupId>
128
			<artifactId>mongo-java-driver</artifactId>
129
			<version>${mongodb.driver.version}</version>
130
			<scope>test</scope>
98 131
		</dependency>
132
		<dependency>
133
			<groupId>org.springframework</groupId>
134
			<artifactId>spring-context</artifactId>
135
			<version>${spring.version}</version>
136
			<scope>test</scope>
137
		</dependency>
138
		<dependency>
139
			<groupId>org.springframework</groupId>
140
			<artifactId>spring-core</artifactId>
141
			<version>${spring.version}</version>
142
			<scope>test</scope>
143
		</dependency>
144
		<dependency>
145
			<groupId>org.springframework</groupId>
146
			<artifactId>spring-test</artifactId>
147
			<version>${spring.version}</version>
148
			<scope>test</scope>
149
		</dependency>
99 150

  
100 151
	</dependencies>
101 152
</project>

Also available in: Unified diff