]> git.somenet.org - pub/jan/dst18.git/blob - ass2-service/api/pom.xml
Add template for assignment 2
[pub/jan/dst18.git] / ass2-service / api / pom.xml
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"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5   <modelVersion>4.0.0</modelVersion>
6
7   <parent>
8     <groupId>at.ac.tuwien.infosys.dst</groupId>
9     <artifactId>dst</artifactId>
10     <version>2018.1</version>
11     <relativePath>../..</relativePath>
12   </parent>
13
14   <artifactId>ass2-service-api</artifactId>
15
16   <name>DST :: Assignment 2 :: Service :: API</name>
17
18   <packaging>jar</packaging>
19
20   <dependencies>
21     <dependency>
22       <groupId>io.grpc</groupId>
23       <artifactId>grpc-protobuf</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>io.grpc</groupId>
27       <artifactId>grpc-stub</artifactId>
28     </dependency>
29   </dependencies>
30
31   <build>
32     <extensions>
33       <extension>
34         <groupId>kr.motd.maven</groupId>
35         <artifactId>os-maven-plugin</artifactId>
36       </extension>
37     </extensions>
38     <plugins>
39       <plugin>
40         <groupId>org.xolstice.maven.plugins</groupId>
41         <artifactId>protobuf-maven-plugin</artifactId>
42       </plugin>
43     </plugins>
44
45   </build>
46
47 </project>