com.io7m.jcolorspace
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.io7m.jcolorspace</groupId> <artifactId>com.io7m.jcolorspace</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.io7m.primogenitor</groupId> <artifactId>com.io7m.primogenitor.full</artifactId> <version>8.2.0</version> </parent> <groupId>com.io7m.jcolorspace</groupId> <artifactId>com.io7m.jcolorspace</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <name>com.io7m.jcolorspace</name> <description>Color space conversions</description> <url>https://www.io7m.com/software/jcolorspace</url> <modules> <module>com.io7m.jcolorspace.tests</module> <module>com.io7m.jcolorspace.core</module> <module>com.io7m.jcolorspace.demo</module> </modules> <properties> <!-- Configuration. --> <io7m.api.previousVersion>1.0.0</io7m.api.previousVersion> <io7m.java.targetJavaVersion>21</io7m.java.targetJavaVersion> <!-- Third-party dependencies. --> <jqwik.version>1.8.4</jqwik.version> <junit.version>5.10.2</junit.version> <javafx.version>21.0.3</javafx.version> </properties> <licenses> <license> <name>ISC</name> <url>https://www.io7m.com/license/isc.txt</url> </license> </licenses> <scm> <url>https://www.github.com/io7m-com/jcolorspace</url> <connection>scm:git:https://www.github.com/io7m-com/jcolorspace</connection> <developerConnection>scm:git:https://www.github.com/io7m-com/jcolorspace</developerConnection> </scm> <developers> <developer> <id>io7m</id> <name>io7m</name> <email>code@io7m.com</email> <url>https://www.io7m.com</url> </developer> </developers> <issueManagement> <url>https://www.github.com/io7m-com/jcolorspace/issues</url> <system>GitHub Issues</system> </issueManagement> <distributionManagement> <site> <id>io7m.com</id> <name>io7m.com</name> <url>https://www.io7m.com/software/jcolorspace</url> </site> <repository> <id>sonatype-nexus-staging</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <ciManagement> <system>GitHub Actions</system> <url>https://www.github.com/io7m-com/jcolorspace/actions</url> </ciManagement> <prerequisites> <maven>3.0.4</maven> </prerequisites> <dependencyManagement> <dependencies> <dependency> <groupId>com.io7m.jtensors</groupId> <artifactId>com.io7m.jtensors.core</artifactId> <version>11.0.0</version> </dependency> <dependency> <groupId>com.io7m.junreachable</groupId> <artifactId>com.io7m.junreachable.core</artifactId> <version>4.0.2</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.13</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.5.6</version> <exclusions> <exclusion> <groupId>com.sun.mail</groupId> <artifactId>javax.mail</artifactId> </exclusion> </exclusions> </dependency> <!-- Test suite. --> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${junit.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>net.jqwik</groupId> <artifactId>jqwik-engine</artifactId> <version>${jqwik.version}</version> </dependency> <dependency> <groupId>net.jqwik</groupId> <artifactId>jqwik-api</artifactId> <version>${jqwik.version}</version> </dependency> <!-- Build and metadata. --> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.annotation.bundle</artifactId> <version>2.0.0</version> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.annotation.versioning</artifactId> <version>1.1.2</version> </dependency> <!-- JavaFX --> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-graphics</artifactId> <version>${javafx.version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> <version>${javafx.version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> <version>${javafx.version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-base</artifactId> <version>${javafx.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <suppressionsLocation>checkstyle-filter.xml</suppressionsLocation> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <!-- Generate a site --> <plugin> <groupId>com.io7m.minisite</groupId> <artifactId>com.io7m.minisite.maven_plugin</artifactId> <inherited>false</inherited> </plugin> </plugins> </build> </project>