image-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>it.tidalwave.image</groupId>
<artifactId>image-core</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-modules</artifactId>
<version>1.0-ALPHA-7</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>image-core</artifactId>
<packaging>jar</packaging>
<name>Mistral Core</name>
<properties>
<codegenerator.src>${project.basedir}/src/main/codegenerator</codegenerator.src>
<generatedSources.target>${project.basedir}/target/generated-sources/codegenerator</generatedSources.target>
</properties>
<dependencies>
<dependency>
<groupId>it.tidalwave.thesefoolishthings</groupId>
<artifactId>it-tidalwave-util</artifactId>
</dependency>
<dependency>
<groupId>org.rawdarkroom</groupId>
<artifactId>codec</artifactId>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.drewnoakes</groupId>
<artifactId>metadata-extractor</artifactId>
</dependency>
<dependency>
<groupId>com.kenai.nbpwr</groupId>
<artifactId>com-sun-media-imageio</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version> <!-- FIXME -->
<executions>
<execution>
<id>generate-exif</id>
<phase>generate-sources</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<arguments>
<argument>EXIFDirectoryGenerated</argument>
<argument>${codegenerator.src}/TIFF.properties</argument>
<argument>${codegenerator.src}/MetadataGenerator.stg</argument>
<argument>${generatedSources.target}/it/tidalwave/image/metadata/</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>generate-iptc</id>
<phase>generate-sources</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<arguments>
<argument>IPTCDirectoryGenerated</argument>
<argument>${codegenerator.src}/IPTC.properties</argument>
<argument>${codegenerator.src}/MetadataGenerator.stg</argument>
<argument>${generatedSources.target}/it/tidalwave/image/metadata/</argument>
</arguments>
</configuration>
</execution>
</executions>
<configuration>
<mainClass>it.tidalwave.image.codegenerator.MetadataGenerator</mainClass>
<includeProjectDependencies>false</includeProjectDependencies>
<includePluginDependencies>true</includePluginDependencies>
<useMavenLogger>true</useMavenLogger>
<executableDependency>
<groupId>it.tidalwave.image</groupId>
<artifactId>code-generator</artifactId>
</executableDependency>
</configuration>
<dependencies>
<dependency>
<groupId>it.tidalwave.image</groupId>
<artifactId>code-generator</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${generatedSources.target}</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*Generated.class</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>