-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
76 lines (70 loc) · 3.58 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.javafee.elibrary</groupId>
<artifactId>elibrary-modules</artifactId>
<packaging>pom</packaging>
<version>4.0-SNAPSHOT</version>
<name>elibrary-modules</name>
<url>http://maven.apache.org</url>
<properties>
<elibrary.version>4.0-SNAPSHOT</elibrary.version>
<maven.compiler.source>13</maven.compiler.source>
<maven.compiler.target>13</maven.compiler.target>
<org.codehaus.mojo.version>3.1.0</org.codehaus.mojo.version>
<sonar.maven.plugin.version>3.4.0.905</sonar.maven.plugin.version>
<junit.version>4.13</junit.version>
<org.reflections.version>0.10.2</org.reflections.version>
<jaxb.api.version>2.3.1</jaxb.api.version>
<jaxb.core.version>4.0.1</jaxb.core.version>
<jaxb.impl.version>4.0.1</jaxb.impl.version>
<jcalendar.version>1.4</jcalendar.version>
<jfontchooser.version>1.0.5-3</jfontchooser.version>
<com.twelvemonkeys.imageio.version>3.9.4</com.twelvemonkeys.imageio.version>
<batik.version>1.16</batik.version>
<edu.vt.middleware.version>3.1.2</edu.vt.middleware.version>
<log4j.version>1.2.17</log4j.version>
<org.apache.logging.log4j.version>2.19.0</org.apache.logging.log4j.version>
<org.bidib.org.oxbow.version>1.2.2</org.bidib.org.oxbow.version>
<net.coderazzi.version>5.5.4</net.coderazzi.version>
<com.sun.mail.version>1.6.2</com.sun.mail.version>
<org.projectlombok.version>1.18.24</org.projectlombok.version>
<common.io.version>2.11.0</common.io.version>
<opencsv.version>4.6</opencsv.version>
<org.apache.poi.version>5.2.3</org.apache.poi.version>
<xerces.version>2.12.2</xerces.version>
<com.itextpdf.version>5.5.1</com.itextpdf.version>
<org.apache.pdfbox.version>3.0.0-RC1</org.apache.pdfbox.version>
<org.bouncycastle.version>1.70</org.bouncycastle.version>
<org.jsoup.version>1.15.3</org.jsoup.version>
<org.apache.httpcomponents.version>4.4.16</org.apache.httpcomponents.version>
<com.mashape.unirest.version>1.4.9</com.mashape.unirest.version>
<org.json.version>20220924</org.json.version>
<postgresql.version>42.5.1</postgresql.version>
<org.apache.maven.plugins>3.3.0</org.apache.maven.plugins>
<org.hibernate.javax.persistence.version>1.0.1.Final</org.hibernate.javax.persistence.version>
<org.hibernate.version>5.4.10.Final</org.hibernate.version>
<javax.ws.rs.version>2.1.1</javax.ws.rs.version>
<org.glassfish.jersey.core.version>3.0.0</org.glassfish.jersey.core.version>
<com.fasterxml.jackson.core.version>2.14.1</com.fasterxml.jackson.core.version>
<jboss.annotations.api.1.2.spec.version>1.0.2.Final</jboss.annotations.api.1.2.spec.version>
<org.jboss.spec.javax.el.version>2.0.0.Final</org.jboss.spec.javax.el.version>
<javax.version>8.0</javax.version>
<com.google.code.gson.version>2.10.1</com.google.code.gson.version>
<io.jsonwebtoken.version>0.9.1</io.jsonwebtoken.version>
<org.reflections.version>0.9.10</org.reflections.version>
<postgresql.driver.version>42.2.12</postgresql.driver.version>
<org.springframework.boot.version>2.3.5.RELEASE</org.springframework.boot.version>
<org.springdoc.version>1.1.33</org.springdoc.version>
<org.modelmapper.version>2.3.8</org.modelmapper.version>
</properties>
<modules>
<module>elibrary-core</module>
<module>elibrary-rest-api</module>
<module>elibrary-hibernate</module>
<module>elibrary-web-rest-api</module>
<module>elibrary-web-front</module>
<module>elibrary-micro</module>
</modules>
</project>