1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xmlns =" http://maven.apache.org/POM/4.0.0"
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
+ <artifactId >sampling-message-client</artifactId >
8
+ <version >0.1</version >
9
+ <packaging >jar</packaging >
10
+
11
+ <parent >
12
+ <groupId >de.dhbw.ravensburg.verteiltesysteme</groupId >
13
+ <artifactId >sampling-message-service</artifactId >
14
+ <version >0.1</version >
15
+ </parent >
16
+
17
+ <properties >
18
+ <maven .compiler.source>1.8</maven .compiler.source>
19
+ <maven .compiler.target>1.8</maven .compiler.target>
20
+ <io .grpc.version>1.12.0</io .grpc.version>
21
+ <org .apache.logging.log4j.version>2.11.0</org .apache.logging.log4j.version>
22
+ <org .projectlombok.version>1.16.20</org .projectlombok.version>
23
+ <org .mapstruct.version>1.2.0.Final</org .mapstruct.version>
24
+ </properties >
25
+
26
+ <build >
27
+ <extensions >
28
+ <extension >
29
+ <groupId >kr.motd.maven</groupId >
30
+ <artifactId >os-maven-plugin</artifactId >
31
+ <version >1.5.0.Final</version >
32
+ </extension >
33
+ </extensions >
34
+ <plugins >
35
+ <plugin >
36
+ <groupId >org.xolstice.maven.plugins</groupId >
37
+ <artifactId >protobuf-maven-plugin</artifactId >
38
+ <version >0.5.1</version >
39
+ <configuration >
40
+ <protocArtifact >com.google.protobuf:protoc:3.5.1-1:exe:${os.detected.classifier} </protocArtifact >
41
+ <pluginId >grpc-java</pluginId >
42
+ <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.11.0:exe:${os.detected.classifier} </pluginArtifact >
43
+ </configuration >
44
+ <executions >
45
+ <execution >
46
+ <goals >
47
+ <goal >compile</goal >
48
+ <goal >compile-custom</goal >
49
+ </goals >
50
+ </execution >
51
+ </executions >
52
+ </plugin >
53
+ <plugin >
54
+ <groupId >org.apache.maven.plugins</groupId >
55
+ <artifactId >maven-compiler-plugin</artifactId >
56
+ <version >3.7.0</version >
57
+ </plugin >
58
+ <plugin >
59
+ <artifactId >maven-assembly-plugin</artifactId >
60
+ <configuration >
61
+ <archive >
62
+ <manifest >
63
+ <mainClass >de.dhbw.ravensburg.verteiltesysteme.client.Main</mainClass >
64
+ </manifest >
65
+ </archive >
66
+ <descriptorRefs >
67
+ <descriptorRef >jar-with-dependencies</descriptorRef >
68
+ </descriptorRefs >
69
+ </configuration >
70
+ <executions >
71
+ <execution >
72
+ <id >make-assembly</id > <!-- this is used for inheritance merges -->
73
+ <phase >package</phase > <!-- bind to the packaging phase -->
74
+ <goals >
75
+ <goal >single</goal >
76
+ </goals >
77
+ </execution >
78
+ </executions >
79
+ </plugin >
80
+ <plugin >
81
+ <groupId >org.codehaus.mojo</groupId >
82
+ <artifactId >build-helper-maven-plugin</artifactId >
83
+ <version >1.9.1</version >
84
+ <executions >
85
+ <execution >
86
+ <id >add-integration-test-source-as-test-sources</id >
87
+ <phase >generate-test-sources</phase >
88
+ <goals >
89
+ <goal >add-test-source</goal >
90
+ </goals >
91
+ <configuration >
92
+ <sources >
93
+ <source >src/it/java</source >
94
+ </sources >
95
+ </configuration >
96
+ </execution >
97
+ </executions >
98
+ </plugin >
99
+ <plugin >
100
+ <groupId >org.apache.maven.plugins</groupId >
101
+ <artifactId >maven-failsafe-plugin</artifactId >
102
+ <version >2.20</version >
103
+ <executions >
104
+ <execution >
105
+ <id >integration-test</id >
106
+ <goals >
107
+ <goal >integration-test</goal >
108
+ <goal >verify</goal >
109
+ </goals >
110
+ </execution >
111
+ </executions >
112
+ </plugin >
113
+ </plugins >
114
+ </build >
115
+
116
+ <dependencies >
117
+ <dependency >
118
+ <groupId >io.grpc</groupId >
119
+ <artifactId >grpc-netty</artifactId >
120
+ <version >${io.grpc.version} </version >
121
+ </dependency >
122
+ <dependency >
123
+ <groupId >io.grpc</groupId >
124
+ <artifactId >grpc-protobuf</artifactId >
125
+ <version >${io.grpc.version} </version >
126
+ </dependency >
127
+ <dependency >
128
+ <groupId >io.grpc</groupId >
129
+ <artifactId >grpc-stub</artifactId >
130
+ <version >${io.grpc.version} </version >
131
+ </dependency >
132
+ <dependency >
133
+ <groupId >org.projectlombok</groupId >
134
+ <artifactId >lombok</artifactId >
135
+ <version >${org.projectlombok.version} </version >
136
+ <scope >provided</scope >
137
+ </dependency >
138
+ <dependency >
139
+ <groupId >org.apache.logging.log4j</groupId >
140
+ <artifactId >log4j-api</artifactId >
141
+ <version >${org.apache.logging.log4j.version} </version >
142
+ </dependency >
143
+ <dependency >
144
+ <groupId >org.apache.logging.log4j</groupId >
145
+ <artifactId >log4j-core</artifactId >
146
+ <version >${org.apache.logging.log4j.version} </version >
147
+ </dependency >
148
+ <dependency >
149
+ <groupId >org.apache.logging.log4j</groupId >
150
+ <artifactId >log4j-slf4j-impl</artifactId >
151
+ <version >${org.apache.logging.log4j.version} </version >
152
+ </dependency >
153
+ <dependency >
154
+ <groupId >commons-cli</groupId >
155
+ <artifactId >commons-cli</artifactId >
156
+ <version >1.4</version >
157
+ </dependency >
158
+
159
+
160
+ <dependency >
161
+ <groupId >org.testng</groupId >
162
+ <artifactId >testng</artifactId >
163
+ <version >6.14.3</version >
164
+ <scope >test</scope >
165
+ </dependency >
166
+ <dependency >
167
+ <groupId >de.dhbw.ravensburg.verteiltesysteme</groupId >
168
+ <artifactId >sampling-message-server</artifactId >
169
+ <version >0.1</version >
170
+ </dependency >
171
+ </dependencies >
172
+ </project >
0 commit comments