1 |
53054
|
michele.ar
|
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
53057
|
michele.ar
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
3 |
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4 |
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
5 |
53054
|
michele.ar
|
<modelVersion>4.0.0</modelVersion>
|
6 |
|
|
<groupId>eu.dnetlib</groupId>
|
7 |
56288
|
michele.ar
|
<artifactId>dnet-orgs-database-application</artifactId>
|
8 |
53054
|
michele.ar
|
<version>1.1.0-SNAPSHOT</version>
|
9 |
|
|
<scm>
|
10 |
56288
|
michele.ar
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-orgs-database-application/trunk</developerConnection>
|
11 |
53057
|
michele.ar
|
</scm>
|
12 |
53054
|
michele.ar
|
<ciManagement>
|
13 |
|
|
<system>jenkins</system>
|
14 |
56288
|
michele.ar
|
<url>https://jenkins-dnet.d4science.org/view/DNet45/job/DSL45_dnet-orgs-database-application/</url>
|
15 |
53054
|
michele.ar
|
</ciManagement>
|
16 |
|
|
<distributionManagement>
|
17 |
|
|
<repository>
|
18 |
|
|
<id>dnet45-releases</id>
|
19 |
|
|
<name>D-Net 45 Releases</name>
|
20 |
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-releases</url>
|
21 |
|
|
<layout>default</layout>
|
22 |
|
|
</repository>
|
23 |
|
|
</distributionManagement>
|
24 |
|
|
|
25 |
|
|
<!-- Inherit defaults from Spring Boot -->
|
26 |
|
|
<parent>
|
27 |
|
|
<groupId>org.springframework.boot</groupId>
|
28 |
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
29 |
53069
|
michele.ar
|
<version>2.0.3.RELEASE</version>
|
30 |
53054
|
michele.ar
|
</parent>
|
31 |
|
|
|
32 |
|
|
<repositories>
|
33 |
|
|
<repository>
|
34 |
|
|
<id>dnet-deps</id>
|
35 |
|
|
<name>dnet-dependencies</name>
|
36 |
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
|
37 |
|
|
<layout>default</layout>
|
38 |
|
|
</repository>
|
39 |
|
|
<repository>
|
40 |
|
|
<id>dnet45-releases</id>
|
41 |
|
|
<name>D-Net 45 Releases</name>
|
42 |
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-releases</url>
|
43 |
|
|
<layout>default</layout>
|
44 |
|
|
<snapshots>
|
45 |
|
|
<enabled>true</enabled>
|
46 |
|
|
</snapshots>
|
47 |
|
|
</repository>
|
48 |
|
|
<repository>
|
49 |
53057
|
michele.ar
|
<id>dnet45-snapshots</id>
|
50 |
|
|
<name>D-Net 45 Snapshots</name>
|
51 |
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-snapshots</url>
|
52 |
|
|
<layout>default</layout>
|
53 |
|
|
<snapshots>
|
54 |
|
|
<enabled>true</enabled>
|
55 |
|
|
</snapshots>
|
56 |
|
|
</repository>
|
57 |
53054
|
michele.ar
|
</repositories>
|
58 |
|
|
|
59 |
|
|
|
60 |
|
|
|
61 |
|
|
|
62 |
|
|
<!-- Add typical dependencies for a web application -->
|
63 |
|
|
<dependencies>
|
64 |
53057
|
michele.ar
|
<dependency>
|
65 |
53069
|
michele.ar
|
<groupId>org.springframework.boot</groupId>
|
66 |
56340
|
michele.ar
|
<artifactId>spring-boot-starter-web</artifactId>
|
67 |
53069
|
michele.ar
|
</dependency>
|
68 |
|
|
<dependency>
|
69 |
57531
|
michele.ar
|
<groupId>org.springframework.boot</groupId>
|
70 |
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
71 |
|
|
</dependency>
|
72 |
|
|
<dependency>
|
73 |
56340
|
michele.ar
|
<groupId>org.springframework.boot</groupId>
|
74 |
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
75 |
53057
|
michele.ar
|
</dependency>
|
76 |
|
|
<dependency>
|
77 |
56340
|
michele.ar
|
<groupId>org.springframework.boot</groupId>
|
78 |
|
|
<artifactId>spring-boot-starter-json</artifactId>
|
79 |
53057
|
michele.ar
|
</dependency>
|
80 |
|
|
<dependency>
|
81 |
57212
|
michele.ar
|
<groupId>org.springframework.boot</groupId>
|
82 |
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
83 |
|
|
</dependency>
|
84 |
|
|
<dependency>
|
85 |
57531
|
michele.ar
|
<groupId>org.thymeleaf.extras</groupId>
|
86 |
|
|
<artifactId>thymeleaf-extras-springsecurity4</artifactId>
|
87 |
|
|
</dependency>
|
88 |
|
|
<dependency>
|
89 |
56340
|
michele.ar
|
<groupId>org.postgresql</groupId>
|
90 |
|
|
<artifactId>postgresql</artifactId>
|
91 |
53057
|
michele.ar
|
</dependency>
|
92 |
53097
|
michele.ar
|
<dependency>
|
93 |
56340
|
michele.ar
|
<groupId>com.vladmihalcea</groupId>
|
94 |
|
|
<artifactId>hibernate-types-52</artifactId>
|
95 |
|
|
<version>2.3.5</version>
|
96 |
53097
|
michele.ar
|
</dependency>
|
97 |
57531
|
michele.ar
|
<!-- hot swapping, disable cache for template, enable live reload -->
|
98 |
57854
|
michele.ar
|
<dependency>
|
99 |
57531
|
michele.ar
|
<groupId>org.springframework.boot</groupId>
|
100 |
|
|
<artifactId>spring-boot-devtools</artifactId>
|
101 |
|
|
<optional>true</optional>
|
102 |
57854
|
michele.ar
|
</dependency>
|
103 |
56672
|
michele.ar
|
|
104 |
56340
|
michele.ar
|
<!-- Utils -->
|
105 |
53120
|
michele.ar
|
<dependency>
|
106 |
56340
|
michele.ar
|
<groupId>commons-io</groupId>
|
107 |
|
|
<artifactId>commons-io</artifactId>
|
108 |
|
|
<version>2.6</version>
|
109 |
|
|
</dependency>
|
110 |
56672
|
michele.ar
|
<dependency>
|
111 |
|
|
<groupId>org.apache.commons</groupId>
|
112 |
|
|
<artifactId>commons-lang3</artifactId>
|
113 |
|
|
</dependency>
|
114 |
|
|
<dependency>
|
115 |
|
|
<groupId>commons-codec</groupId>
|
116 |
|
|
<artifactId>commons-codec</artifactId>
|
117 |
|
|
</dependency>
|
118 |
56340
|
michele.ar
|
<!-- Swagger -->
|
119 |
|
|
<dependency>
|
120 |
|
|
<groupId>io.springfox</groupId>
|
121 |
|
|
<artifactId>springfox-swagger2</artifactId>
|
122 |
|
|
<version>2.9.2</version>
|
123 |
|
|
</dependency>
|
124 |
|
|
|
125 |
|
|
<dependency>
|
126 |
|
|
<groupId>io.springfox</groupId>
|
127 |
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
128 |
|
|
<version>2.9.2</version>
|
129 |
|
|
</dependency>
|
130 |
56672
|
michele.ar
|
|
131 |
|
|
|
132 |
56340
|
michele.ar
|
<!-- Tests -->
|
133 |
|
|
<dependency>
|
134 |
53120
|
michele.ar
|
<groupId>junit</groupId>
|
135 |
|
|
<artifactId>junit</artifactId>
|
136 |
|
|
<scope>test</scope>
|
137 |
|
|
</dependency>
|
138 |
53054
|
michele.ar
|
</dependencies>
|
139 |
|
|
|
140 |
|
|
<build>
|
141 |
|
|
<plugins>
|
142 |
|
|
<plugin>
|
143 |
|
|
<groupId>org.springframework.boot</groupId>
|
144 |
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
145 |
|
|
<configuration>
|
146 |
|
|
<executable>true</executable>
|
147 |
|
|
</configuration>
|
148 |
|
|
</plugin>
|
149 |
|
|
</plugins>
|
150 |
|
|
</build>
|
151 |
|
|
|
152 |
|
|
<properties>
|
153 |
|
|
<java.version>1.8</java.version>
|
154 |
|
|
<apache.solr.version>7.1.0</apache.solr.version>
|
155 |
|
|
<mongodb.driver.version>3.4.2</mongodb.driver.version>
|
156 |
|
|
<springfox-version>2.8.0</springfox-version>
|
157 |
|
|
<prometheus.version>0.2.0</prometheus.version>
|
158 |
|
|
<javamelody.version>1.71.0</javamelody.version>
|
159 |
|
|
<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
|
160 |
|
|
<dockerfile-maven-version>1.3.6</dockerfile-maven-version>
|
161 |
|
|
</properties>
|
162 |
|
|
</project>
|