lollipop-router
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>us.hornerscorners.lollipop-router</groupId>
<artifactId>lollipop-router</artifactId>
<version>1.3</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>
<groupId>us.hornerscorners.lollipop-router</groupId>
<artifactId>lollipop-router</artifactId>
<packaging>pom</packaging>
<version>1.3</version>
<name>Lollipop Router</name>
<url>https://bitbucket.org/boraxhacker/lollipop-router/</url>
<description>
The Lollipop Router is an LLP listener that can route incoming
HL7 messages based on their content to HL7 over HTTP (HoH),
simple HTTP POST or LLP endpoints.
</description>
<prerequisites>
<maven>3.1</maven>
</prerequisites>
<licenses>
<license>
<name>GNU General Public License (GPL) v3</name>
<url>http://www.gnu.org/licenses/gpl-3.0-standalone.html</url>
</license>
</licenses>
<developers>
<developer>
<id>jim@hornerscorners.us</id>
<name>Jim Horner</name>
<email>jim@hornerscorners.us</email>
</developer>
</developers>
<scm>
<connection>scm:git:https://bitbucket.org/boraxhacker/lollipop-router.git</connection>
<developerConnection>scm:git:ssh://git@bitbucket.org/boraxhacker/lollipop-router.git
</developerConnection>
<url>https://bitbucket.org/boraxhacker/lollipop-router/src</url>
<tag>lollipop-router-1.3</tag>
</scm>
<issueManagement>
<system>bitbucket</system>
<url>https://bitbucket.org/boraxhacker/lollipop-router/issues</url>
</issueManagement>
<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>
<site>
<id>site-docs</id>
<!-- ${bitbucket.path} defined in settings.xml -->
<url>file://${bitbucket.site-docs.path}/${project.artifactId}/maven-site</url>
</site>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- JEE APIs Provided -->
<jee.version>6.0</jee.version>
<jaxb.version>2.2.4-1</jaxb.version>
<!-- Tomee Provided -->
<tomee.version>1.7.1</tomee.version>
<cxf.version>2.6.14</cxf.version>
<jsf.version>2.1.15</jsf.version>
<jstl.version>1.2</jstl.version>
<openejb.version>4.7.1</openejb.version>
<openwebbeans.version>1.2.6</openwebbeans.version>
<guava.version>18.0</guava.version>
<hapi.version>2.2</hapi.version>
<jackson.version>2.5.0</jackson.version>
<joda-time.version>2.7</joda-time.version>
<junit.version>4.12</junit.version>
<logback.version>1.1.2</logback.version>
<okhttp.version>2.2.0</okhttp.version>
<slf4j.version>1.7.10</slf4j.version>
<snakeyaml.version>1.14</snakeyaml.version>
<!-- plugins -->
<plugin.buildnumber.version>1.3</plugin.buildnumber.version>
<plugin.compiler.version>3.2</plugin.compiler.version>
<plugin.dependency.version>2.10</plugin.dependency.version>
<plugin.gpg.version>1.6</plugin.gpg.version>
<plugin.helper.version>1.9.1</plugin.helper.version>
<plugin.jar.version>2.5</plugin.jar.version>
<plugin.javadoc.version>2.10.1</plugin.javadoc.version>
<plugin.jaxb2.version>1.6</plugin.jaxb2.version>
<plugin.license.version>1.8</plugin.license.version>
<plugin.release.version>2.5.1</plugin.release.version>
<plugin.site.version>3.4</plugin.site.version>
<plugin.source.version>2.4</plugin.source.version>
<plugin.surefire.version>2.18.1</plugin.surefire.version>
<plugin.versions.version>2.1</plugin.versions.version>
<plugin.war.version>2.6</plugin.war.version>
</properties>
<modules>
<module>services</module>
<module>daemon</module>
<module>webapp</module>
</modules>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${plugin.source.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${plugin.javadoc.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${plugin.gpg.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${plugin.site.version}</version>
<configuration>
<relativizeDecorationLinks>false</relativizeDecorationLinks>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>${plugin.dependency.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${plugin.jar.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${plugin.compiler.version}</version>
<configuration>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<compilerArgs>
<arg>-Xlint:unchecked</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${plugin.surefire.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${plugin.helper.version}</version>
</plugin>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>${plugin.jaxb2.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>${plugin.war.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${plugin.license.version}</version>
<configuration>
<licenseName>gpl_v3</licenseName>
<inceptionYear>2013</inceptionYear>
<organizationName>Jim Horner</organizationName>
<projectName>LollipopRouter</projectName>
<ignoreTag>%%Other-License</ignoreTag>
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
</configuration>
<executions>
<execution>
<id>first</id>
<phase>process-sources</phase>
<goals>
<goal>update-file-header</goal>
</goals>
</execution>
<execution>
<id>second</id>
<phase>process-sources</phase>
<configuration>
<licenseFile>LICENSE.txt</licenseFile>
<outputDirectory>${basedir}</outputDirectory>
</configuration>
<goals>
<goal>update-project-license</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>${plugin.buildnumber.version}</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<doCheck>false</doCheck>
<doUpdate>false</doUpdate>
<shortRevisionLength>8</shortRevisionLength>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${plugin.release.version}</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy site-deploy</goals>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${plugin.versions.version}</version>
<reportSets>
<reportSet>
<reports>
<report>dependency-updates-report</report>
<report>plugin-updates-report</report>
<report>property-updates-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>