Project

General

Profile

« Previous | Next » 

Revision 48735

Transformed in springboot application because jena gets in with a dependency to jackson that conflicts with the one of exist

View differences:

pom.xml
2 2
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3 3
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 4
	<parent>
5
		<groupId>eu.dnetlib</groupId>
6
		<artifactId>dnet-parent</artifactId>
7
		<version>2.0.0-SNAPSHOT</version>
8
		<relativePath/>
5
		<groupId>org.springframework.boot</groupId>
6
		<artifactId>spring-boot-starter-parent</artifactId>
7
		<version>1.5.2.RELEASE</version>
8
		<relativePath></relativePath>
9 9
	</parent>
10

  
10 11
	<modelVersion>4.0.0</modelVersion>
11 12
	<groupId>eu.dnetlib</groupId>
12 13
	<artifactId>dnet-parthenos-publisher</artifactId>
13 14
	<packaging>jar</packaging>
14
	<version>1.0.0-SNAPSHOT</version>
15
	<version>2.0.0-SNAPSHOT</version>
15 16
	<scm>
16 17
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-parthenos-publisher/trunk</developerConnection>
17 18
	</scm>
19
	<ciManagement>
20
		<system>jenkins</system>
21
		<url>https://jenkins-dnet.d4science.org/view/DNet50/job/DSL50_dnet-parthenos-publisher/</url>
22
	</ciManagement>
23
	<distributionManagement>
24
		<repository>
25
			<id>dnet5-releases</id>
26
			<name>D-Net 5 Releases</name>
27
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet5-releases</url>
28
			<layout>default</layout>
29
		</repository>
30
	</distributionManagement>
31

  
32
	<!-- Inherit defaults from Spring Boot -->
33

  
34
	<repositories>
35
		<repository>
36
			<id>dnet-deps</id>
37
			<name>dnet-dependencies</name>
38
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
39
			<layout>default</layout>
40
		</repository>
41
		<repository>
42
			<id>dnet5-releases</id>
43
			<name>D-Net 5 Releases</name>
44
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet5-releases</url>
45
			<layout>default</layout>
46
			<snapshots>
47
				<enabled>false</enabled>
48
			</snapshots>
49
		</repository>
50
		<repository>
51
			<id>dnet5-snapshots</id>
52
			<name>D-Net 5 Snapshots</name>
53
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet5-snapshots</url>
54
			<layout>default</layout>
55
			<snapshots>
56
				<enabled>true</enabled>
57
			</snapshots>
58
		</repository>
59
	</repositories>
60

  
18 61
	<dependencies>
19 62
		<dependency>
20 63
			<groupId>eu.dnetlib</groupId>
21 64
			<artifactId>dnet-core-components</artifactId>
22
			<version>[2.0.0-SAXONHE-SNAPSHOT]</version>
65
			<version>2.0.0-SAXONHE-SNAPSHOT</version>
23 66
		</dependency>
24

  
25 67
		<dependency>
26
			<groupId>eu.dnetlib</groupId>
27
			<artifactId>dnet-msro-service</artifactId>
28
			<version>[6.0.0-SAXONHE-SNAPSHOT]</version>
29
		</dependency>
30
		<dependency>
31 68
			<groupId>virtuoso</groupId>
32 69
			<artifactId>jena-driver</artifactId>
33 70
			<version>3.0</version>
......
48 85
			<artifactId>jena-core</artifactId>
49 86
			<version>[3.3.0,4.0.0)</version>
50 87
		</dependency>
88

  
51 89
		<dependency>
52
			<groupId>junit</groupId>
53
			<artifactId>junit</artifactId>
54
			<version>${junit.version}</version>
55
		</dependency>
56
		<dependency>
57
			<groupId>org.springframework</groupId>
58
			<artifactId>spring-core</artifactId>
59
			<version>${spring.version}</version>
90
			<groupId>org.springframework.boot</groupId>
91
			<artifactId>spring-boot-starter-test</artifactId>
60 92
			<scope>test</scope>
61 93
		</dependency>
62 94
	</dependencies>
63 95

  
96
	<build>
97
		<plugins>
98
			<plugin>
99
				<groupId>org.springframework.boot</groupId>
100
				<artifactId>spring-boot-maven-plugin</artifactId>
101
				<configuration>
102
					<executable>true</executable>
103
				</configuration>
104
			</plugin>
105
		</plugins>
106
	</build>
107

  
64 108
	<properties>
65
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
109
		<java.version>1.8</java.version>
110
		<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
66 111
	</properties>
67 112

  
113
	<profiles>
114
		<profile>
115
			<id>java8-doclint-disabled</id>
116
			<activation>
117
				<jdk>[1.8,)</jdk>
118
			</activation>
119
			<properties>
120
				<javadoc.opts>-Xdoclint:none</javadoc.opts>
121
			</properties>
122
		</profile>
123
	</profiles>
68 124
</project>

Also available in: Unified diff