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> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [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> |
| 8 | <version>2.0.0-SNAPSHOT</version> |
| 9 | </parent> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [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>vnfconfigbackupservice</artifactId> |
| 13 | <version>2.0.0</version> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame] | 14 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 15 | <name>sdnc-oam :: vnfbackup :: vnfconfigbackupservice</name> |
| 16 | <url>http://maven.apache.org</url> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame] | 17 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 18 | <dependencies> |
| 19 | |
| 20 | <dependency> |
| 21 | <groupId>org.onap.sdnc.oam.vnfbackup</groupId> |
| 22 | <artifactId>getBackupVnfDetailService</artifactId> |
| 23 | <version>2.0.0</version> |
| 24 | </dependency> |
| 25 | |
| 26 | <dependency> |
| 27 | <groupId>org.onap.sdnc.oam.vnfbackup</groupId> |
| 28 | <artifactId>vnfconfigreportsservice</artifactId> |
| 29 | <version>2.0.0</version> |
| 30 | </dependency> |
| 31 | |
| 32 | <dependency> |
| 33 | <groupId>org.jmockit</groupId> |
| 34 | <artifactId>jmockit</artifactId> |
| 35 | <version>1.19</version> |
| 36 | <scope>test</scope> |
| 37 | </dependency> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame] | 38 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 39 | <dependency> |
| 40 | <groupId>org.jmockit</groupId> |
| 41 | <artifactId>jmockit-coverage</artifactId> |
| 42 | <version>1.19</version> |
| 43 | <scope>test</scope> |
| 44 | </dependency> |
| 45 | |
| 46 | <dependency> |
| 47 | <groupId>junit</groupId> |
| 48 | <artifactId>junit</artifactId> |
| 49 | <version>4.9</version> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame] | 52 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 53 | <dependency> |
| 54 | <groupId>javax.servlet</groupId> |
| 55 | <artifactId>jstl</artifactId> |
| 56 | <scope>provided</scope> |
| 57 | </dependency> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame] | 58 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 59 | <dependency> |
| 60 | <groupId>org.mariadb.jdbc</groupId> |
| 61 | <artifactId>mariadb-java-client</artifactId> |
| 62 | <version>1.1.9</version> |
| 63 | </dependency> |
| 64 | |
| 65 | <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec --> |
| 66 | <dependency> |
| 67 | <groupId>commons-codec</groupId> |
| 68 | <artifactId>commons-codec</artifactId> |
| 69 | <version>1.9</version> |
| 70 | </dependency> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame] | 71 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 72 | <dependency> |
| 73 | <groupId>org.springframework.boot</groupId> |
| 74 | <artifactId>spring-boot-starter-web</artifactId> |
| 75 | <version>1.5.4.RELEASE</version> |
| 76 | </dependency> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame] | 77 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 78 | <dependency> |
| 79 | <groupId>org.springframework</groupId> |
| 80 | <artifactId>spring-context</artifactId> |
| 81 | <version>4.3.9.RELEASE</version> |
| 82 | </dependency> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame] | 83 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 84 | <dependency> |
| 85 | <groupId>org.springframework.boot</groupId> |
| 86 | <artifactId>spring-boot-starter-tomcat</artifactId> |
| 87 | <scope>provided</scope> |
| 88 | </dependency> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame] | 89 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 90 | <dependency> |
| 91 | <groupId>org.apache.tomcat.embed</groupId> |
| 92 | <artifactId>tomcat-embed-jasper</artifactId> |
| 93 | <scope>provided</scope> |
| 94 | </dependency> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame] | 95 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 96 | <dependency> |
| 97 | <groupId>org.springframework.boot</groupId> |
| 98 | <artifactId>spring-boot-devtools</artifactId> |
| 99 | <optional>true</optional> |
| 100 | </dependency> |
soumendu | 1450782 | 2018-10-22 15:41:29 +0530 | [diff] [blame] | 101 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 102 | <dependency> |
| 103 | <groupId>org.springframework.boot</groupId> |
| 104 | <artifactId>spring-boot-starter-test</artifactId> |
| 105 | <version>1.5.3.RELEASE</version> |
| 106 | <scope>test</scope> |
| 107 | </dependency> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame] | 108 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 109 | <dependency> |
| 110 | <groupId>org.springframework.boot</groupId> |
| 111 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 112 | </dependency> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame] | 113 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 114 | <!-- Add Log4j2 Dependency --> |
| 115 | <dependency> |
| 116 | <groupId>org.springframework.boot</groupId> |
| 117 | <artifactId>spring-boot-starter-log4j2</artifactId> |
| 118 | </dependency> |
soumendu | 1450782 | 2018-10-22 15:41:29 +0530 | [diff] [blame] | 119 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 120 | <dependency> |
| 121 | <groupId>org.json</groupId> |
| 122 | <artifactId>json</artifactId> |
| 123 | <version>20180130</version> |
| 124 | </dependency> |
| 125 | |
| 126 | <!-- https://mvnrepository.com/artifact/com.fasterxml/jackson-xml-databind --> |
| 127 | <dependency> |
| 128 | <groupId>com.fasterxml</groupId> |
| 129 | <artifactId>jackson-xml-databind</artifactId> |
| 130 | <version>0.6.2</version> |
| 131 | </dependency> |
| 132 | |
| 133 | <dependency> |
| 134 | <groupId>org.webjars</groupId> |
| 135 | <artifactId>bootstrap</artifactId> |
| 136 | <version>3.3.7</version> |
| 137 | </dependency> |
soumendu | 1450782 | 2018-10-22 15:41:29 +0530 | [diff] [blame] | 138 | |
Dan Timoney | f20174d | 2020-08-10 14:09:14 -0400 | [diff] [blame^] | 139 | <dependency> |
| 140 | <groupId>org.webjars</groupId> |
| 141 | <artifactId>bootstrap-datepicker</artifactId> |
| 142 | <version>1.0.1</version> |
| 143 | </dependency> |
| 144 | |
| 145 | <dependency> |
| 146 | <groupId>org.webjars.bower</groupId> |
| 147 | <artifactId>angular-object-diff</artifactId> |
| 148 | <version>1.0.1</version> |
| 149 | </dependency> |
| 150 | |
| 151 | </dependencies> |
| 152 | |
| 153 | <build> |
| 154 | <plugins> |
| 155 | |
| 156 | <plugin> |
| 157 | <groupId>org.springframework.boot</groupId> |
| 158 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 159 | </plugin> |
| 160 | |
| 161 | <plugin> |
| 162 | <groupId>org.apache.maven.plugins</groupId> |
| 163 | <artifactId>maven-surefire-plugin</artifactId> |
| 164 | <version>2.21.0</version> |
| 165 | <configuration> |
| 166 | <argLine>-XX:+StartAttachListener</argLine> |
| 167 | </configuration> |
| 168 | </plugin> |
| 169 | </plugins> |
| 170 | </build> |
Timoney, Dan (dt5972) | fe8d3bc | 2019-01-18 16:51:25 -0500 | [diff] [blame] | 171 | </project> |