testatoo-html5-bundle
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.testatoo</groupId>
<artifactId>testatoo-html5-bundle</artifactId>
<version>1.0.b4</version>
</dependency><!--
Copyright © 2018 Ovea (d.avenante@gmail.com)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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>org.testatoo</groupId>
<artifactId>testatoo-html5-bundle</artifactId>
<version>1.0.b4</version>
<packaging>jar</packaging>
<name>Testatoo html5 bundle</name>
<inceptionYear>2018</inceptionYear>
<description>The HTML5 bundle for Testatoo</description>
<url>http://www.org.testatoo.org</url>
<scm>
<connection>scm:git:git@github.com:Testatoo/testatoo-html5-bundle.git</connection>
<developerConnection>scm:git:git@github.com:Testatoo/testatoo-html5-bundle.git</developerConnection>
<url>http://github.com/Testatoo/testatoo-html5-bundle</url>
<tag>1.0.b4</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.version>1.8</jdk.version>
<groovy.version>2.5.6</groovy.version>
<testatoo.version>2.0.b34</testatoo.version>
<!-- Tests -->
<junit.version>4.12</junit.version>
<webdrivermanager.version>3.1.1</webdrivermanager.version>
<jetty.version>9.4.12.v20180830</jetty.version>
<jetty.daemon>true</jetty.daemon>
<!-- Plugins -->
<gmavenplus-plugin.version>1.6.2</gmavenplus-plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<license-maven-plugin.version>3.0</license-maven-plugin.version>
<build-helper-maven-plugin.version>3.0.0</build-helper-maven-plugin.version>
<maven-javadoc-plugin.version>3.0.1</maven-javadoc-plugin.version>
<jacoco-maven-plugin.version>0.8.2</jacoco-maven-plugin.version>
<maven-surefire-plugin.version>3.0.0-M3</maven-surefire-plugin.version>
</properties>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>altus34</id>
<name>David Avenante</name>
<email>d.avenante@ovea.com</email>
<organization>Ovea</organization>
<organizationUrl>http://www.ovea.com/</organizationUrl>
<timezone>-5</timezone>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>mathieucarbou</id>
<name>Mathieu Carbou</name>
<email>m.carbou@ovea.com</email>
<organization>Ovea</organization>
<organizationUrl>http://www.ovea.com/</organizationUrl>
<timezone>-5</timezone>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>${gmavenplus-plugin.version}</version>
<configuration>
<verbose>true</verbose>
<invokeDynamic>false</invokeDynamic>
</configuration>
<executions>
<execution>
<goals>
<goal>addSources</goal>
<goal>addTestSources</goal>
<goal>compile</goal>
<goal>compileTests</goal>
</goals>
</execution>
<execution>
<id>generate-doc</id>
<phase>package</phase>
<goals>
<goal>groovydoc</goal>
</goals>
<configuration>
<groovyDocOutputDirectory>${project.build.directory}/apidocs</groovyDocOutputDirectory>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${groovy.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
<executions>
<execution>
<goals>
<goal>perform</goal>
</goals>
<configuration>
<pomFileName>${project.artifactId}/pom.xml</pomFileName>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
<configuration>
<useAgent>false</useAgent>
<keyname>F82FA7FE</keyname>
<passphrase>${ovea_gpg_passphrase}</passphrase>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${license-maven-plugin.version}</version>
<configuration>
<header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</header>
<properties>
<owner>Ovea</owner>
<email>d.avenante@gmail.com</email>
</properties>
<excludes>
<exclude>mvnw</exclude>
<exclude>mvnw.cmd</exclude>
<exclude>.editorconfig</exclude>
<exclude>**/README</exclude>
<exclude>**/LICENCE</exclude>
<exclude>**/*.adoc</exclude>
<exclude>**/*.yml</exclude>
<exclude>**/*.yml</exclude>
<exclude>.mvn/**</exclude>
<exclude>src/test/resources/**</exclude>
<exclude>src/main/resources/**</exclude>
<exclude>src/test/webapp/css/**</exclude>
<exclude>src/test/webapp/js/**</exclude>
<exclude>src/test/webapp/fonts/**</exclude>
</excludes>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${build-helper-maven-plugin.version}</version>
<executions>
<execution>
<id>add-groovy-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/groovy</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${groovy.version}</version>
<optional>true</optional>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.testatoo</groupId>
<artifactId>testatoo</artifactId>
<version>${testatoo.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>${webdrivermanager.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>ovea-oss-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ovea-oss-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>release</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>