2024-10-31 21:21:54 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<!-- This module was also published with a richer model, Gradle metadata, -->
|
|
|
|
<!-- which should be used instead. Do not delete the following line which -->
|
|
|
|
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
|
|
|
<!-- that they should prefer consuming it instead. -->
|
|
|
|
<!-- do_not_remove: published-with-gradle-metadata -->
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.pushing-pixels</groupId>
|
|
|
|
<artifactId>radiance-svg-transcoder</artifactId>
|
2025-06-24 12:03:35 +00:00
|
|
|
<version>8.0.0</version>
|
2024-10-31 21:21:54 +00:00
|
|
|
<name>Radiance vector icon transcoder</name>
|
|
|
|
<description>Building modern, elegant and fast Swing applications</description>
|
|
|
|
<url>https://github.com/kirill-grouchnikov/radiance</url>
|
|
|
|
<inceptionYear>2018</inceptionYear>
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>BSD 3-Clause License</name>
|
|
|
|
<url>https://opensource.org/licenses/BSD-3-Clause</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>kirill-grouchnikov</id>
|
|
|
|
<name>Kirill Grouchnikov</name>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git://github.com/kirill-grouchnikov/radiance</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git@github.com/kirill-grouchnikov/radiance</developerConnection>
|
|
|
|
<url>https://github.com/kirill-grouchnikov/radiance</url>
|
|
|
|
</scm>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
|
|
<artifactId>batik-all</artifactId>
|
2025-06-24 12:03:35 +00:00
|
|
|
<version>1.19</version>
|
2024-10-31 21:21:54 +00:00
|
|
|
<scope>runtime</scope>
|
2025-06-24 12:03:35 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
<artifactId>xml-apis</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2024-10-31 21:21:54 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.pushing-pixels</groupId>
|
|
|
|
<artifactId>radiance-common</artifactId>
|
2025-06-24 12:03:35 +00:00
|
|
|
<version>8.0.0</version>
|
2024-10-31 21:21:54 +00:00
|
|
|
<scope>runtime</scope>
|
2025-06-24 12:03:35 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
<artifactId>xml-apis</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2024-10-31 21:21:54 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|