|
5 | 5 | <groupId>org.owasp.antisamy</groupId> |
6 | 6 | <artifactId>antisamy</artifactId> |
7 | 7 | <packaging>jar</packaging> |
8 | | - <version>1.7.5-SNAPSHOT</version> |
| 8 | + <version>1.7.5</version> |
9 | 9 |
|
10 | 10 | <distributionManagement> |
11 | 11 | <snapshotRepository> |
|
73 | 73 | <fluido.version>2.0.0-M8</fluido.version> |
74 | 74 | <gpg.skip>true</gpg.skip><!-- by default skip gpg --> |
75 | 75 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
76 | | - <project.build.outputTimestamp>2023-12-18T21:08:34Z</project.build.outputTimestamp> |
| 76 | + <project.build.outputTimestamp>2024-02-02T15:23:04Z</project.build.outputTimestamp> |
77 | 77 | <project.java.target>1.8</project.java.target> |
78 | 78 | <version.findsecbugs>1.12.0</version.findsecbugs> |
79 | 79 | <version.slf4j>2.0.11</version.slf4j> |
|
92 | 92 |
|
93 | 93 | <dependencies> |
94 | 94 | <dependency> |
95 | | - <groupId>org.htmlunit</groupId> |
96 | | - <artifactId>neko-htmlunit</artifactId> |
97 | | - <version>3.11.0</version> |
| 95 | + <groupId>commons-io</groupId> |
| 96 | + <artifactId>commons-io</artifactId> |
| 97 | + <version>2.15.1</version> |
98 | 98 | </dependency> |
99 | 99 | <dependency> |
100 | 100 | <groupId>org.apache.httpcomponents.client5</groupId> |
101 | 101 | <artifactId>httpclient5</artifactId> |
102 | 102 | <version>5.3.1</version> |
| 103 | + <exclusions> |
| 104 | + <!-- exclude this old version as we directly import a newer one --> |
| 105 | + <exclusion> |
| 106 | + <groupId>org.slf4j</groupId> |
| 107 | + <artifactId>slf4j-api</artifactId> |
| 108 | + </exclusion> |
| 109 | + </exclusions> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>org.apache.httpcomponents.core5</groupId> |
| 113 | + <artifactId>httpcore5</artifactId> |
| 114 | + <version>5.2.4</version> |
103 | 115 | </dependency> |
104 | 116 | <dependency> |
105 | 117 | <groupId>org.apache.xmlgraphics</groupId> |
106 | 118 | <artifactId>batik-css</artifactId> |
107 | 119 | <version>1.17</version> |
108 | 120 | <exclusions> |
109 | | - <!-- exclude this old version of commons-io as newer can be used --> |
| 121 | + <!-- exclude this old version as we directly import a newer one --> |
110 | 122 | <exclusion> |
111 | 123 | <groupId>commons-io</groupId> |
112 | 124 | <artifactId>commons-io</artifactId> |
113 | 125 | </exclusion> |
114 | | - <!-- exclude this as batik-css has a dependency that uses an older commons-logging and we want to eliminate the convergence mismatch --> |
115 | | - <exclusion> |
116 | | - <groupId>commons-logging</groupId> |
117 | | - <artifactId>commons-logging</artifactId> |
118 | | - </exclusion> |
119 | 126 | </exclusions> |
120 | 127 | </dependency> |
121 | 128 | <dependency> |
122 | | - <groupId>commons-io</groupId> |
123 | | - <artifactId>commons-io</artifactId> |
124 | | - <version>2.15.1</version> |
| 129 | + <groupId>org.htmlunit</groupId> |
| 130 | + <artifactId>neko-htmlunit</artifactId> |
| 131 | + <version>3.11.1</version> |
125 | 132 | </dependency> |
126 | 133 | <dependency> |
127 | 134 | <groupId>org.slf4j</groupId> |
128 | 135 | <artifactId>slf4j-api</artifactId> |
129 | 136 | <version>${version.slf4j}</version> |
130 | 137 | </dependency> |
131 | | - <dependency> |
132 | | - <groupId>org.slf4j</groupId> |
133 | | - <artifactId>jcl-over-slf4j</artifactId> |
134 | | - <version>${version.slf4j}</version> |
135 | | - <scope>test</scope> |
136 | | - </dependency> |
137 | | - <!-- without this import you get: SLF4J: Defaulting to no-operation (NOP) logger implementation --> |
138 | | - <dependency> |
139 | | - <groupId>org.slf4j</groupId> |
140 | | - <artifactId>slf4j-simple</artifactId> |
141 | | - <version>${version.slf4j}</version> |
142 | | - <scope>test</scope> |
143 | | - </dependency> |
| 138 | + |
144 | 139 | <!-- While Java 7+ includes Xerces in the JRE, it apparently doesn't provide all the features we use that are in the 3rd party version. |
145 | 140 | So we import it directly. --> |
146 | 141 | <dependency> |
|
201 | 196 | <version>2.2</version> |
202 | 197 | <scope>test</scope> |
203 | 198 | </dependency> |
| 199 | + <dependency> |
| 200 | + <groupId>org.slf4j</groupId> |
| 201 | + <artifactId>jcl-over-slf4j</artifactId> |
| 202 | + <version>${version.slf4j}</version> |
| 203 | + <scope>test</scope> |
| 204 | + </dependency> |
| 205 | + <!-- without this import you get: SLF4J: Defaulting to no-operation (NOP) logger implementation --> |
| 206 | + <dependency> |
| 207 | + <groupId>org.slf4j</groupId> |
| 208 | + <artifactId>slf4j-simple</artifactId> |
| 209 | + <version>${version.slf4j}</version> |
| 210 | + <scope>test</scope> |
| 211 | + </dependency> |
204 | 212 |
|
205 | 213 | </dependencies> |
206 | 214 |
|
|
0 commit comments