|
11 | 11 |
|
12 | 12 | <jsf.version>2.2.15</jsf.version> |
13 | 13 | <primefaces.version>7.0</primefaces.version> |
14 | | - <jetty.version>9.4.29.v20200521</jetty.version> |
| 14 | + <jetty.version>9.4.56.v20240826</jetty.version> |
| 15 | + <log4j.version>2.24.2</log4j.version> |
15 | 16 | </properties> |
16 | 17 | <dependencies> |
17 | 18 | <dependency> |
|
68 | 69 | <dependency> |
69 | 70 | <groupId>commons-codec</groupId> |
70 | 71 | <artifactId>commons-codec</artifactId> |
71 | | - <version>1.15</version> |
| 72 | + <version>1.17.1</version> |
72 | 73 | </dependency> |
73 | 74 | <dependency> |
74 | 75 | <groupId>com.github.jsonld-java</groupId> |
75 | 76 | <artifactId>jsonld-java</artifactId> |
76 | | - <version>0.13.4</version> |
| 77 | + <version>0.13.6</version> |
77 | 78 | <exclusions> |
78 | 79 | <exclusion> |
79 | 80 | <groupId>org.apache.httpcomponents</groupId> |
|
93 | 94 | <dependency> |
94 | 95 | <groupId>jaxen</groupId> |
95 | 96 | <artifactId>jaxen</artifactId> |
96 | | - <version>1.2.0</version> |
| 97 | + <version>2.0.0</version> |
97 | 98 | </dependency> |
98 | 99 | <dependency> |
99 | 100 | <groupId>org.jdom</groupId> |
|
103 | 104 | <dependency> |
104 | 105 | <groupId>com.fasterxml.jackson.core</groupId> |
105 | 106 | <artifactId>jackson-core</artifactId> |
106 | | - <version>2.13.0</version> |
| 107 | + <version>2.18.2</version> |
107 | 108 | </dependency> |
108 | 109 | <dependency> |
109 | 110 | <groupId>com.fasterxml.jackson.core</groupId> |
110 | 111 | <artifactId>jackson-databind</artifactId> |
111 | | - <version>2.13.2.1</version> |
| 112 | + <version>2.18.2</version> |
112 | 113 | </dependency> |
113 | 114 | <dependency> |
114 | 115 | <groupId>org.openrdf.sesame</groupId> |
|
123 | 124 | <dependency> |
124 | 125 | <groupId>org.apache.httpcomponents</groupId> |
125 | 126 | <artifactId>httpclient</artifactId> |
126 | | - <version>4.5.13</version> |
| 127 | + <version>4.5.14</version> |
127 | 128 | <exclusions> |
128 | 129 | <exclusion> |
129 | 130 | <groupId>commons-logging</groupId> |
|
144 | 145 | <dependency> |
145 | 146 | <groupId>org.apache.logging.log4j</groupId> |
146 | 147 | <artifactId>log4j-api</artifactId> |
147 | | - <version>2.17.1</version> |
| 148 | + <version>${log4j.version}</version> |
148 | 149 | </dependency> |
149 | 150 | <dependency> |
150 | 151 | <groupId>org.apache.logging.log4j</groupId> |
151 | 152 | <artifactId>log4j-core</artifactId> |
152 | | - <version>2.17.1</version> |
| 153 | + <version>${log4j.version}</version> |
153 | 154 | </dependency> |
154 | 155 | <dependency> |
155 | 156 | <groupId>org.apache.logging.log4j</groupId> |
156 | 157 | <artifactId>log4j-slf4j-impl</artifactId> |
157 | | - <version>2.16.0</version> |
| 158 | + <version>${log4j.version}</version> |
158 | 159 | </dependency> |
159 | 160 | <dependency> |
160 | 161 | <groupId>org.apache.solr</groupId> |
|
166 | 167 | <groupId>org.elasticsearch.client</groupId> |
167 | 168 | <artifactId>elasticsearch-rest-high-level-client</artifactId> |
168 | 169 | <version>7.13.4</version> |
| 170 | + <exclusions> |
| 171 | + <exclusion> |
| 172 | + <groupId>commons-logging</groupId> |
| 173 | + <artifactId>commons-logging</artifactId> |
| 174 | + </exclusion> |
| 175 | + </exclusions> |
169 | 176 | </dependency> |
170 | 177 | <dependency> |
171 | 178 | <groupId>com.amazonaws</groupId> |
172 | 179 | <artifactId>aws-java-sdk-core</artifactId> |
173 | | - <version>1.12.129</version> |
| 180 | + <version>1.12.779</version> |
| 181 | + <exclusions> |
| 182 | + <exclusion> |
| 183 | + <groupId>commons-logging</groupId> |
| 184 | + <artifactId>commons-logging</artifactId> |
| 185 | + </exclusion> |
| 186 | + </exclusions> |
174 | 187 | </dependency> |
| 188 | + <!-- testing --> |
175 | 189 | <dependency> |
176 | 190 | <groupId>junit</groupId> |
177 | 191 | <artifactId>junit</artifactId> |
|
201 | 215 | <plugin> |
202 | 216 | <groupId>org.eclipse.jetty</groupId> |
203 | 217 | <artifactId>jetty-maven-plugin</artifactId> |
204 | | - <version>9.4.30.v20200611</version> |
| 218 | + <version>${jetty.version}</version> |
205 | 219 | <configuration> |
206 | 220 | <httpConnector> |
207 | 221 | <port>8888</port> |
|
219 | 233 | <dependency> |
220 | 234 | <groupId>org.eclipse.jetty</groupId> |
221 | 235 | <artifactId>apache-jstl</artifactId> |
222 | | - <version>9.4.29.v20200521</version> |
| 236 | + <version>${jetty.version}</version> |
223 | 237 | <exclusions> |
224 | 238 | <exclusion> |
225 | 239 | <groupId>org.apache.taglibs</groupId> |
|
0 commit comments