1- <project >
2- <modelVersion >4.0.0</modelVersion >
3- <groupId >com.bandwidth.sdk</groupId >
4- <artifactId >bandwidth-sdk</artifactId >
5- <version >4.0.0</version >
6- <packaging >jar</packaging >
7- <name >BandwidthLib</name >
8- <build >
9- <pluginManagement >
10- <plugins >
11- <plugin >
12- <groupId >org.eclipse.m2e</groupId >
13- <artifactId >lifecycle-mapping</artifactId >
14- <version >1.0.0</version >
15- <configuration >
16- <lifecycleMappingMetadata >
17- <pluginExecutions >
18- <pluginExecution >
19- <pluginExecutionFilter >
20- <groupId >org.apache.maven.plugins</groupId >
21- <artifactId >maven-enforcer-plugin</artifactId >
22- <versionRange >[2.0.0,)</versionRange >
23- <goals >
24- <goal >enforce</goal >
25- </goals >
26- </pluginExecutionFilter >
27- <action >
28- <execute >
29- <runOnIncremental >true</runOnIncremental >
30- </execute >
31- </action >
32- </pluginExecution >
33- </pluginExecutions >
34- </lifecycleMappingMetadata >
35- </configuration >
36- </plugin >
37- </plugins >
38- </pluginManagement >
39- <plugins >
40- <plugin >
41- <groupId >org.apache.maven.plugins</groupId >
42- <artifactId >maven-enforcer-plugin</artifactId >
43- <version >3.0.0-M2</version >
44- <executions >
45- <execution >
46- <id >enforce-versions</id >
47- <goals >
48- <goal >enforce</goal >
49- </goals >
50- <configuration >
51- <fail >true</fail >
52- <rules >
53- <requireJavaVersion >
54- <version >1.8</version >
55- </requireJavaVersion >
56- </rules >
57- </configuration >
58- </execution >
59- </executions >
60- </plugin >
61- <plugin >
62- <artifactId >maven-assembly-plugin</artifactId >
63- <configuration >
64- <descriptorRefs >
65- <descriptorRef >jar-with-dependencies</descriptorRef >
66- </descriptorRefs >
67- <appendAssemblyId >false</appendAssemblyId >
68- </configuration >
69- </plugin >
1+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2+ 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+ <groupId >com.bandwidth.sdk</groupId >
5+ <artifactId >bandwidth-sdk</artifactId >
6+ <version >5.0.0</version >
7+ <packaging >jar</packaging >
8+ <name >BandwidthLib</name >
9+ <build >
10+ <pluginManagement >
11+ <plugins >
12+ <plugin >
13+ <groupId >org.eclipse.m2e</groupId >
14+ <artifactId >lifecycle-mapping</artifactId >
15+ <version >1.0.0</version >
16+ <configuration >
17+ <lifecycleMappingMetadata >
18+ <pluginExecutions >
19+ <pluginExecution >
20+ <pluginExecutionFilter >
21+ <groupId >org.apache.maven.plugins</groupId >
22+ <artifactId >maven-enforcer-plugin</artifactId >
23+ <versionRange >[2.0.0,)</versionRange >
24+ <goals >
25+ <goal >enforce</goal >
26+ </goals >
27+ </pluginExecutionFilter >
28+ <action >
29+ <execute >
30+ <runOnIncremental >true</runOnIncremental >
31+ </execute >
32+ </action >
33+ </pluginExecution >
34+ </pluginExecutions >
35+ </lifecycleMappingMetadata >
36+ </configuration >
37+ </plugin >
38+ </plugins >
39+ </pluginManagement >
40+ <plugins >
41+ <plugin >
42+ <groupId >org.apache.maven.plugins</groupId >
43+ <artifactId >maven-enforcer-plugin</artifactId >
44+ <version >3.0.0-M2</version >
45+ <executions >
46+ <execution >
47+ <id >enforce-versions</id >
48+ <goals >
49+ <goal >enforce</goal >
50+ </goals >
51+ <configuration >
52+ <fail >true</fail >
53+ <rules >
54+ <requireJavaVersion >
55+ <version >1.8</version >
56+ </requireJavaVersion >
57+ </rules >
58+ </configuration >
59+ </execution >
60+ </executions >
61+ </plugin >
62+ <plugin >
63+ <artifactId >maven-assembly-plugin</artifactId >
64+ <configuration >
65+ <descriptorRefs >
66+ <descriptorRef >jar-with-dependencies</descriptorRef >
67+ </descriptorRefs >
68+ <appendAssemblyId >false</appendAssemblyId >
69+ </configuration >
70+ </plugin >
7071 <plugin >
7172 <groupId >org.apache.maven.plugins</groupId >
7273 <artifactId >maven-source-plugin</artifactId >
110111 </execution >
111112 </executions >
112113 </plugin >
113- </plugins >
114- </build >
115- <properties >
116- <jackson .version>2.9.10</jackson .version>
117- <jackson .databind.version>2.9.10.7</jackson .databind.version>
118- <maven .compiler.source>1.8</maven .compiler.source>
119- <maven .compiler.target>1.8</maven .compiler.target>
120- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
121- </properties >
122- <dependencies >
123- <dependency >
124- <groupId >javax.xml.bind</groupId >
125- <artifactId >jaxb-api</artifactId >
126- <version >2.3.0</version >
127- </dependency >
128- <dependency >
129- <groupId >com.sun.xml.bind</groupId >
130- <artifactId >jaxb-core</artifactId >
131- <version >2.3.0</version >
132- </dependency >
133- <dependency >
134- <groupId >com.sun.xml.bind</groupId >
135- <artifactId >jaxb-impl</artifactId >
136- <version >2.3.0</version >
137- </dependency >
138- <dependency >
139- <groupId >org.projectlombok</groupId >
140- <artifactId >lombok</artifactId >
141- <version >1.18.8</version >
142- </dependency >
143- <dependency >
144- <groupId >com.squareup.okhttp3</groupId >
145- <artifactId >okhttp</artifactId >
146- <version >3.12.1</version >
147- </dependency >
148- <dependency >
149- <groupId >com.fasterxml.jackson.core</groupId >
150- <artifactId >jackson-databind</artifactId >
151- <version >${jackson.databind.version} </version >
152- </dependency >
153- <dependency >
154- <groupId >com.fasterxml.jackson.core</groupId >
155- <artifactId >jackson-core</artifactId >
156- <version >${jackson.version} </version >
157- </dependency >
158- <dependency >
159- <groupId >com.fasterxml.jackson.core</groupId >
160- <artifactId >jackson-annotations</artifactId >
161- <version >${jackson.version} </version >
162- </dependency >
163- </dependencies >
114+ </plugins >
115+ </build >
116+ <properties >
117+ <jackson .version>2.9.10</jackson .version>
118+ <jackson .databind.version>2.9.10.7</jackson .databind.version>
119+ <maven .compiler.source>1.8</maven .compiler.source>
120+ <maven .compiler.target>1.8</maven .compiler.target>
121+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
122+ </properties >
123+ <dependencies >
124+ <dependency >
125+ <groupId >javax.xml.bind</groupId >
126+ <artifactId >jaxb-api</artifactId >
127+ <version >2.3.0</version >
128+ </dependency >
129+ <dependency >
130+ <groupId >com.sun.xml.bind</groupId >
131+ <artifactId >jaxb-core</artifactId >
132+ <version >2.3.0</version >
133+ </dependency >
134+ <dependency >
135+ <groupId >com.sun.xml.bind</groupId >
136+ <artifactId >jaxb-impl</artifactId >
137+ <version >2.3.0</version >
138+ </dependency >
139+ <dependency >
140+ <groupId >org.projectlombok</groupId >
141+ <artifactId >lombok</artifactId >
142+ <version >1.18.8</version >
143+ </dependency >
144+
145+ <dependency >
146+ <groupId >com.squareup.okhttp3</groupId >
147+ <artifactId >okhttp</artifactId >
148+ <version >3.12.1</version >
149+ </dependency >
150+ <dependency >
151+ <groupId >com.fasterxml.jackson.core</groupId >
152+ <artifactId >jackson-databind</artifactId >
153+ <version >${jackson.databind.version} </version >
154+ </dependency >
155+ <dependency >
156+ <groupId >com.fasterxml.jackson.core</groupId >
157+ <artifactId >jackson-core</artifactId >
158+ <version >${jackson.version} </version >
159+ </dependency >
160+ <dependency >
161+ <groupId >com.fasterxml.jackson.core</groupId >
162+ <artifactId >jackson-annotations</artifactId >
163+ <version >${jackson.version} </version >
164+ </dependency >
165+ <dependency >
166+ <groupId >junit</groupId >
167+ <artifactId >junit</artifactId >
168+ <version >4.13.1</version >
169+ <scope >test</scope >
170+ </dependency >
171+ </dependencies >
164172 <distributionManagement >
165173 <snapshotRepository >
166174 <id >ossrh</id >
198206 <timezone >-5</timezone >
199207 </developer >
200208 </developers >
201- </project >
209+ </project >
0 commit comments