controlium
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.teamcontrolium</groupId>
<artifactId>controlium</artifactId>
<version>1.1.0</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>
<name>TeamControlium Controlium control-based Selenium abstraction</name>
<groupId>org.teamcontrolium</groupId>
<artifactId>controlium</artifactId>
<version>1.1.0</version>
<description>TeamControlium Controlium provides the API and foundations for Control-based use of Selenium</description>
<url>https://github.com/TeamControlium</url>
<inceptionYear>2017</inceptionYear>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/TeamControlium/Controlium.java/issues</url>
</issueManagement>
<licenses>
<license>
<name>The MIT License</name>
<url>https://github.com/TeamControlium/Controlium.java/blob/master/LICENSE.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/TeamControlium/Controlium.java</url>
<connection>scm:git:https://github.com/TeamControlium/Controlium.java.git</connection>
<!-- <developerConnection>scm:git:git@github.com:TeamControlium/Controlium.java.git</developerConnection> -->
<tag>HEAD</tag>
</scm>
<organization>
<name>Team Controlium Committers</name>
<url>https://github.com/TeamControlium</url>
</organization>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<!-- or whatever version you use -->
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</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>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<skip>false</skip>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- distributionManagement - Sonatype-nexus-snapshots and sonatype-nexus-release How???? Why???? What???? see jsoup POM -->
<dependencies>
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.11.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.7</version>
</dependency>
<dependency>
<groupId>org.mod4j.org.apache.commons</groupId>
<artifactId>lang</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<!-- jsoup HTML parser library @ https://jsoup.org/ -->
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.11.2</version>
</dependency>
<dependency>
<groupId>org.teamcontrolium</groupId>
<artifactId>utilities</artifactId>
<version>1.2.3</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.0.0</version>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<developers>
<developer>
<id>mw</id>
<name>Mat Walker</name>
<email>teamcontrolium@alexview.com</email>
<roles>
<role>Lead Developer</role>
</roles>
<timezone>+10</timezone>
</developer>
<developer>
<id>K8Coder</id>
<name>Kate More</name>
<email>kmoor@alexview.com</email>
<roles>
<role>Java Developer</role>
</roles>
<organization>TeamControlium Committers</organization>
<timezone>+10</timezone>
</developer>
</developers>
</project>