|
5 | 5 |
|
6 | 6 | <groupId>io.github.pixee</groupId> |
7 | 7 | <artifactId>java-security-toolkit</artifactId> |
8 | | - <version>1.0.4</version> |
| 8 | + <version>1.0.5</version> |
9 | 9 |
|
10 | 10 | <name>java-security-toolkit</name> |
11 | 11 | <description>a library with common security controls</description> |
|
90 | 90 | <artifactId>commons-collections4</artifactId> |
91 | 91 | <version>4.4</version> |
92 | 92 | </dependency> |
| 93 | + <dependency> |
| 94 | + <groupId>org.codehaus.mojo</groupId> |
| 95 | + <artifactId>animal-sniffer-annotations</artifactId> |
| 96 | + <version>1.23</version> |
| 97 | + <optional>true</optional> |
| 98 | + </dependency> |
93 | 99 | <!-- needed for testing deserialization protection --> |
94 | 100 | <dependency> |
95 | 101 | <groupId>commons-fileupload</groupId> |
96 | 102 | <artifactId>commons-fileupload</artifactId> |
97 | 103 | <version>1.5</version> |
98 | 104 | <scope>test</scope> |
99 | 105 | </dependency> |
100 | | - |
101 | 106 | <dependency> |
102 | 107 | <groupId>org.junit.jupiter</groupId> |
103 | 108 | <artifactId>junit-jupiter-api</artifactId> |
|
167 | 172 | <target>8</target> |
168 | 173 | </configuration> |
169 | 174 | </plugin> |
| 175 | + <plugin> |
| 176 | + <groupId>org.codehaus.mojo</groupId> |
| 177 | + <artifactId>animal-sniffer-maven-plugin</artifactId> |
| 178 | + <version>1.23</version> |
| 179 | + <configuration> |
| 180 | + <signature> |
| 181 | + <groupId>org.codehaus.mojo.signature</groupId> |
| 182 | + <artifactId>java18</artifactId> |
| 183 | + <version>1.0</version> |
| 184 | + </signature> |
| 185 | + </configuration> |
| 186 | + <executions> |
| 187 | + <execution> |
| 188 | + <id>animal-sniffer</id> |
| 189 | + <phase>test</phase> |
| 190 | + <goals> |
| 191 | + <goal>check</goal> |
| 192 | + </goals> |
| 193 | + </execution> |
| 194 | + </executions> |
| 195 | + </plugin> |
170 | 196 | <plugin> |
171 | 197 | <groupId>org.jacoco</groupId> |
172 | 198 | <artifactId>jacoco-maven-plugin</artifactId> |
|
256 | 282 | <plugin> |
257 | 283 | <artifactId>maven-compiler-plugin</artifactId> |
258 | 284 | </plugin> |
| 285 | + <plugin> |
| 286 | + <groupId>org.codehaus.mojo</groupId> |
| 287 | + <artifactId>animal-sniffer-maven-plugin</artifactId> |
| 288 | + </plugin> |
259 | 289 | <plugin> |
260 | 290 | <groupId>org.jacoco</groupId> |
261 | 291 | <artifactId>jacoco-maven-plugin</artifactId> |
|
0 commit comments