jonahkh
2020-05-29 5eeffe88821b8fa7427a4d92b44a88cefec1e700
commit | author | age
4829e4 1 <?xml version="1.0" encoding="UTF-8"?>
J 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.2.6.RELEASE</version>
067c51 9         <relativePath/>
4829e4 10     </parent>
J 11     <groupId>com.redhat.do328.adoptApup</groupId>
12     <artifactId>animal-service</artifactId>
13     <version>0.0.1-SNAPSHOT</version>
14     <name>animal-service</name>
15     <description>Handles animal management</description>
16
17     <properties>
18         <java.version>1.8</java.version>
19     </properties>
20
21     <dependencies>
22         <dependency>
23             <groupId>io.springfox</groupId>
24             <artifactId>springfox-swagger-ui</artifactId>
25             <version>2.9.2</version>
26         </dependency>
27         <dependency>
28             <groupId>io.springfox</groupId>
29             <artifactId>springfox-swagger2</artifactId>
30             <version>2.9.2</version>
31         </dependency>
32         <dependency>
33             <groupId>org.antlr</groupId>
34             <artifactId>ST4</artifactId>
35             <version>4.3</version>
36             <scope>compile</scope>
37         </dependency>
38         <dependency>
39             <groupId>org.springframework.boot</groupId>
40             <artifactId>spring-boot-starter-data-mongodb</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.springframework.boot</groupId>
44             <artifactId>spring-boot-starter-web</artifactId>
45         </dependency>
46
47         <dependency>
48             <groupId>org.projectlombok</groupId>
49             <artifactId>lombok</artifactId>
50             <optional>true</optional>
51         </dependency>
52         <dependency>
53             <groupId>org.springframework.boot</groupId>
54             <artifactId>spring-boot-starter-test</artifactId>
55             <scope>test</scope>
56             <exclusions>
57                 <exclusion>
58                     <groupId>org.junit.vintage</groupId>
59                     <artifactId>junit-vintage-engine</artifactId>
60                 </exclusion>
61             </exclusions>
62         </dependency>
63         <dependency>
64             <groupId>org.thymeleaf</groupId>
65             <artifactId>thymeleaf</artifactId>
66             <version>3.0.11.RELEASE</version>
67         </dependency>
68     </dependencies>
69
70     <build>
71         <plugins>
72             <plugin>
73                 <groupId>org.springframework.boot</groupId>
74                 <artifactId>spring-boot-maven-plugin</artifactId>
75             </plugin>
76         </plugins>
77     </build>
78
79 </project>