Added Authentication Component
[eliot.git] / blueprints / common / eliot-ui / be / src / eliotk8sclient / 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5         <parent>
6                 <groupId>org.springframework.boot</groupId>
7                 <artifactId>spring-boot-starter-parent</artifactId>
8                 <version>2.1.8.RELEASE</version>
9                 <relativePath/> <!-- lookup parent from repository -->
10         </parent>
11         <groupId>com.eliot.eliotbe</groupId>
12         <artifactId>eliotk8sclient</artifactId>
13         <version>0.0.1</version>
14         <name>eliotk8sclient</name>
15         <description>eliot backend code for kubernetes client</description>
16
17         <properties>
18                 <java.version>1.8</java.version>
19         </properties>
20
21         <dependencies>
22                 <dependency>
23                         <groupId>org.springframework.boot</groupId>
24                         <artifactId>spring-boot-starter-web</artifactId>
25                 </dependency>
26
27                 <dependency>
28                         <groupId>org.springframework.boot</groupId>
29                         <artifactId>spring-boot-starter-test</artifactId>
30                         <scope>test</scope>
31                 </dependency>
32                 <dependency>
33                         <groupId>org.springframework.boot</groupId>
34                         <artifactId>spring-boot-starter-security</artifactId>
35                 </dependency>
36                 <dependency>
37                         <groupId>io.jsonwebtoken</groupId>
38                         <artifactId>jjwt</artifactId>
39                         <version>0.9.1</version>
40                 </dependency>
41                 <dependency>
42                         <groupId>javax.xml.bind</groupId>
43                         <artifactId>jaxb-api</artifactId>
44                         <version>2.3.0</version>
45                 </dependency>
46                 <dependency>
47                         <groupId>io.kubernetes</groupId>
48                         <artifactId>client-java</artifactId>
49                         <version>5.0.0</version>
50                         <scope>compile</scope>
51                 </dependency>
52
53         </dependencies>
54
55         <build>
56                 <plugins>
57                         <plugin>
58                                 <groupId>org.springframework.boot</groupId>
59                                 <artifactId>spring-boot-maven-plugin</artifactId>
60                         </plugin>
61                 </plugins>
62         </build>
63
64 </project>