1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <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" >
3+ <modelVersion >4.0.0</modelVersion >
4+ <parent >
5+ <groupId >org.sonatype.oss</groupId >
6+ <artifactId >oss-parent</artifactId >
7+ <version >9</version >
8+ </parent >
9+ <groupId >pl.wavesoftware.utils</groupId >
10+ <artifactId >https-checker</artifactId >
11+ <version >0.1.0-SNAPSHOT</version >
12+ <packaging >jar</packaging >
13+
14+ <name >HTTPS Java Checker</name >
15+ <description >It can check is your Java installation can perform connection with given HTTPS address</description >
16+ <url >https://github.com/wavesoftware/java-https-checker</url >
17+
18+ <properties >
19+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
20+ <maven .compiler.source>1.7</maven .compiler.source>
21+ <maven .compiler.target>1.7</maven .compiler.target>
22+ </properties >
23+
24+ <dependencies >
25+ <dependency >
26+ <groupId >net.sourceforge.argparse4j</groupId >
27+ <artifactId >argparse4j</artifactId >
28+ <version >0.6.0</version >
29+ </dependency >
30+ <dependency >
31+ <groupId >com.google.guava</groupId >
32+ <artifactId >guava</artifactId >
33+ <version >18.0</version >
34+ </dependency >
35+ <dependency >
36+ <groupId >junit</groupId >
37+ <artifactId >junit</artifactId >
38+ <version >4.10</version >
39+ <scope >test</scope >
40+ </dependency >
41+ <dependency >
42+ <groupId >org.mockito</groupId >
43+ <artifactId >mockito-all</artifactId >
44+ <version >1.9.5</version >
45+ <scope >test</scope >
46+ </dependency >
47+ </dependencies >
48+
49+ <issueManagement >
50+ <system >Github</system >
51+ <url >https://github.com/wavesoftware/java-https-checker/issues</url >
52+ </issueManagement >
53+
54+ <licenses >
55+ <license >
56+ <name >The Apache Software License, Version 2.0</name >
57+ <url >http://www.apache.org/licenses/LICENSE-2.0.txt</url >
58+ <distribution >repo</distribution >
59+ </license >
60+ </licenses >
61+
62+ <scm >
63+ <connection >scm:git:git@github.com:wavesoftware/java-https-checker.git</connection >
64+ <developerConnection >scm:git:git@github.com:wavesoftware/java-https-checker.git</developerConnection >
65+ <url >git@github.com:wavesoftware/java-https-checker.git</url >
66+ </scm >
67+
68+ <developers >
69+ <developer >
70+ <email >krzysztof.suszynski@wavesoftware.pl</email >
71+ <organization >Wave Software</organization >
72+ <name >Krzysztof Suszyński</name >
73+ </developer >
74+ </developers >
75+
76+ <build >
77+
78+ <plugins >
79+ <plugin >
80+ <artifactId >maven-assembly-plugin</artifactId >
81+ <executions >
82+ <execution >
83+ <phase >package</phase >
84+ <goals >
85+ <goal >single</goal >
86+ </goals >
87+ </execution >
88+ </executions >
89+ <configuration >
90+
91+ <archive >
92+ <manifest >
93+ <addClasspath >true</addClasspath >
94+ <mainClass >pl.wavesoftware.utils.https.checker.HttpsCheckerMain</mainClass >
95+ </manifest >
96+ </archive >
97+
98+ <descriptorRefs >
99+ <descriptorRef >jar-with-dependencies</descriptorRef >
100+ </descriptorRefs >
101+
102+ </configuration >
103+ </plugin >
104+ </plugins >
105+
106+ </build >
107+
108+ <profiles >
109+ <profile >
110+ <id >ci</id >
111+
112+ <build >
113+ <plugins >
114+ <plugin >
115+ <groupId >org.jacoco</groupId >
116+ <artifactId >jacoco-maven-plugin</artifactId >
117+ <version >0.7.2.201409121644</version >
118+
119+ <executions >
120+ <execution >
121+ <id >jacoco-initialize</id >
122+ <goals >
123+ <goal >prepare-agent</goal >
124+ </goals >
125+ </execution >
126+ <execution >
127+ <id >jacoco-site</id >
128+ <phase >test</phase >
129+ <goals >
130+ <goal >report</goal >
131+ </goals >
132+ </execution >
133+ </executions >
134+ <configuration >
135+ <includes >
136+ <include >pl/wavesoftware/**</include >
137+ </includes >
138+ </configuration >
139+ </plugin >
140+ </plugins >
141+ </build >
142+ </profile >
143+ </profiles >
144+ </project >
0 commit comments