helpers
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.netbout</groupId>
<artifactId>helpers</artifactId>
<version>0.1</version>
</dependency><?xml version="1.0"?>
<!--
* Copyright (c) 2009-2012, Netbout.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are PROHIBITED without prior written permission from
* the author. This product may NOT be used anywhere and on any computer
* except the server platform of Netbout Inc. located at www.netbout.com.
* Federal copyright law prohibits unauthorized reproduction by any means
* and imposes fines up to $25,000 for violation. If you received
* this code accidentally and without intent to use it, please report this
* incident to the author by email.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @author Yegor Bugayenko (yegor@netbout.com)
* @version $Id$
-->
<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>com.jcabi</groupId>
<artifactId>parent</artifactId>
<version>0.7.22</version>
</parent>
<groupId>com.netbout</groupId>
<artifactId>helpers</artifactId>
<version>0.1</version>
<packaging>pom</packaging>
<name>helpers</name>
<modules>
<module>helper-shary</module>
</modules>
<description>Netbout built-in helpers</description>
<url>http://www.netbout.com</url>
<inceptionYear>2012</inceptionYear>
<organization>
<name>Netbout Inc.</name>
<url>http://www.netbout.com</url>
</organization>
<licenses>
<license>
<name>Netbout persistent communications</name>
<url>http://www.netbout.com/LICENSE.txt</url>
<distribution>repo</distribution>
<comments>This is a proprietary software, you can't redistribute it</comments>
</license>
</licenses>
<developers>
<developer>
<id>1</id>
<name>Yegor Bugayenko</name>
<email>yegor@netbout.com</email>
<organization>Netbout Inc.</organization>
<organizationUrl>http://www.netbout.com</organizationUrl>
<roles>
<role>Architect</role>
<role>Developer</role>
</roles>
<timezone>-7</timezone>
</developer>
</developers>
<issueManagement>
<system>github</system>
<url>https://github.com/netbout/netbout-helpers/issues</url>
</issueManagement>
<ciManagement>
<system>rultor</system>
<url>http://www.rultor.com/s/netbout</url>
</ciManagement>
<scm>
<connection>scm:git:github.com:netbout/netbout-helpers.git</connection>
<developerConnection>scm:git:github.com:netbout/netbout-helpers.git</developerConnection>
<url>https://github.com/netbout/netbout-helpers</url>
</scm>
<distributionManagement>
<site>
<id>helpers.netbout.com</id>
<url>s3://helpers.netbout.com/</url>
</site>
</distributionManagement>
<properties>
<rempl.dir>${basedir}</rempl.dir>
<rexsl.version>0.5.1</rexsl.version>
<jersey.version>1.12</jersey.version>
<spi.version>1.5.10</spi.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<!-- Service programming interface of the netbout -->
<groupId>com.netbout.spi</groupId>
<artifactId>netbout-spi</artifactId>
<version>${spi.version}</version>
</dependency>
<dependency>
<!-- URN implementation -->
<groupId>com.jcabi</groupId>
<artifactId>jcabi-urn</artifactId>
<version>${jcabi.version}</version>
<classifier>mock</classifier>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.sun.tools.jxc.maven2</groupId>
<artifactId>maven-jaxb-schemagen-plugin</artifactId>
<version>1.2</version>
<configuration>
<destdir>${project.build.directory}/classes</destdir>
<srcdir>${project.build.sourceDirectory}</srcdir>
<verbose>false</verbose>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>