|
1 | 1 | <?xml version="1.0"?> |
2 | | -<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 3 | + xmlns="http://maven.apache.org/POM/4.0.0" |
3 | 4 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
4 | 5 | <parent> |
5 | 6 | <groupId>org.grnet</groupId> |
|
12 | 13 | <version>${revision}</version> |
13 | 14 | <name>cat-api</name> |
14 | 15 | <properties> |
15 | | - <junit.vintage.engine.version>5.10.0</junit.vintage.engine.version> |
16 | | - <mockito.core.version>5.5.0</mockito.core.version> |
17 | 16 | </properties> |
18 | 17 | <dependencies> |
| 18 | + |
19 | 19 | <dependency> |
20 | 20 | <groupId>org.apache.pdfbox</groupId> |
21 | 21 | <artifactId>pdfbox</artifactId> |
22 | 22 | <version>2.0.27</version> <!-- Use the latest version --> |
| 23 | + <exclusions> |
| 24 | + <exclusion> |
| 25 | + <groupId>junit</groupId> |
| 26 | + <artifactId>junit</artifactId> |
| 27 | + </exclusion> |
| 28 | + </exclusions> |
23 | 29 | </dependency> |
24 | 30 |
|
25 | 31 | <dependency> |
26 | | - <groupId>io.quarkus</groupId> |
27 | | - <artifactId>quarkus-resteasy-reactive-jackson</artifactId> |
28 | | - </dependency> |
| 32 | + <groupId>io.quarkus</groupId> |
| 33 | + <artifactId>quarkus-rest-jackson</artifactId> |
| 34 | + </dependency> |
29 | 35 | <dependency> |
30 | 36 | <groupId>org.grnet</groupId> |
31 | 37 | <artifactId>cat-validators</artifactId> |
|
82 | 88 | <scope>test</scope> |
83 | 89 | </dependency> |
84 | 90 | <dependency> |
85 | | - <groupId>org.junit.vintage</groupId> |
86 | | - <artifactId>junit-vintage-engine</artifactId> |
87 | | - <version>${junit.vintage.engine.version}</version> |
| 91 | + <groupId>io.rest-assured</groupId> |
| 92 | + <artifactId>rest-assured</artifactId> |
| 93 | + <scope>test</scope> |
| 94 | + <exclusions> |
| 95 | + <exclusion> |
| 96 | + <groupId>org.hamcrest</groupId> |
| 97 | + <artifactId>hamcrest-core</artifactId> |
| 98 | + </exclusion> |
| 99 | + <exclusion> |
| 100 | + <groupId>junit</groupId> |
| 101 | + <artifactId>junit</artifactId> |
| 102 | + </exclusion> |
| 103 | + </exclusions> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>org.junit.jupiter</groupId> |
| 107 | + <artifactId>junit-jupiter-api</artifactId> |
| 108 | + <version>5.13.4</version> |
88 | 109 | <scope>test</scope> |
89 | 110 | </dependency> |
90 | 111 | <dependency> |
91 | | - <groupId>org.mockito</groupId> |
92 | | - <artifactId>mockito-core</artifactId> |
93 | | - <version>${mockito.core.version}</version> |
| 112 | + <groupId>org.junit.jupiter</groupId> |
| 113 | + <artifactId>junit-jupiter-engine</artifactId> |
| 114 | + <version>5.13.4</version> |
94 | 115 | <scope>test</scope> |
95 | 116 | </dependency> |
96 | 117 | <dependency> |
97 | | - <groupId>io.rest-assured</groupId> |
98 | | - <artifactId>rest-assured</artifactId> |
| 118 | + <groupId>org.hamcrest</groupId> |
| 119 | + <artifactId>hamcrest</artifactId> |
| 120 | + <version>2.2</version> |
99 | 121 | <scope>test</scope> |
100 | 122 | </dependency> |
101 | 123 | <dependency> |
|
108 | 130 | <version>1.19.7</version> |
109 | 131 | <scope>test</scope> |
110 | 132 | </dependency> |
111 | | - </dependencies> |
112 | | -<build> |
113 | | - <resources> |
114 | | - <resource> |
115 | | - <directory>src/main/resources</directory> |
116 | | - </resource> |
117 | | - <resource> |
118 | | - <directory>config</directory> |
119 | | - </resource> |
120 | | - </resources> |
121 | | - <plugins> |
122 | | - <plugin> |
123 | | - <groupId>${quarkus.platform.group-id}</groupId> |
124 | | - <artifactId>quarkus-maven-plugin</artifactId> |
125 | | - </plugin> |
126 | | - <plugin> |
127 | | - <groupId>org.jboss.jandex</groupId> |
128 | | - <artifactId>jandex-maven-plugin</artifactId> |
129 | | - </plugin> |
130 | | - <plugin> |
131 | | - <artifactId>maven-surefire-plugin</artifactId> |
132 | | - <version>${surefire-plugin.version}</version> |
133 | | - </plugin> |
134 | | - </plugins> |
135 | | -</build> |
| 133 | + </dependencies> |
| 134 | + <build> |
| 135 | + <resources> |
| 136 | + <resource> |
| 137 | + <directory>src/main/resources</directory> |
| 138 | + </resource> |
| 139 | + <resource> |
| 140 | + <directory>config</directory> |
| 141 | + </resource> |
| 142 | + </resources> |
| 143 | + <plugins> |
| 144 | + <plugin> |
| 145 | + <groupId>${quarkus.platform.group-id}</groupId> |
| 146 | + <artifactId>quarkus-maven-plugin</artifactId> |
| 147 | + </plugin> |
| 148 | + <plugin> |
| 149 | + <groupId>org.jboss.jandex</groupId> |
| 150 | + <artifactId>jandex-maven-plugin</artifactId> |
| 151 | + </plugin> |
| 152 | + <plugin> |
| 153 | + <artifactId>maven-surefire-plugin</artifactId> |
| 154 | + <version>${surefire-plugin.version}</version> |
| 155 | + </plugin> |
| 156 | + </plugins> |
| 157 | + </build> |
136 | 158 | </project> |
0 commit comments