|
256 | 256 | <groupId>org.slf4j</groupId>
|
257 | 257 | <artifactId>slf4j-api</artifactId>
|
258 | 258 | </exclusion>
|
| 259 | + <exclusion> |
| 260 | + <groupId>org.apache.xmlgraphics</groupId> |
| 261 | + <artifactId>batik-css</artifactId> |
| 262 | + </exclusion> |
| 263 | + </exclusions> |
| 264 | + </dependency> |
| 265 | + <dependency> |
| 266 | + <groupId>org.apache.xmlgraphics</groupId> |
| 267 | + <artifactId>batik-css</artifactId> |
| 268 | + <version>1.17</version> |
| 269 | + <exclusions> |
| 270 | + <exclusion> |
| 271 | + <groupId>commons-logging</groupId> |
| 272 | + <artifactId>commons-logging</artifactId> |
| 273 | + </exclusion> |
259 | 274 | </exclusions>
|
260 | 275 | </dependency>
|
261 | 276 | <dependency>
|
|
953 | 968 | </plugins>
|
954 | 969 | </build>
|
955 | 970 | </profile>
|
| 971 | + <profile> |
| 972 | + <id>jakarta</id> |
| 973 | + <activation> |
| 974 | + <activeByDefault>true</activeByDefault> |
| 975 | + </activation> |
| 976 | + <build> |
| 977 | + <plugins> |
| 978 | + <plugin> |
| 979 | + <groupId>org.eclipse.transformer</groupId> |
| 980 | + <artifactId>transformer-maven-plugin</artifactId> |
| 981 | + <extensions>true</extensions> |
| 982 | + <configuration> |
| 983 | + <rules> |
| 984 | + <jakartaDefaults>true</jakartaDefaults> |
| 985 | + </rules> |
| 986 | + </configuration> |
| 987 | + <executions> |
| 988 | + <execution> |
| 989 | + <id>default-jar</id> |
| 990 | + <goals> |
| 991 | + <goal>jar</goal> |
| 992 | + </goals> |
| 993 | + <configuration> |
| 994 | + <classifier>jakarta</classifier> |
| 995 | + <artifact> |
| 996 | + <groupId>org.owasp.esapi</groupId> |
| 997 | + <artifactId>esapi</artifactId> |
| 998 | + <version>${project.version}</version> |
| 999 | + </artifact> |
| 1000 | + </configuration> |
| 1001 | + </execution> |
| 1002 | + <execution> |
| 1003 | + <id>javadoc-jar</id> |
| 1004 | + <goals> |
| 1005 | + <goal>jar</goal> |
| 1006 | + </goals> |
| 1007 | + <configuration> |
| 1008 | + <skip>false</skip> |
| 1009 | + <classifier>jakarta-javadoc</classifier> |
| 1010 | + <artifact> |
| 1011 | + <groupId>org.owasp.esapi</groupId> |
| 1012 | + <artifactId>esapi</artifactId> |
| 1013 | + <version>${project.version}</version> |
| 1014 | + <classifier>javadoc</classifier> |
| 1015 | + </artifact> |
| 1016 | + </configuration> |
| 1017 | + </execution> |
| 1018 | + <execution> |
| 1019 | + <id>source-jar</id> |
| 1020 | + <goals> |
| 1021 | + <goal>jar</goal> |
| 1022 | + </goals> |
| 1023 | + <configuration> |
| 1024 | + <skip>false</skip> |
| 1025 | + <classifier>jakarta-sources</classifier> |
| 1026 | + <artifact> |
| 1027 | + <groupId>org.owasp.esapi</groupId> |
| 1028 | + <artifactId>esapi</artifactId> |
| 1029 | + <version>${project.version}</version> |
| 1030 | + <classifier>sources</classifier> |
| 1031 | + </artifact> |
| 1032 | + </configuration> |
| 1033 | + </execution> |
| 1034 | + </executions> |
| 1035 | + </plugin> |
| 1036 | + </plugins> |
| 1037 | + </build> |
| 1038 | + </profile> |
956 | 1039 | </profiles>
|
957 | 1040 | </project>
|
0 commit comments