workflow
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.liveramp.workflow2</groupId>
<artifactId>workflow</artifactId>
<version>1.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>
<name>Workflow2</name>
<description>Workflow2 parent pom</description>
<developers>
<developer>
<name>LiveRamp Engineering</name>
<email>info@liveramp.com</email>
</developer>
</developers>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/LiveRamp/workflow2</url>
</issueManagement>
<url>https://liveramp.com</url>
<licenses>
<license>
<name>Apache 2</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git@github.com:LiveRamp/workflow2.git</connection>
<url>scm:git:git@github.com:LiveRamp/workflow2.git</url>
<developerConnection>scm:git:git@github.com:LiveRamp/workflow2.git</developerConnection>
<tag>HEAD</tag>
</scm>
<packaging>pom</packaging>
<groupId>com.liveramp.workflow2</groupId>
<artifactId>workflow</artifactId>
<version>1.0</version>
<properties>
<skip.db>true</skip.db>
<sqldump.repo>liveramp/workflow2_sqldump</sqldump.repo>
</properties>
<modules>
<module>workflow_assemblies</module>
<module>workflow_types</module>
<module>workflow_core</module>
<module>workflow_db</module>
<module>workflow_state</module>
<module>workflow_ui</module>
<module>workflow_monitor</module>
<module>workflow_hadoop</module>
<module>workflow_examples</module>
</modules>
<repositories>
<repository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M1</version>
<executions>
<execution>
<id>test</id>
<goals>
<goal>integration-test</goal>
</goals>
</execution>
<execution>
<id>verify</id>
<phase>verify</phase>
<goals>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<id>start-db</id>
<phase>pre-integration-test</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<skip>${skip.db}</skip>
<executable>${project.basedir}/../test_docker/start-db.sh</executable>
<environmentVariables>
<SQLDUMP_REPO>
${sqldump.repo}:${project.version}
</SQLDUMP_REPO>
</environmentVariables>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<id>stop-db</id>
<phase>post-integration-test</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<skip>${skip.db}</skip>
<executable>${project.basedir}/../test_docker/stop-mysql.sh</executable>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>travis</id>
<properties>
<sqldump.repo>workflow2_sqldump</sqldump.repo>
</properties>
</profile>
<profile>
<id>publish</id>
<build>
<plugins>
<!-- Used to build a JAR containing the source code from this project -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Used to generate javadocs for this project -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<configuration>
<doclint>none</doclint>
<source>8</source>
</configuration>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Sign generated artifacts before publishing. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<!-- The "sign" goal is one of the GPG plugin's
goals. It produces signature files for the
artifacts in this build. -->
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!--
Used to publish artifacts produced by this project to the Sonatype
Nexus repository.
-->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<!-- Specifies where to publish snapshots/releases on Sonatype -->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>