composite-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.featurehub.composites</groupId>
<artifactId>composite-test</artifactId>
<version>1.2</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>io.featurehub.composites</groupId>
<artifactId>composite-parent</artifactId>
<version>1.1</version>
<relativePath>../composite-parent</relativePath>
</parent>
<artifactId>composite-test</artifactId>
<version>1.2</version>
<name>composite-test</name>
<description>
composite test
</description>
<url>https://featurehub.io</url>
<developers>
<developer>
<email>irina@featurehub.io</email>
<id>isouthwell</id>
<name>Irina Southwell</name>
<organization>Anyways Labs Ltd</organization>
</developer>
<developer>
<email>richard@featurehub.io</email>
<id>rvowles</id>
<name>Richard Vowles</name>
<organization>Anyways Labs Ltd</organization>
</developer>
</developers>
<licenses>
<license>
<name>Apache 2 with Commons Clause</name>
<url>https://github.com/featurehub-io/featurehub/blob/master/LICENSE.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:featurehub-io/featurehub.git</connection>
<developerConnection>scm:git:git@github.com:featurehub-io/featurehub.git</developerConnection>
<url>git@github.com:featurehub-io/featurehub.git</url>
<tag>composite-test-1.2</tag>
</scm>
<properties>
<prometheus.version>0.6.0</prometheus.version>
</properties>
<dependencies>
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-core</artifactId>
<version>2.0-M2-groovy-3.0</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-test</artifactId>
<version>${groovy.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.23.4</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.repaint.maven</groupId>
<artifactId>tiles-maven-plugin</artifactId>
<version>2.17</version>
<extensions>true</extensions>
<configuration>
<filtering>false</filtering>
<tiles>
<tile>io.featurehub.tiles:tile-java:[1.1,2)</tile>
<tile>io.featurehub.tiles:tile-release:[1.1,2)</tile>
</tiles>
</configuration>
</plugin>
</plugins>
</build>
</project>