12
12
<description >A library for communicating with the Apple Push Gateway in HTTP/2.</description >
13
13
<url >https://github.com/CleverTap/apns-http2</url >
14
14
15
- <properties >
16
- <sonar .organization>clevertap</sonar .organization>
17
- <sonar .host.url>https://sonarcloud.io</sonar .host.url>
18
- <sonar .projectKey>CleverTap_apns-http2</sonar .projectKey>
19
- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
20
- <maven .compiler.source>1.8</maven .compiler.source>
21
- <maven .compiler.target>${maven.compiler.source} </maven .compiler.target>
22
- </properties >
23
-
24
- <dependencyManagement >
25
- <dependencies >
26
- <dependency >
27
- <groupId >org.junit</groupId >
28
- <artifactId >junit-bom</artifactId >
29
- <version >5.8.1</version >
30
- <type >pom</type >
31
- <scope >import</scope >
32
- </dependency >
33
- </dependencies >
34
- </dependencyManagement >
35
-
36
15
<dependencies >
37
16
<dependency >
38
17
<groupId >com.fasterxml.jackson.core</groupId >
55
34
<dependency >
56
35
<groupId >com.squareup.okhttp3</groupId >
57
36
<artifactId >okhttp</artifactId >
58
- <version >3.2.0</version >
37
+ <version >4.8.1</version >
38
+ </dependency >
39
+
40
+ <dependency >
41
+ <groupId >com.squareup.okhttp3</groupId >
42
+ <artifactId >mockwebserver</artifactId >
43
+ <version >4.8.1</version >
44
+ <scope >test</scope >
45
+ </dependency >
46
+
47
+ <dependency >
48
+ <groupId >com.squareup.okhttp3</groupId >
49
+ <artifactId >okhttp-tls</artifactId >
50
+ <version >4.8.1</version >
51
+ <scope >test</scope >
52
+ </dependency >
53
+
54
+ <dependency >
55
+ <groupId >junit</groupId >
56
+ <artifactId >junit</artifactId >
57
+ <version >4.11</version >
58
+ <scope >test</scope >
59
59
</dependency >
60
60
<dependency >
61
61
<groupId >org.junit.jupiter</groupId >
62
62
<artifactId >junit-jupiter</artifactId >
63
+ <version >RELEASE</version >
63
64
<scope >test</scope >
64
65
</dependency >
65
66
</dependencies >
66
67
67
- <profiles >
68
- <profile >
69
- <id >jacoco</id >
70
- <build >
71
- <plugins >
72
- <plugin >
73
- <groupId >org.jacoco</groupId >
74
- <artifactId >jacoco-maven-plugin</artifactId >
75
- <version >0.8.4</version >
76
- <executions >
77
- <execution >
78
- <goals >
79
- <goal >prepare-agent</goal >
80
- </goals >
81
- </execution >
82
- <execution >
83
- <id >jacoco-report</id >
84
- <goals >
85
- <goal >report</goal >
86
- </goals >
87
- </execution >
88
- </executions >
89
- </plugin >
90
- </plugins >
91
- </build >
92
- </profile >
93
- </profiles >
94
-
95
68
<build >
96
69
<plugins >
97
70
<plugin >
98
71
<groupId >org.apache.maven.plugins</groupId >
99
72
<artifactId >maven-compiler-plugin</artifactId >
100
- <version >3.8.1</version >
101
- </plugin >
102
- <plugin >
103
- <artifactId >maven-surefire-plugin</artifactId >
104
- <version >2.22.2</version >
73
+ <configuration >
74
+ <source >1.8</source >
75
+ <target >1.8</target >
76
+ </configuration >
105
77
</plugin >
106
78
<plugin >
107
79
<groupId >org.apache.maven.plugins</groupId >
108
80
<artifactId >maven-source-plugin</artifactId >
109
81
<version >2.1.2</version >
110
82
<executions >
111
83
<execution >
112
- <id >attach-sources</id >
113
- <goals >
114
- <goal >jar-no-fork</goal >
115
- </goals >
84
+ <id >attach-sources</id >
85
+ <goals >
86
+ <goal >jar-no-fork</goal >
87
+ </goals >
116
88
</execution >
117
- </executions >
89
+ </executions >
118
90
</plugin >
119
91
<plugin >
120
- <groupId >org.apache.maven.plugins</groupId >
121
- <artifactId >maven-javadoc-plugin</artifactId >
122
- <version >2.7</version >
123
- <executions >
124
- <execution >
125
- <id >attach-javadocs</id >
126
- <goals >
127
- <goal >jar</goal >
128
- </goals >
129
- </execution >
130
- </executions >
92
+ <groupId >org.apache.maven.plugins</groupId >
93
+ <artifactId >maven-javadoc-plugin</artifactId >
94
+ <version >2.7</version >
95
+ <executions >
96
+ <execution >
97
+ <id >attach-javadocs</id >
98
+ <goals >
99
+ <goal >jar</goal >
100
+ </goals >
101
+ </execution >
102
+ </executions >
131
103
</plugin >
132
- <!-- this plugin is for creating fat jar (jar with embedded dependencies). -->
104
+ <!-- this plugin is for creating fat jar (jar with embedded dependencies). -->
133
105
<plugin >
134
106
<groupId >org.apache.maven.plugins</groupId >
135
107
<artifactId >maven-assembly-plugin</artifactId >
181
153
<url >https://opensource.org/licenses/BSD-3-Clause</url >
182
154
</license >
183
155
</licenses >
184
- </project >
156
+ </project >
0 commit comments