image-modules
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>it.tidalwave.image</groupId>
<artifactId>image-modules</artifactId>
<version>1.0-ALPHA-7</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.tidalwave.image</groupId>
<artifactId>image</artifactId>
<version>1.0-ALPHA-7</version>
</parent>
<groupId>it.tidalwave.image</groupId>
<artifactId>image-modules</artifactId>
<packaging>pom</packaging>
<version>1.0-ALPHA-7</version>
<name>Mistral (modules)</name>
<properties>
<tft.javac.source>11</tft.javac.source>
<tft.javac.target>11</tft.javac.target>
<tft.javac.release>11</tft.javac.release>
<antlr4.version>4.3</antlr4.version>
<jrawio.version>1.7-ALPHA-1</jrawio.version>
<metadata-extractor.version>2.18.0</metadata-extractor.version>
<st4.version>4.0.8</st4.version>
<thesefoolishthings.version>3.2-ALPHA-13</thesefoolishthings.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>it.tidalwave.thesefoolishthings</groupId>
<artifactId>thesefoolishthings</artifactId>
<version>${thesefoolishthings.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.rawdarkroom</groupId>
<artifactId>jrawio</artifactId>
<version>${jrawio.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4</artifactId>
<version>${antlr4.version}</version>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>ST4</artifactId>
<version>${st4.version}</version>
</dependency>
<dependency> <!-- FIXME: drop it -->
<groupId>org.swinglabs</groupId>
<artifactId>swing-layout</artifactId>
<version>1.0.3</version>
</dependency>
<dependency>
<groupId>com.drewnoakes</groupId>
<artifactId>metadata-extractor</artifactId>
<version>${metadata-extractor.version}</version>
</dependency>
<dependency>
<groupId>com.kenai.nbpwr</groupId>
<artifactId>com-sun-media-imageio</artifactId>
<version>1.1-201007271250</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${tft.lombok.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<!-- TEST DEPENDENCIES -->
<dependency>
<groupId>it.tidalwave.thesefoolishthings</groupId>
<artifactId>it-tidalwave-util-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<modules>
<module>CodeGenerator</module>
<module>Core</module>
<module>Operations</module>
<module>Contributions</module>
<module>Processor</module>
<module>Renderer</module>
<module>Examples</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<testSet.stoppingdown_100_20230116.folder>${testSet.stoppingdown_100_20230116.folder}</testSet.stoppingdown_100_20230116.folder>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</project>