blob: 509d40a8d97a721d543ee6f0c47cb2ee87f2d0e9 [file] [log] [blame]
Guobiao Moda703762019-02-22 15:36:27 -08001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <parent>
8 <groupId>org.onap.dcaegen2.services.components</groupId>
9 <artifactId>datalake-handler</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 </parent>
12
Guobiao Mo84066f32019-03-27 16:59:47 -070013 <groupId>org.onap.dcaegen2.services.components.datalake-handler</groupId>
Guobiao Moda703762019-02-22 15:36:27 -080014 <artifactId>admin</artifactId>
15 <packaging>pom</packaging>
Kate Hsuane76f6122020-02-04 10:28:14 +000016 <properties>
17 <swagger.version>2.9.2</swagger.version>
18 <dockerfile-maven.version>1.4.5</dockerfile-maven.version>
19 <docker.image.path>onap/org.onap.dcaegen2.services.datalakeadminui</docker.image.path>
20 </properties>
Guobiao Moda703762019-02-22 15:36:27 -080021 <name>DataLake Admin</name>
Kate Hsuane76f6122020-02-04 10:28:14 +000022 <build>
23 <plugins>
24 <plugin>
25 <groupId>com.spotify</groupId>
26 <artifactId>dockerfile-maven-plugin</artifactId>
27 <version>${dockerfile-maven.version}</version>
28 <configuration>
29 <repository>${onap.nexus.dockerregistry.daily}/${docker.image.path}</repository>
30 <tag>${project.version}</tag>
31 <dockerfile>Dockerfile</dockerfile>
32 </configuration>
33 <dependencies>
34 <dependency>
35 <groupId>javax.activation</groupId>
36 <artifactId>javax.activation-api</artifactId>
37 <version>1.2.0</version>
38 </dependency>
39 </dependencies>
40 </plugin>
41 </plugins>
42 </build>
Guobiao Moda703762019-02-22 15:36:27 -080043</project>