maven-testflight-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.willowtreeapps.maven.plugins</groupId>
<artifactId>maven-testflight-plugin</artifactId>
<version>1.4.4</version>
</dependency><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>com.willowtreeapps.maven.plugins</groupId>
<artifactId>maven-testflight-plugin</artifactId>
<version>1.4.4</version>
<packaging>maven-plugin</packaging>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<name>Maven TestFlight Plugin</name>
<description>
Use this plugin to publish an Android or iOS mobile application to TestFlight. Create an account at
https://testflightapp.com to get started.
</description>
<url>http://maven.apache.org</url>
<prerequisites>
<maven>3</maven>
</prerequisites>
<issueManagement>
<system>github</system>
<url>https://github.com/willowtreeapps/maven-testflight-plugin/issues</url>
</issueManagement>
<inceptionYear>2013</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:willowtreeapps/maven-testflight-plugin.git</connection>
<developerConnection>
scm:git:git@github.com:willowtreeapps/maven-testflight-plugin.git
</developerConnection>
<url>https://github.com/willowtreeapps/maven-testflight-plugin</url>
<tag>HEAD</tag>
</scm>
<organization>
<name>WillowTree Apps, Inc.</name>
<url>http://www.willowtreeapps.com/</url>
</organization>
<developers>
<developer>
<name>Andrew Shannon</name>
<email>andrew.shannon@willowtreeapps.com</email>
</developer>
<developer>
<name>Eric Richardson</name>
<email>eric.richardson@willowtreeapps.com</email>
</developer>
</developers>
<properties>
<maven-plugin-api.version>3.0.5</maven-plugin-api.version>
<maven-plugin-plugin.version>3.2</maven-plugin-plugin.version>
<maven-plugin-annotations.version>3.2</maven-plugin-annotations.version>
<plexus-utils.version>3.0.1</plexus-utils.version>
<commons-lang.version>2.6</commons-lang.version>
<httpcomponents.version>4.2.1</httpcomponents.version>
<commons-httpclient.version>3.1</commons-httpclient.version>
<project-info-reports-maven-plugin.version>2.6</project-info-reports-maven-plugin.version>
<maven-plugin-plugin.version>2.5.1</maven-plugin-plugin.version>
<maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
<jdk.version>1.6</jdk.version>
<site-maven-plugin.version>0.8</site-maven-plugin.version>
<maven-site-plugin.version>3.3</maven-site-plugin.version>
<wagon-ssh.version>2.5</wagon-ssh.version>
<maven-gpg-plugin.version>1.4</maven-gpg-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${maven-plugin-annotations.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven-plugin-api.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons-lang.version}</version>
</dependency>
<!-- The help-goal generation has a dependency on plexus-utils. -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>${plexus-utils.version}</version>
</dependency>
<!--Test Flight Uploader dependencies.-->
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>${commons-httpclient.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>fluent-hc</artifactId>
<version>${httpcomponents.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-cache</artifactId>
<version>${httpcomponents.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>${httpcomponents.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>${httpcomponents.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>${maven-plugin-plugin.version}</version>
<configuration>
<!-- see http://jira.codehaus.org/browse/MNG-5346 -->
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
</configuration>
<!--The plugin descriptor file is generated and built into the jar at META-INF/maven/plugin.xml.-->
<executions>
<execution>
<id>mojo-descriptor</id>
<goals>
<goal>descriptor</goal>
</goals>
</execution>
<!-- For generating a help goal on this plugin. -->
<execution>
<id>help-goal</id>
<goals>
<goal>helpmojo</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>docs</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>${site-maven-plugin.version}</version>
<inherited>false</inherited>
<configuration>
<message>Creating site for ${project.version}</message>
</configuration>
<executions>
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${maven-site-plugin.version}</version>
<configuration>
<outputEncoding>UTF-8</outputEncoding>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>${wagon-ssh.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>${maven-plugin-plugin.version}</version>
</plugin>
</plugins>
</reporting>
</project>