]> git.somenet.org - pub/jan/dst18.git/blob - ass2-service/auth-client/pom.xml
Add template for assignment 2
[pub/jan/dst18.git] / ass2-service / auth-client / 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-auth-client</artifactId>
15
16   <name>DST :: Assignment 2 :: Service :: Auth Client</name>
17
18   <packaging>jar</packaging>
19
20   <dependencies>
21     <dependency>
22       <groupId>at.ac.tuwien.infosys.dst</groupId>
23       <artifactId>ass2-service-api</artifactId>
24       <version>${project.version}</version>
25     </dependency>
26
27     <dependency>
28       <groupId>io.grpc</groupId>
29       <artifactId>grpc-protobuf</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>io.grpc</groupId>
33       <artifactId>grpc-stub</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>io.grpc</groupId>
37       <artifactId>grpc-netty</artifactId>
38     </dependency>
39
40     <dependency>
41       <groupId>at.ac.tuwien.infosys.dst</groupId>
42       <artifactId>ass2-service-auth</artifactId>
43       <version>${project.version}</version>
44       <scope>test</scope>
45     </dependency>
46     <dependency>
47       <groupId>at.ac.tuwien.infosys.dst</groupId>
48       <artifactId>ass1-jpa</artifactId>
49       <version>${project.version}</version>
50       <type>test-jar</type>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54       <groupId>at.ac.tuwien.infosys.dst</groupId>
55       <artifactId>ass2-service-auth</artifactId>
56       <version>${project.version}</version>
57       <type>test-jar</type>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.springframework</groupId>
62       <artifactId>spring-orm</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.springframework.boot</groupId>
67       <artifactId>spring-boot-starter-test</artifactId>
68       <scope>test</scope>
69     </dependency>
70   </dependencies>
71
72 </project>