Timoney, Dan (dt5972) | fe8d3bc | 2019-01-18 16:51:25 -0500 | [diff] [blame] | 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
Timoney, Dan (dt5972) | 42ef3e4 | 2018-09-13 12:11:35 -0400 | [diff] [blame] | 4 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.onap.sdnc.oam.vnfbackup</groupId> |
| 7 | <artifactId>configbackuprestore</artifactId> |
Hesam Rahimi | 55378e7 | 2021-06-07 20:02:32 +0000 | [diff] [blame] | 8 | <version>2.2.0-SNAPSHOT</version> |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 9 | </parent> |
Timoney, Dan (dt5972) | 42ef3e4 | 2018-09-13 12:11:35 -0400 | [diff] [blame] | 10 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 11 | <groupId>org.onap.sdnc.oam.vnfbackup</groupId> |
| 12 | <artifactId>vnfconfigreportsservice</artifactId> |
Hesam Rahimi | 55378e7 | 2021-06-07 20:02:32 +0000 | [diff] [blame] | 13 | <version>2.2.0-SNAPSHOT</version> |
Soumendu Sekhar Acharya | cc49cb7 | 2018-08-07 15:23:28 +0530 | [diff] [blame] | 14 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 15 | <name>sdnc-oam :: vnfbackup :: vnfconfigreportservice</name> |
| 16 | <url>http://maven.apache.org</url> |
Soumendu Sekhar Acharya | cc49cb7 | 2018-08-07 15:23:28 +0530 | [diff] [blame] | 17 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 18 | <properties> |
| 19 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 20 | </properties> |
Soumendu Sekhar Acharya | cc49cb7 | 2018-08-07 15:23:28 +0530 | [diff] [blame] | 21 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 22 | <dependencies> |
| 23 | <dependency> |
| 24 | <groupId>junit</groupId> |
| 25 | <artifactId>junit</artifactId> |
| 26 | <version>4.11</version> |
| 27 | <scope>test</scope> |
| 28 | </dependency> |
Soumendu Sekhar Acharya | cc49cb7 | 2018-08-07 15:23:28 +0530 | [diff] [blame] | 29 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 30 | <dependency> |
| 31 | <groupId>javax.servlet</groupId> |
| 32 | <artifactId>jstl</artifactId> |
| 33 | <scope>provided</scope> |
| 34 | </dependency> |
| 35 | |
| 36 | <dependency> |
| 37 | <groupId>org.mariadb.jdbc</groupId> |
| 38 | <artifactId>mariadb-java-client</artifactId> |
| 39 | <version>1.1.9</version> |
| 40 | </dependency> |
| 41 | <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec --> |
| 42 | <dependency> |
| 43 | <groupId>commons-codec</groupId> |
| 44 | <artifactId>commons-codec</artifactId> |
| 45 | <version>1.9</version> |
| 46 | </dependency> |
| 47 | |
| 48 | <dependency> |
| 49 | <groupId>org.springframework.boot</groupId> |
| 50 | <artifactId>spring-boot-starter-web</artifactId> |
| 51 | <version>1.5.4.RELEASE</version> |
| 52 | </dependency> |
| 53 | |
| 54 | <dependency> |
| 55 | <groupId>org.springframework</groupId> |
| 56 | <artifactId>spring-context</artifactId> |
| 57 | <version>4.3.9.RELEASE</version> |
| 58 | </dependency> |
| 59 | |
| 60 | <dependency> |
| 61 | <groupId>org.springframework.boot</groupId> |
| 62 | <artifactId>spring-boot-starter-tomcat</artifactId> |
| 63 | <scope>provided</scope> |
| 64 | </dependency> |
| 65 | |
| 66 | <dependency> |
| 67 | <groupId>org.apache.tomcat.embed</groupId> |
| 68 | <artifactId>tomcat-embed-jasper</artifactId> |
| 69 | <scope>provided</scope> |
| 70 | </dependency> |
Soumendu Sekhar Acharya | cc49cb7 | 2018-08-07 15:23:28 +0530 | [diff] [blame] | 71 | |
| 72 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 73 | <dependency> |
| 74 | <groupId>org.springframework.boot</groupId> |
| 75 | <artifactId>spring-boot-devtools</artifactId> |
| 76 | <optional>true</optional> |
| 77 | </dependency> |
Soumendu Sekhar Acharya | cc49cb7 | 2018-08-07 15:23:28 +0530 | [diff] [blame] | 78 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 79 | <dependency> |
| 80 | <groupId>org.springframework.boot</groupId> |
| 81 | <artifactId>spring-boot-starter-test</artifactId> |
| 82 | <version>1.5.3.RELEASE</version> |
| 83 | <scope>test</scope> |
| 84 | </dependency> |
Soumendu Sekhar Acharya | cc49cb7 | 2018-08-07 15:23:28 +0530 | [diff] [blame] | 85 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 86 | <dependency> |
| 87 | <groupId>org.springframework.boot</groupId> |
| 88 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 89 | </dependency> |
Soumendu Sekhar Acharya | cc49cb7 | 2018-08-07 15:23:28 +0530 | [diff] [blame] | 90 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 91 | <!-- Add Log4j2 Dependency --> |
| 92 | <dependency> |
| 93 | <groupId>org.springframework.boot</groupId> |
| 94 | <artifactId>spring-boot-starter-log4j2</artifactId> |
| 95 | </dependency> |
Soumendu Sekhar Acharya | cc49cb7 | 2018-08-07 15:23:28 +0530 | [diff] [blame] | 96 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame] | 97 | <dependency> |
| 98 | <groupId>org.json</groupId> |
| 99 | <artifactId>json</artifactId> |
| 100 | <version>20180130</version> |
| 101 | </dependency> |
| 102 | <!-- https://mvnrepository.com/artifact/com.fasterxml/jackson-xml-databind --> |
| 103 | <dependency> |
| 104 | <groupId>com.fasterxml</groupId> |
| 105 | <artifactId>jackson-xml-databind</artifactId> |
| 106 | <version>0.6.2</version> |
| 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>org.mockito</groupId> |
| 110 | <artifactId>mockito-all</artifactId> |
| 111 | <version>1.9.5</version> |
| 112 | <scope>test</scope> |
| 113 | </dependency> |
| 114 | </dependencies> |
Soumendu Sekhar Acharya | cc49cb7 | 2018-08-07 15:23:28 +0530 | [diff] [blame] | 115 | </project> |