ds-to-spi-annotations-processor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline.build</groupId> <artifactId>ds-to-spi-annotations-processor</artifactId> <version>1.1.4</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.daisy</groupId> <artifactId>daisy</artifactId> <version>4</version> <relativePath /> </parent> <groupId>org.daisy.pipeline.build</groupId> <artifactId>ds-to-spi-annotations-processor</artifactId> <version>1.1.4</version> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <compilerVersion>1.7</compilerVersion> <source>1.8</source> <target>1.8</target> <compilerArgument>-proc:none</compilerArgument> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>ds-to-spi-annotations</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>biz.aQute.bnd</groupId> <artifactId>biz.aQute.bndlib</artifactId> <version>2.4.1</version> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-tools</artifactId> <version>2.0</version> </dependency> </dependencies> <profiles> <profile> <id>default-jvm-profile</id> <activation> <activeByDefault>false</activeByDefault> <file> <exists>${java.home}/../lib/tools.jar</exists> </file> </activation> <dependencies> <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>7</version> <scope>system</scope> <systemPath>${java.home}/../lib/tools.jar</systemPath> </dependency> </dependencies> </profile> <profile> <id>apple-jvm-profile</id> <activation> <activeByDefault>false</activeByDefault> <file> <exists>${java.home}/../Classes/classes.jar</exists> </file> </activation> <dependencies> <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>7</version> <scope>system</scope> <systemPath>${java.home}/../Classes/classes.jar</systemPath> </dependency> </dependencies> </profile> </profiles> <scm> <tag>v1.1.4</tag> </scm> </project>