custom-plugins
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>flux</groupId>
<artifactId>custom-plugins</artifactId>
<version>1.0.1</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>
<groupId>flux</groupId>
<artifactId>custom-plugins</artifactId>
<packaging>pom</packaging>
<name>Flux Custom Plugins</name>
<version>1.0.1</version>
<organization>
<name>Flux Corporation</name>
<url>http://fluxcorp.com</url>
</organization>
<inceptionYear>2000</inceptionYear>
<description>
Flux custom plugins (actions or triggers as most Flux users are familiar with) can be used to integrate any custom
applications seamlessly within a Flux workflow. These plugins can be easily added to your Flux workflow using the
Web-based designer or the Desktop designer and monitored from the Operations Console.
</description>
<url>https://bitbucket.org/aruld/flux-plugins</url>
<scm>
<url>scm:hg:http://bitbucket.org/aruld/flux-plugins</url>
<developerConnection>scm:hg:http://bitbucket.org/aruld/flux-plugins</developerConnection>
</scm>
<issueManagement>
<system>bitbucket</system>
<url>https://bitbucket.org/aruld/flux-plugins/issues</url>
</issueManagement>
<modules>
<module>rabbitmq-action</module>
<module>rabbitmq-trigger</module>
<module>twitter-action</module>
<module>flux-tests</module>
</modules>
<prerequisites>
<maven>2.0.9</maven>
</prerequisites>
<developers>
<developer>
<id>aruld</id>
<name>Arul Dhesiaseelan</name>
<email>arul@fluxcorp.com</email>
<organization>Flux Corporation</organization>
<organizationUrl>http://fluxcorp.com</organizationUrl>
<roles>
<role>Project Admin</role>
<role>Developer</role>
</roles>
<timezone>-7</timezone>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<assembly.directory>${project.build.directory}/assembly</assembly.directory>
<flux.version>7.10.1</flux.version>
<amqp.version>2.2.0</amqp.version>
<jsoup.version>1.4.1</jsoup.version>
<scribe.version>1.0.8</scribe.version>
<commons.io.version>1.2</commons.io.version>
<commons.cli.version>1.1</commons.cli.version>
<commons.codec.version>1.4</commons.codec.version>
</properties>
<dependencies>
<dependency>
<groupId>flux</groupId>
<artifactId>flux</artifactId>
<version>${flux.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.jettison</groupId>
<artifactId>jettison</artifactId>
<version>1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<!--Flux scripting dependency-->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<configuration>
<source>1.6</source>
<excludePackageNames>fluximpl:test</excludePackageNames>
<encoding>UTF-8</encoding>
<bottom>© 2000-2010 <a href="http://fluxcorp.com">Flux Corporation</a>. All rights
reserved.
</bottom>
<quiet>true</quiet>
<maxmemory>1g</maxmemory>
<javaApiLinks>
<property>
<name>api_1.6</name>
<value>http://download.oracle.com/javase/6/docs/api/</value>
</property>
</javaApiLinks>
</configuration>
</plugin>
</plugins>
</reporting>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries>
<Specification-Title>${project.name}</Specification-Title>
<Specification-Vendor>${pom.organization.name}</Specification-Vendor>
<Specification-Version>${flux.version}</Specification-Version>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Vendor-Id>${pom.groupId}</Implementation-Vendor-Id>
<Implementation-Vendor>${pom.organization.name}</Implementation-Vendor>
<Implementation-Version>${flux.version}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>2.0.9</version>
</requireMavenVersion>
<requireJavaVersion>
<version>1.6</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<configuration>
<source>1.6</source>
<excludePackageNames>fluximpl</excludePackageNames>
<encoding>UTF-8</encoding>
<bottom>© 2000-2010 <a href="http://fluxcorp.com">Flux Corporation</a>. All rights
reserved.
</bottom>
<quiet>true</quiet>
<maxmemory>1g</maxmemory>
<javaApiLinks>
<property>
<name>api_1.6</name>
<value>http://download.oracle.com/javase/6/docs/api/</value>
</property>
</javaApiLinks>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.jvnet.wagon-svn</groupId>
<artifactId>wagon-svn</artifactId>
</extension>
</extensions>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<configuration>
<source>1.6</source>
<excludePackageNames>fluximpl</excludePackageNames>
<encoding>UTF-8</encoding>
<bottom>© 2000-2010 <a href="http://fluxcorp.com">Flux Corporation</a>. All rights
reserved.
</bottom>
<quiet>true</quiet>
<maxmemory>1g</maxmemory>
<javaApiLinks>
<property>
<name>api_1.6</name>
<value>http://download.oracle.com/javase/6/docs/api/</value>
</property>
</javaApiLinks>
</configuration>
<executions>
<execution>
<id>aggregate</id>
<phase>package</phase>
<goals>
<goal>aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>generate-sources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>flux</groupId>
<artifactId>rabbitmq-action</artifactId>
<version>${project.version}</version>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${assembly.directory}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>flux</groupId>
<artifactId>rabbitmq-trigger</artifactId>
<version>${project.version}</version>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${assembly.directory}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
<version>${amqp.version}</version>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${assembly.directory}/lib</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${assembly.directory}/lib</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>${commons.cli.version}</version>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${assembly.directory}/lib</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${commons.codec.version}</version>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${assembly.directory}/lib</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>flux</groupId>
<artifactId>twitter-action</artifactId>
<version>${project.version}</version>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${assembly.directory}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${jsoup.version}</version>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${assembly.directory}/lib</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.scribe</groupId>
<artifactId>scribe</artifactId>
<version>${scribe.version}</version>
<type>jar</type>
<overWrite>false</overWrite>
<outputDirectory>${assembly.directory}/lib</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
<configuration>
<finalName>flux-custom-plugins-${project.version}</finalName>
<descriptors>
<descriptor>src/main/assembly/bin.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<repository>
<id>java.net-m2-repository</id>
<url>java-net:/maven2-repository/trunk/repository/</url>
</repository>
<site>
<id>website</id>
<name>website</name>
<url>http://aruld.bitbucket.org</url>
</site>
</distributionManagement>
<repositories>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
</repository>
</repositories>
</project>