jhttps-checker
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>pl.wavesoftware</groupId>
<artifactId>jhttps-checker</artifactId>
<version>0.8.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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<groupId>pl.wavesoftware</groupId>
<artifactId>jhttps-checker</artifactId>
<version>0.8.0</version>
<packaging>jar</packaging>
<name>HTTP/S Java Checker</name>
<description>It can check is your Java installation can perform connection with given HTTPS address</description>
<url>https://github.com/wavesoftware/java-https-checker</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<jar.w.dependencies>jar-with-dependencies</jar.w.dependencies>
</properties>
<dependencies>
<dependency>
<groupId>net.sourceforge.argparse4j</groupId>
<artifactId>argparse4j</artifactId>
<version>0.6.0</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<issueManagement>
<system>Github</system>
<url>https://github.com/wavesoftware/java-https-checker/issues</url>
</issueManagement>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:wavesoftware/java-https-checker.git</connection>
<developerConnection>scm:git:git@github.com:wavesoftware/java-https-checker.git</developerConnection>
<url>git@github.com:wavesoftware/java-https-checker.git</url>
</scm>
<developers>
<developer>
<email>krzysztof.suszynski@wavesoftware.pl</email>
<organization>Wave Software</organization>
<name>Krzysztof Suszyński</name>
</developer>
</developers>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>pl.wavesoftware.utils.https.checker.HttpsCheckerMain</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>${jar.w.dependencies}</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
<plugin>
<artifactId>jdeb</artifactId>
<groupId>org.vafer</groupId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jdeb</goal>
</goals>
<configuration>
<verbose>true</verbose>
<snapshotExpand>true</snapshotExpand>
<!-- expand "SNAPSHOT" to what is in the "USER" env variable -->
<snapshotEnv>USER</snapshotEnv>
<verbose>true</verbose>
<controlDir>${basedir}/src/deb/control</controlDir>
<dataSet>
<data>
<src>${project.build.directory}/${project.build.finalName}-${jar.w.dependencies}.jar</src>
<dst>${project.artifactId}.jar</dst>
<type>file</type>
<mapper>
<type>perm</type>
<prefix>/usr/share/wavesoftware/lib</prefix>
<user>loader</user>
<group>loader</group>
</mapper>
</data>
<data>
<src>${basedir}/src/deb/bin/${project.artifactId}</src>
<type>file</type>
<mapper>
<type>perm</type>
<prefix>/usr/bin</prefix>
<user>loader</user>
<group>loader</group>
<filemode>755</filemode>
</mapper>
</data>
</dataSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>ci</id>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.2.201409121644</version>
<executions>
<execution>
<id>jacoco-initialize</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>jacoco-site</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
<configuration>
<includes>
<include>pl/wavesoftware/**</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>2.2.0</version>
<executions>
<execution>
<id>coveralls-default</id>
<phase>verify</phase>
<goals>
<goal>jacoco</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>