automate-build-plugins-aggregator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.browserstack</groupId>
<artifactId>automate-build-plugins-aggregator</artifactId>
<version>1.1.1</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.browserstack</groupId>
<artifactId>automate-build-plugins-aggregator</artifactId>
<version>1.1.1</version>
<name>Automate Build Plugins</name>
<description>BrowserStack Automate build tool plugins.</description>
<packaging>pom</packaging>
<developers>
<developer>
<name>BrowserStack</name>
<email>support@browserstack.com</email>
<organization>BrowserStack</organization>
<organizationUrl>https://www.browserstack.com</organizationUrl>
</developer>
</developers>
<scm>
<url>https://github.com/browserstack/automate-buildtool-plugins</url>
<connection>scm:git:https://github.com/browserstack/automate-buildtool-plugins.git</connection>
<tag>automate-build-plugins-aggregator-1.1.1</tag>
</scm>
<url>https://www.browserstack.com/automate</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<jdk.source.version>1.6</jdk.source.version>
<jdk.target.version>1.6</jdk.target.version>
<aspectj.java>1.6</aspectj.java>
<aspectj.source>1.6</aspectj.source>
<aspectj.target>1.6</aspectj.target>
<commons.codec.version>1.10</commons.codec.version>
<selenium.java.version>2.22.0</selenium.java.version>
<browserstack-local-java.version>0.1.0</browserstack-local-java.version>
<plugin.version>${project.version}</plugin.version>
<testassist.version>${project.version}</testassist.version>
</properties>
<modules>
<module>automate-testassist</module>
<module>automate-maven-plugin</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<localCheckout>true</localCheckout>
<pushChanges>false</pushChanges>
<checkModificationExcludes>
<checkModificationExclude>pom.xml</checkModificationExclude>
</checkModificationExcludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<!-- add this to disable checking -->
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>${jdk.source.version}</source>
<target>${jdk.target.version}</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<!-- These profiles are executed when the plugin is executed in the target projects context.
This is a maven quirk that makes Maven plugin profiles different from normal build profiles.
-->
<profiles>
<profile>
<id>m2</id>
<activation>
<jdk>1.6</jdk>
</activation>
<properties>
<aspectj.tools.version>1.7.4</aspectj.tools.version>
<aspectjrt.version>1.7.4</aspectjrt.version>
<aspectj.maven.version>1.6</aspectj.maven.version>
</properties>
</profile>
<profile>
<id>m5</id>
<activation>
<jdk>1.7</jdk>
</activation>
<properties>
<aspectj.tools.version>1.7.4</aspectj.tools.version>
<aspectjrt.version>1.7.4</aspectjrt.version>
<aspectj.maven.version>1.7</aspectj.maven.version>
</properties>
</profile>
<profile>
<id>m3</id>
<activation>
<jdk>1.8</jdk>
</activation>
<properties>
<aspectj.tools.version>1.9.0</aspectj.tools.version>
<aspectjrt.version>1.9.0</aspectjrt.version>
<aspectj.maven.version>1.8</aspectj.maven.version>
</properties>
</profile>
<profile>
<id>m4</id>
<activation>
<jdk>9</jdk>
</activation>
<properties>
<aspectj.tools.version>1.9.0</aspectj.tools.version>
<aspectjrt.version>1.9.0</aspectjrt.version>
<aspectj.maven.version>1.11</aspectj.maven.version>
</properties>
</profile>
<profile>
<id>run-samples</id>
<modules>
<module>automate-maven-plugin-samples</module>
<module>spring-based-sample-project</module>
</modules>
</profile>
<profile>
<id>release-snapshots</id>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
<skipStaging>true</skipStaging>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>