gatling-highcharts-maven-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.gatling.highcharts</groupId>
<artifactId>gatling-highcharts-maven-archetype</artifactId>
<version>3.2.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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<groupId>io.gatling.highcharts</groupId>
<artifactId>gatling-highcharts-maven-archetype</artifactId>
<version>3.2.1</version>
<name>gatling-highcharts-maven-archetype</name>
<description>gatling-highcharts-maven-archetype</description>
<inceptionYear>2011</inceptionYear>
<url>https://gatling.io</url>
<developers>
<developer>
<id>slandelle@gatling.io</id>
<name>Stephane Landelle</name>
<organization>Gatling Corp</organization>
</developer>
</developers>
<scm>
<connection>scm:git:git:@github.com:gatling/gatling-highcharts-maven-archetype.git</connection>
<developerConnection>scm:git:git:@github.com:gatling/gatling-highcharts-maven-archetype.git
</developerConnection>
<url>https://github.com/gatling/gatling-highcharts-maven-archetype</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<licenses>
<license>
<name>Gatling Highcharts License</name>
<url>
https://raw.github.com/gatling/gatling-highcharts/master/gatling-charts-highcharts/src/main/resources/META-INF/LICENCE
</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<encoding>UTF-8</encoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<gatling.version>${project.version}</gatling.version>
<maven-resources-plugin.version>3.0.2</maven-resources-plugin.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<escapeString>\</escapeString>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-gatling-bundle</id>
<phase>prepare-package</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>io.gatling.highcharts</groupId>
<artifactId>gatling-charts-highcharts-bundle</artifactId>
<version>${gatling.version}</version>
<type>zip</type>
<classifier>bundle</classifier>
<outputDirectory>${project.build.directory}</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin.version}</version>
<executions>
<execution>
<id>copy-sources</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${project.basedir}/src/main/scala</directory>
<filtering>false</filtering>
</resource>
</resources>
<outputDirectory>${project.build.directory}/classes/archetype-resources/src/test/scala
</outputDirectory>
</configuration>
</execution>
<execution>
<id>copy-conf</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>
${project.build.directory}/gatling-charts-highcharts-bundle-${gatling.version}/conf
</directory>
<filtering>false</filtering>
</resource>
</resources>
<outputDirectory>${project.build.directory}/classes/archetype-resources/src/test/resources
</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>