-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from TeamControlium/temp-fix
This is version pushed to Maven
- Loading branch information
Showing
88 changed files
with
41,036 additions
and
23 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
-----BEGIN PGP SIGNATURE----- | ||
|
||
iQEzBAABCAAdFiEExH0kV0xbB6J823bnoAazmR7BufsFAlqm+R4ACgkQoAazmR7B | ||
ufsLhwgAjkL0fz4DYEYtv454y5e1k2GeqenAgC5RpPAGG68kjsG9/ZKWO/oq9Lv0 | ||
B7bZUgCuq6Sof6/7h1qSpnw1+tejoIn01wB6DRYzHmKoxineKCjxIFqRyyAfQ4q0 | ||
dKDCI+GAXarVRjgQr3Cb8F2+EQVYdZKuWM9KDAffXms4R8w7isq5x09rXoEoAb2l | ||
TfSr/Ti2UNASbWQQaiBWsDg+FNhr1NVyMFRyXbUpSWyn7JfVKz4Ocnk8g2hTvm5T | ||
bDSmV1u/VvNteSbh3bk76VhaMfi83ek5o+xXWjbmhAF/vllWt9hHsoAKTn7X6W2c | ||
+S2uJnieZ05Zd895zanzwRuSEAklOg== | ||
=jdYz | ||
-----END PGP SIGNATURE----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
<?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 Utilities Test utilities</name> | ||
<groupId>org.testcontrolium</groupId> | ||
<artifactId>utilities</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<description>TeamControlium Utilities provides a set of Test Framework utilities for use within the Team Controlium suite</description> | ||
<url>https://github.com/TeamControlium</url> | ||
<inceptionYear>2017</inceptionYear> | ||
<issueManagement> | ||
<system>GitHub</system> | ||
<url>https://github.com/TeamControlium/Utilities.java/issues</url> | ||
</issueManagement> | ||
<licenses> | ||
<license> | ||
<name>The MIT License</name> | ||
<url>https://github.com/TeamControlium/Utilities.java/blob/master/LICENSE</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<url>https://github.com/TeamControlium/Utilities.java</url> | ||
<connection>scm:git:https://github.com/TeamControlium/Utilities.java.git</connection> | ||
<developerConnection>scm:git:[email protected]:TeamControlium/Utilities.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> | ||
</plugins> | ||
</build> | ||
|
||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<name>Sonatype Nexus Snapshots</name> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>ossrh</id> | ||
<name>Nexus Release Repository</name> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<dependencies> | ||
<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> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
<version>5.0.0</version> | ||
</dependency> | ||
<dependency> | ||
<!-- jsoup HTML parser library @ https://jsoup.org/ --> | ||
<groupId>org.jsoup</groupId> | ||
<artifactId>jsoup</artifactId> | ||
<version>1.11.2</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<properties> | ||
<maven.compiler.source>1.6</maven.compiler.source> | ||
<maven.compiler.target>1.6</maven.compiler.target> | ||
</properties> | ||
|
||
<developers> | ||
<developer> | ||
<id>mw</id> | ||
<name>Mat Walker</name> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>Lead Developer</role> | ||
</roles> | ||
<timezone>+10</timezone> | ||
</developer> | ||
</developers> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
-----BEGIN PGP SIGNATURE----- | ||
|
||
iQEzBAABCAAdFiEExH0kV0xbB6J823bnoAazmR7BufsFAlqm+QYACgkQoAazmR7B | ||
uftoMwgAn525iXLNG7XHAprcYr/snZ+OUFF1qnQfFln8NnQlF4kTTrxXFN20gMkf | ||
Su259dCjGbzTSzB5s1zVryDynQgmE0gmJZOxNLVtAJwcWe/577LHNbeksekMIqiF | ||
R69qYmDBl4cQg6eQo7CJ0gzX7FvNSZgAXBh7H9Bl1M0eEWPvoOQTQPfK2p0HrAAf | ||
ryypUiPhWvgIglp7Z7Cwxeo+CuXtMZoeG/qNt4Pp/h8T9UOzwpeuHu1rBXDkUoli | ||
CYKcNj5/HJNIvqPXGl4dMxOa5mnrFkXyWJY4VGOyTkQTwQlBnx/Fv9tDnolKuCmf | ||
L4PpItXYdtYPSOFn3bPq5lt4Y7PhYQ== | ||
=B9gV | ||
-----END PGP SIGNATURE----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,9 @@ | |
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 Utilities Test utilities</name> | ||
<groupId>org.testcontrolium</groupId> | ||
<groupId>org.teamcontrolium</groupId> | ||
<artifactId>utilities</artifactId> | ||
<version>1.0</version> | ||
<version>1.1.0</version> | ||
<description>TeamControlium Utilities provides a set of Test Framework utilities for use within the Team Controlium suite</description> | ||
<url>https://github.com/TeamControlium</url> | ||
<inceptionYear>2017</inceptionYear> | ||
|
@@ -24,13 +24,14 @@ | |
<scm> | ||
<url>https://github.com/TeamControlium/Utilities.java</url> | ||
<connection>scm:git:https://github.com/TeamControlium/Utilities.java.git</connection> | ||
<!-- <developerConnection>scm:git:[email protected]:TeamControlium/Utilities.java.git</developerConnection> --> | ||
<developerConnection>scm:git:[email protected]:TeamControlium/Utilities.java.git</developerConnection> | ||
<tag>HEAD</tag> | ||
</scm> | ||
<organization> | ||
<name>Team Controlium Committers</name> | ||
<url>https://github.com/TeamControlium</url> | ||
</organization> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
|
@@ -43,10 +44,74 @@ | |
<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> | ||
<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 --> | ||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<name>Sonatype Nexus Snapshots</name> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>ossrh</id> | ||
<name>Nexus Release Repository</name> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<dependencies> | ||
<dependency> | ||
|
Oops, something went wrong.