LollipopRouter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>us.hornerscorners.lollipoprouter</groupId>
<artifactId>LollipopRouter</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>us.hornerscorners.lollipoprouter</groupId>
<artifactId>LollipopRouter</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
<name>*LollipopRouter</name>
<url>https://code.google.com/p/lollipop-router/</url>
<description>
The Lollipop Router is an LLP listener that can route incoming
HL7 messages based on their content to HTTP or LLP endpoints.
</description>
<developers>
<developer>
<id>jim@hornerscorners.us</id>
<name>Jim Horner</name>
<email>jim@hornerscorners.us</email>
</developer>
</developers>
<scm>
<connection>scm:git:https://code.google.com/p/lollipop-router/</connection>
<developerConnection>scm:git:https://code.google.com/p/lollipop-router/</developerConnection>
<url>https://code.google.com/p/lollipop-router/source/browse</url>
<tag>LollipopRouter-1.0</tag>
</scm>
<licenses>
<license>
<name>GNU General Public License (GPL) v3</name>
<url>http://www.gnu.org/licenses/gpl-3.0-standalone.html</url>
</license>
</licenses>
<issueManagement>
<system>code.google.com</system>
<url>https://code.google.com/p/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>
</distributionManagement>
<properties>
<jdkLevel>1.7</jdkLevel>
<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.0</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.0</openejb.version>
<openwebbeans.version>1.2.4</openwebbeans.version>
<guava.version>18.0</guava.version>
<hapi.version>2.2</hapi.version>
<jackson.version>2.3.2</jackson.version>
<joda-time.version>2.3</joda-time.version>
<junit.version>4.11</junit.version>
<logback.version>1.1.1</logback.version>
<slf4j.version>1.7.6</slf4j.version>
<snakeyaml.version>1.12</snakeyaml.version>
</properties>
<modules>
<module>RoutingService</module>
<module>TestApp</module>
</modules>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.3</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>2.9.1</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>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</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>2.17</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.8</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>1.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.6</version>
<configuration>
<licenseName>gpl_v3 </licenseName>
<inceptionYear>2013</inceptionYear>
<organizationName>Jim Horner</organizationName>
<projectName>LollipopRouter</projectName>
</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</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>1.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<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>
</project>