then-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.machinecode.then</groupId>
<artifactId>then-parent</artifactId>
<version>0.3.0</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>io.machinecode</groupId>
<artifactId>machinecode-parent</artifactId>
<version>1.0.7</version>
</parent>
<groupId>io.machinecode.then</groupId>
<artifactId>then-parent</artifactId>
<packaging>pom</packaging>
<version>0.3.0</version>
<modules>
<module>api</module>
<module>core</module>
</modules>
<developers>
<developer>
<id>brentdouglas</id>
<name>Brent Douglas</name>
<email>brent.n.douglas@gmail.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License Version 2.0</name>
<url>http://repository.jboss.org/licenses/apache-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:${git.machinecode.io}/then.git</connection>
<developerConnection>scm:git:${git.machinecode.io}/then.git</developerConnection>
<url>${github.machinecode.io}/then</url>
</scm>
<properties>
<version.org.jboss.logging.jboss-logging>3.1.4.GA</version.org.jboss.logging.jboss-logging>
<version.junit.junit>4.10</version.junit.junit>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.machinecode.then</groupId>
<artifactId>then-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
<version>${version.org.jboss.logging.jboss-logging}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit.junit}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<executions>
<execution>
<id>check</id>
<phase>verify</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>