Project

General

Profile

« Previous | Next » 

Revision 63331

json parser for portal apis + csv and html download

View differences:

pom.xml
22 22
            </snapshots>
23 23
            <id>cloudera-central</id>
24 24
            <name>cloundera-libs-release</name>
25
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-central</url>
25
            <url>https://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-central</url>
26 26
        </repository>
27 27
        <repository>
28 28
            <id>cloudera-snapshots</id>
29 29
            <name>cloudera-libs-snapshot</name>
30
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-snapshots</url>
30
            <url>https://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-snapshots</url>
31 31
        </repository>
32 32
        <repository>
33 33
            <id>typesafe</id>
34 34
            <name>typesafe-releases</name>
35
            <url>http://maven.research-infrastructures.eu/nexus/content/repositories/typesafe</url>
35
            <url>https://maven.research-infrastructures.eu/nexus/content/repositories/typesafe</url>
36 36
        </repository>
37
		<repository>
38
			<id>dnet45-releases</id>
39
			<name>D-Net 45 releases</name>
40
			<url>https://maven.d4science.org/nexus/content/repositories/dnet45-releases</url>
41
			<layout>default</layout>
42
			<snapshots>
43
				<enabled>false</enabled>
44
			</snapshots>
45
			<releases>
46
				<enabled>true</enabled>
47
			</releases>
48
		</repository>
49
		<repository>
50
			<id>dnet45-snapshots</id>
51
			<name>D-Net 45 snapshots</name>
52
			<url>https://maven.d4science.org/nexus/content/repositories/dnet45-snapshots</url>
53
			<layout>default</layout>
54
			<snapshots>
55
				<enabled>true</enabled>
56
			</snapshots>
57
			<releases>
58
				<enabled>false</enabled>
59
			</releases>
60
		</repository>
61
		<repository>
62
			<id>dnet45-bootstrap-snapshot</id>
63
			<name>D-Net 45 Bootstrap Snapshot</name>
64
			<url>https://maven.d4science.org/nexus/content/repositories/dnet45-bootstrap-snapshot/</url>
65
			<releases>
66
				<enabled>false</enabled>
67
			</releases>
68
			<snapshots>
69
				<enabled>true</enabled>
70
			</snapshots>
71
			<layout>default</layout>
72
		</repository>
73
		<repository>
74
			<id>dnet45-bootstrap-release</id>
75
			<name>D-Net 45 Bootstrap Release</name>
76
			<url>https://maven.d4science.org/nexus/content/repositories/dnet45-bootstrap-release/</url>
77
			<releases>
78
				<enabled>true</enabled>
79
			</releases>
80
			<snapshots>
81
				<enabled>false</enabled>
82
			</snapshots>
83
			<layout>default</layout>
84
		</repository>
37 85
    </repositories>
38 86

  
39 87
	<dependencies>
......
230 278
            <version>3.3.9</version>
231 279
        </dependency>
232 280

  
281
		<!-- CNR for entities -->
282
		<dependency>
283
			<groupId>eu.dnetlib.dhp</groupId>
284
			<artifactId>dhp-schemas</artifactId>
285
			<version>[6.1.1]</version>
286
		</dependency>
233 287

  
288
		<dependency>
289
			<groupId>eu.dnetlib.dhp</groupId>
290
			<artifactId>dhp-dump-schema</artifactId>
291
			<version>[8.0.0-SNAPSHOT]</version>
292
		</dependency>
234 293

  
294
		<dependency>
295
			<groupId>com.fasterxml.jackson.core</groupId>
296
			<artifactId>jackson-core</artifactId>
297
			<version>2.15.2</version>
298
		</dependency>
299
		<dependency>
300
			<groupId>com.fasterxml.jackson.core</groupId>
301
			<artifactId>jackson-databind</artifactId>
302
			<version>2.15.2</version>
303
		</dependency>
304
		<dependency>
305
			<groupId>com.fasterxml.jackson.core</groupId>
306
			<artifactId>jackson-annotations</artifactId>
307
			<version>2.15.2</version>
308
		</dependency>
309
		<dependency>
310
			<groupId>com.fasterxml.jackson.dataformat</groupId>
311
			<artifactId>jackson-dataformat-csv</artifactId>
312
			<version>2.15.2</version>
313
		</dependency>
314
		<dependency>
315
			<groupId>org.mapstruct</groupId>
316
			<artifactId>mapstruct</artifactId>
317
			<version>1.5.5.Final</version>
318
		</dependency>
319

  
320
		<dependency>
321
			<groupId>org.mapstruct</groupId>
322
			<artifactId>mapstruct</artifactId>
323
			<version>1.5.5.Final</version>
324
		</dependency>
325
		<dependency>
326
			<groupId>org.mapstruct</groupId>
327
			<artifactId>mapstruct-processor</artifactId>
328
			<version>1.5.5.Final</version>
329
			<scope>provided</scope>
330
		</dependency>
331

  
332
		<dependency>
333
			<groupId>com.fasterxml.jackson.core</groupId>
334
			<artifactId>jackson-core</artifactId>
335
			<version>2.15.2</version>
336
		</dependency>
337
		<dependency>
338
			<groupId>com.fasterxml.jackson.core</groupId>
339
			<artifactId>jackson-databind</artifactId>
340
			<version>2.15.2</version>
341
		</dependency>
342
		<dependency>
343
			<groupId>com.fasterxml.jackson.core</groupId>
344
			<artifactId>jackson-annotations</artifactId>
345
			<version>2.15.2</version>
346
		</dependency>
347
		<dependency>
348
			<groupId>com.fasterxml.jackson.dataformat</groupId>
349
			<artifactId>jackson-dataformat-csv</artifactId>
350
			<version>2.15.2</version>
351
		</dependency>
352

  
235 353
    </dependencies>
236 354

  
237 355
	<build>

Also available in: Unified diff