1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <groupId >com.refinitiv</groupId >
8+ <artifactId >dotenv_Java</artifactId >
9+ <version >1.0</version >
10+
11+ <properties >
12+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
13+ <maven .compiler.source>1.8</maven .compiler.source>
14+ <maven .compiler.target>1.8</maven .compiler.target>
15+ </properties >
16+
17+ <dependencies >
18+
19+ <!-- websocket api -->
20+ <dependency >
21+ <groupId >org.apache.httpcomponents</groupId >
22+ <artifactId >httpclient</artifactId >
23+ <version >4.5.13</version >
24+ </dependency >
25+ <dependency >
26+ <groupId >commons-cli</groupId >
27+ <artifactId >commons-cli</artifactId >
28+ <version >1.4</version >
29+ </dependency >
30+ <dependency >
31+ <groupId >org.json</groupId >
32+ <artifactId >json</artifactId >
33+ <version >20210307</version >
34+ </dependency >
35+ <dependency >
36+ <groupId >com.neovisionaries</groupId >
37+ <artifactId >nv-websocket-client</artifactId >
38+ <version >2.14</version >
39+ </dependency >
40+ <!-- dotenv -->
41+ <dependency >
42+ <groupId >io.github.cdimascio</groupId >
43+ <artifactId >dotenv-java</artifactId >
44+ <version >2.2.0</version >
45+ </dependency >
46+ </dependencies >
47+
48+ <build >
49+ <plugins >
50+ <plugin >
51+ <groupId >org.apache.maven.plugins</groupId >
52+ <artifactId >maven-assembly-plugin</artifactId >
53+ <executions >
54+ <execution >
55+ <phase >package</phase >
56+ <goals >
57+ <goal >single</goal >
58+ </goals >
59+ <configuration >
60+ <archive >
61+ <manifest >
62+ <mainClass >
63+ <!-- com.refinitiv.ema.test.TestENV-->
64+ com.refinitiv.ws.cloud.MarketPriceRdpGwServiceDiscovery
65+ </mainClass >
66+ </manifest >
67+ </archive >
68+ <descriptorRefs >
69+ <descriptorRef >jar-with-dependencies</descriptorRef >
70+ </descriptorRefs >
71+ </configuration >
72+ </execution >
73+ </executions >
74+ </plugin >
75+ </plugins >
76+ </build >
77+
78+ </project >
0 commit comments