jcabi-heroku-maven-plugin-0.7.10.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcabi-heroku-maven-plugin Show documentation
Show all versions of jcabi-heroku-maven-plugin Show documentation
Heroku Deployment Maven Plugin
<?xml version="1.0"?> <!-- * Copyright (c) 2012-2013, JCabi.com * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: 1) Redistributions of source code must retain the above * copyright notice, this list of conditions and the following * disclaimer. 2) Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials provided * with the distribution. 3) Neither the name of the jcabi.com nor * the names of its contributors may be used to endorse or promote * products derived from this software without specific prior written * permission. * * 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 HOLDER 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. --> <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> <parent> <groupId>com.jcabi</groupId> <artifactId>jcabi</artifactId> <version>0.7.10</version> </parent> <artifactId>jcabi-heroku-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>jcabi-heroku-maven-plugin</name> <repositories> <repository> <id>repo.jfrog.org</id> <url>http://repo.jfrog.org/artifactory/plugins-releases</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>repo.jfrog.org</id> <url>http://repo.jfrog.org/artifactory/plugins-releases</url> </pluginRepository> </pluginRepositories> <dependencies> <dependency> <groupId>com.jcabi</groupId> <artifactId>jcabi-aspects</artifactId> </dependency> <dependency> <groupId>com.jcabi</groupId> <artifactId>jcabi-manifests</artifactId> <!-- for invoker tests only --> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjrt</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.jcabi</groupId> <artifactId>jcabi-log</artifactId> </dependency> <dependency> <groupId>com.jcabi</groupId> <artifactId>jcabi-velocity</artifactId> </dependency> <dependency> <groupId>com.rexsl</groupId> <artifactId>rexsl-test</artifactId> <version>0.4.6</version> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>2.0.2</version> <scope>runtime</scope> </dependency> <dependency> <!-- see http://wiki.jfrog.org/confluence/display/OSS/Maven+Anno+Mojo --> <groupId>org.jfrog.maven.annomojo</groupId> <artifactId>maven-plugin-anno</artifactId> <version>1.4.1</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.0.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>3.0.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-settings</artifactId> <version>3.0.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>3.0.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.0.5</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.sonatype.aether</groupId> <artifactId>aether-impl</artifactId> </exclusion> <exclusion> <groupId>org.sonatype.sisu</groupId> <artifactId>sisu-inject-plexus</artifactId> </exclusion> </exclusions> </dependency> <dependency> <!-- Forward all calls to SLF4J to Maven log. --> <groupId>com.jcabi</groupId> <artifactId>jcabi-maven-slf4j</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <configuration> <delimiters> <delimiter>@</delimiter> </delimiters> <useDefaultDelimiters>false</useDefaultDelimiters> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <configuration> <excludes> <exclude>**/HelpMojo.java</exclude> </excludes> </configuration> </execution> <execution> <id>default-testCompile</id> <configuration> <compilerArgument>-Xlint:-processing</compilerArgument> </configuration> </execution> <execution> <id>compile-helpmojo</id> <goals> <goal>compile</goal> </goals> <configuration> <includes> <include>**/HelpMojo.java</include> </includes> <compilerArgument>-Xlint:-unchecked,-rawtypes</compilerArgument> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-plugin-plugin</artifactId> <executions> <execution> <id>generated-helpmojo</id> <goals> <goal>helpmojo</goal> </goals> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.jfrog.maven.annomojo</groupId> <artifactId>maven-plugin-tools-anno</artifactId> <version>1.4.1</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>