Project

General

Profile

« Previous | Next » 

Revision 61630

first version

View differences:

pom.xml
4 4
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 5

  
6 6
    <parent>
7
        <groupId>eu.dnetlib</groupId>
8
        <artifactId>dnet45-parent</artifactId>
9
        <version>1.0.0-SNAPSHOT</version>
7
        <groupId>org.springframework.boot</groupId>
8
        <artifactId>spring-boot-starter-parent</artifactId>
9
        <version>2.5.4</version>
10 10
    </parent>
11

  
11 12
    <modelVersion>4.0.0</modelVersion>
13
    <groupId>eu.dnetlib</groupId>
12 14
    <artifactId>uoa-repository-manager-service</artifactId>
13 15
    <version>1.0.0-SNAPSHOT</version>
14 16
    <packaging>war</packaging>
15 17

  
18
    <properties>
19
        <spring.boot.version>2.5.4</spring.boot.version>
20
    </properties>
16 21

  
17 22
    <dependencies>
18 23
        <dependency>
19
            <groupId>org.springframework</groupId>
20
            <artifactId>spring-webmvc</artifactId>
21
            <version>${spring.version}</version>
24
            <groupId>org.springframework.boot</groupId>
25
            <artifactId>spring-boot-starter-web</artifactId>
26
            <version>${spring.boot.version}</version>
22 27
        </dependency>
23 28
        <dependency>
24
            <groupId>org.hibernate</groupId>
25
            <artifactId>hibernate-validator-annotation-processor</artifactId>
26
            <version>4.1.0.Final</version>
29
            <groupId>org.springframework.boot</groupId>
30
            <artifactId>spring-boot-starter-data-jdbc</artifactId>
31
            <version>${spring.boot.version}</version>
27 32
        </dependency>
28 33
        <dependency>
29
            <groupId>log4j</groupId>
30
            <artifactId>log4j</artifactId>
31
            <version>${log4j.version}</version>
34
            <groupId>org.springframework.boot</groupId>
35
            <artifactId>spring-boot-actuator-autoconfigure</artifactId>
36
            <version>${spring.boot.version}</version>
32 37
        </dependency>
33 38
        <dependency>
34 39
            <groupId>eu.dnetlib</groupId>
35
            <artifactId>dnet-runtime</artifactId>
36
            <version>[1.0.0-SNAPSHOT, 2.0.0)</version>
37
            <exclusions>
38
                <exclusion>  <!-- declare the exclusion here -->
39
                    <groupId>org.apache.geronimo.specs</groupId>
40
                    <artifactId>geronimo-javamail_1.4_spec</artifactId>
41
                </exclusion>
42
            </exclusions>
43
        </dependency>
44
        <dependency>
45
            <groupId>eu.dnetlib</groupId>
46
            <artifactId>uoa-utils</artifactId>
40
            <artifactId>uoa-clients</artifactId>
47 41
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
48 42
        </dependency>
43
<!--        <dependency>-->
44
<!--            <groupId>org.springframework</groupId>-->
45
<!--            <artifactId>spring-webmvc</artifactId>-->
46
<!--            <version>${spring.version}</version>-->
47
<!--        </dependency>-->
48
<!--        <dependency>-->
49
<!--            <groupId>org.hibernate</groupId>-->
50
<!--            <artifactId>hibernate-validator-annotation-processor</artifactId>-->
51
<!--            <version>4.1.0.Final</version>-->
52
<!--        </dependency>-->
53
<!--        <dependency>-->
54
<!--            <groupId>log4j</groupId>-->
55
<!--            <artifactId>log4j</artifactId>-->
56
<!--            <version>${log4j.version}</version>-->
57
<!--        </dependency>-->
49 58
        <dependency>
50 59
            <groupId>eu.dnetlib</groupId>
51 60
            <artifactId>uoa-domain</artifactId>
......
80 89
        </dependency>
81 90

  
82 91
        <dependency>
83
            <groupId>eu.dnetlib</groupId>
84
            <artifactId>uoa-commons</artifactId>
85
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
86
        </dependency>
87
        <dependency>
88
            <groupId>eu.dnetlib</groupId>
89
            <artifactId>uoa-clients</artifactId>
90
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
91
        </dependency>
92
        <dependency>
93
            <groupId>eu.dnetlib</groupId>
94
            <artifactId>uoa-hcm</artifactId>
95
            <version>[2.0.0-SNAPSHOT, 3.0.0)</version>
96
        </dependency>
97

  
98
        <dependency>
99 92
            <groupId>commons-io</groupId>
100 93
            <artifactId>commons-io</artifactId>
101 94
            <version>2.4</version>
......
106 99
            <artifactId>oai4j</artifactId>
107 100
            <version>[0.6b1,)</version>
108 101
        </dependency>
109
        <dependency>
110
            <groupId>xalan</groupId>
111
            <artifactId>xalan</artifactId>
112
            <version>2.7.2</version>
113
        </dependency>
102
<!--        <dependency>-->
103
<!--            <groupId>xalan</groupId>-->
104
<!--            <artifactId>xalan</artifactId>-->
105
<!--            <version>2.7.2</version>-->
106
<!--        </dependency>-->
114 107

  
115
        <dependency>
116
            <groupId>xerces</groupId>
117
            <artifactId>xercesImpl</artifactId>
118
            <version>2.11.0</version>
119
        </dependency>
108
<!--        <dependency>-->
109
<!--            <groupId>xerces</groupId>-->
110
<!--            <artifactId>xercesImpl</artifactId>-->
111
<!--            <version>2.11.0</version>-->
112
<!--        </dependency>-->
120 113

  
121 114
        <dependency>
122 115
            <groupId>com.fasterxml.jackson.core</groupId>
......
131 124
            <scope>compile</scope>
132 125
        </dependency>
133 126

  
134
        <dependency>
135
            <groupId>org.springframework</groupId>
136
            <artifactId>spring-context</artifactId>
137
            <version>${spring.version}</version>
138
        </dependency>
127
<!--        <dependency>-->
128
<!--            <groupId>org.springframework</groupId>-->
129
<!--            <artifactId>spring-context</artifactId>-->
130
<!--            <version>${spring.version}</version>-->
131
<!--        </dependency>-->
139 132

  
140
        <dependency>
141
            <groupId>org.springframework</groupId>
142
            <artifactId>spring-jdbc</artifactId>
143
            <version>${spring.version}</version>
144
        </dependency>
133
<!--        <dependency>-->
134
<!--            <groupId>org.springframework</groupId>-->
135
<!--            <artifactId>spring-jdbc</artifactId>-->
136
<!--            <version>${spring.version}</version>-->
137
<!--        </dependency>-->
145 138

  
146 139
        <dependency>
147 140
            <groupId>com.sun.jersey</groupId>
......
185 178
        </dependency>
186 179

  
187 180
        <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-catalina -->
188
        <dependency>
189
            <groupId>org.apache.tomcat</groupId>
190
            <artifactId>tomcat-catalina</artifactId>
191
            <version>9.0.22</version>
192
        </dependency>
181
<!--        <dependency>-->
182
<!--            <groupId>org.apache.tomcat</groupId>-->
183
<!--            <artifactId>tomcat-catalina</artifactId>-->
184
<!--            <version>9.0.22</version>-->
185
<!--        </dependency>-->
193 186

  
194 187
        <dependency>
195 188
            <groupId>commons-fileupload</groupId>
......
297 290
        </dependency>
298 291

  
299 292
        <!-- Enable micrometer >> -->
300
        <dependency> <!-- TODO: remove this with ActuatorConfig class -->
301
            <groupId>org.springframework.boot</groupId>
302
            <artifactId>spring-boot-actuator</artifactId>
303
            <version>1.3.5.RELEASE</version>
304
        </dependency>
293
<!--        <dependency> &lt;!&ndash; TODO: remove this with ActuatorConfig class &ndash;&gt;-->
294
<!--            <groupId>org.springframework.boot</groupId>-->
295
<!--            <artifactId>spring-boot-actuator</artifactId>-->
296
<!--            <version>1.3.5.RELEASE</version>-->
297
<!--        </dependency>-->
305 298
<!--        <dependency>-->
306 299
<!--            <groupId>org.springframework.boot</groupId>-->
307 300
<!--            <artifactId>spring-boot-actuator-autoconfigure</artifactId>-->
308 301
<!--            <version>2.1.18.RELEASE</version>-->
309 302
<!--        </dependency>-->
303
<!--        <dependency>-->
304
<!--            <groupId>io.micrometer</groupId>-->
305
<!--            <artifactId>micrometer-core</artifactId>-->
306
<!--            <version>1.7.2</version>-->
307
<!--        </dependency>-->
310 308
        <dependency>
311 309
            <groupId>io.micrometer</groupId>
312
            <artifactId>micrometer-core</artifactId>
313
            <version>1.7.2</version>
314
        </dependency>
315
        <dependency>
316
            <groupId>io.micrometer</groupId>
317 310
            <artifactId>micrometer-registry-prometheus</artifactId>
318 311
            <version>1.7.2</version>
319 312
            <scope>compile</scope>
......
377 370
        </resources>
378 371
    </build>
379 372

  
380

  
381
</project>
373
    <repositories>
374
        <repository>
375
            <id>dnet-deps</id>
376
            <name>dnet-dependencies</name>
377
            <url>https://maven.d4science.org/nexus/content/repositories/dnet-deps</url>
378
            <layout>default</layout>
379
        </repository>
380
        <repository>
381
            <id>dnet45-snapshots</id>
382
            <name>D-Net 45 Snapshots</name>
383
            <url>https://maven.d4science.org/nexus/content/repositories/dnet45-snapshots</url>
384
            <layout>default</layout>
385
            <snapshots>
386
                <enabled>true</enabled>
387
            </snapshots>
388
        </repository>
389
        <repository>
390
            <id>dnet45-releases</id>
391
            <name>D-Net 45 Releases</name>
392
            <url>https://maven.d4science.org/nexus/content/repositories/dnet45-releases</url>
393
            <layout>default</layout>
394
            <snapshots>
395
                <enabled>true</enabled>
396
            </snapshots>
397
        </repository>
398
    </repositories>
399
</project>

Also available in: Unified diff