|
27 | 27 | <spotbugs.excludes.file>${project.basedir}/src/main/spotbugs/excludes.xml</spotbugs.excludes.file> |
28 | 28 | <version.assertj>3.20.2</version.assertj> |
29 | 29 | <version.common-utils>3.0.0</version.common-utils> |
| 30 | + <version.commons-codec>1.7</version.commons-codec> |
30 | 31 | <version.commons-lang3>3.12.0</version.commons-lang3> |
31 | 32 | <version.commons-net>3.6</version.commons-net> |
32 | 33 | <version.geowave>1.2.0</version.geowave> |
| 34 | + <version.guava>28.1-jre</version.guava> |
| 35 | + <version.jackson>2.10.1</version.jackson> |
| 36 | + <version.jakarta-bind-api>2.3.3</version.jakarta-bind-api> |
33 | 37 | <version.jaxb>2.3.3</version.jaxb> |
34 | 38 | <version.jts>1.19.0</version.jts> |
35 | 39 | <version.protostuff>1.6.2</version.protostuff> |
|
121 | 125 | </dependencies> |
122 | 126 | </dependencyManagement> |
123 | 127 | <dependencies> |
| 128 | + <dependency> |
| 129 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 130 | + <artifactId>jackson-core</artifactId> |
| 131 | + <version>${version.jackson}</version> |
| 132 | + </dependency> |
| 133 | + <dependency> |
| 134 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 135 | + <artifactId>jackson-databind</artifactId> |
| 136 | + <version>${version.jackson}</version> |
| 137 | + </dependency> |
| 138 | + <dependency> |
| 139 | + <groupId>com.google.guava</groupId> |
| 140 | + <artifactId>guava</artifactId> |
| 141 | + <version>${version.guava}</version> |
| 142 | + </dependency> |
124 | 143 | <dependency> |
125 | 144 | <groupId>com.sun.xml.bind</groupId> |
126 | 145 | <artifactId>jaxb-impl</artifactId> |
127 | 146 | </dependency> |
| 147 | + <dependency> |
| 148 | + <groupId>commons-codec</groupId> |
| 149 | + <artifactId>commons-codec</artifactId> |
| 150 | + <version>${version.commons-codec}</version> |
| 151 | + </dependency> |
128 | 152 | <dependency> |
129 | 153 | <groupId>commons-net</groupId> |
130 | 154 | <artifactId>commons-net</artifactId> |
|
133 | 157 | <groupId>gov.nsa.datawave.microservice</groupId> |
134 | 158 | <artifactId>common-utils</artifactId> |
135 | 159 | </dependency> |
| 160 | + <dependency> |
| 161 | + <groupId>io.protostuff</groupId> |
| 162 | + <artifactId>protostuff-api</artifactId> |
| 163 | + <version>${version.protostuff}</version> |
| 164 | + </dependency> |
136 | 165 | <dependency> |
137 | 166 | <groupId>io.protostuff</groupId> |
138 | 167 | <artifactId>protostuff-collectionschema</artifactId> |
139 | 168 | </dependency> |
| 169 | + <dependency> |
| 170 | + <groupId>jakarta.xml.bind</groupId> |
| 171 | + <artifactId>jakarta.xml.bind-api</artifactId> |
| 172 | + <version>${version.jakarta-bind-api}</version> |
| 173 | + </dependency> |
| 174 | + <!-- |
140 | 175 | <dependency> |
141 | 176 | <groupId>io.protostuff</groupId> |
142 | 177 | <artifactId>protostuff-core</artifactId> |
143 | | - </dependency> |
| 178 | + </dependency> --> |
144 | 179 | <dependency> |
145 | 180 | <groupId>org.apache.commons</groupId> |
146 | 181 | <artifactId>commons-lang3</artifactId> |
|
162 | 197 | <artifactId>assertj-core</artifactId> |
163 | 198 | <scope>test</scope> |
164 | 199 | </dependency> |
| 200 | + <dependency> |
| 201 | + <groupId>org.junit.jupiter</groupId> |
| 202 | + <artifactId>junit-jupiter-api</artifactId> |
| 203 | + <scope>test</scope> |
| 204 | + </dependency> |
165 | 205 | <dependency> |
166 | 206 | <groupId>org.junit.jupiter</groupId> |
167 | 207 | <artifactId>junit-jupiter-engine</artifactId> |
|
0 commit comments