blob: f18341c8ac83ab0b1d25232e898946d87adac51c [file] [log] [blame]
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -09001<?xml version="1.0" encoding="UTF-8"?>
Dan Timoney912f98b2018-02-27 14:10:22 -05002<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">
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -05003 <modelVersion>4.0.0</modelVersion>
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -09004
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -05005 <parent>
6 <groupId>org.onap.ccsdk.distribution</groupId>
7 <artifactId>distribution-root</artifactId>
Dan Timoneyfce16012023-11-09 11:03:22 -05008 <version>1.6.1-SNAPSHOT</version>
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -05009 </parent>
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -090010
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050011 <groupId>org.onap.ccsdk.distribution</groupId>
12 <artifactId>distribution-dgbuilder</artifactId>
13 <packaging>pom</packaging>
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -090014
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050015 <name>ccsdk-distribution :: dgbuilder</name>
16 <description>Directed Graph Builder</description>
17 <organization>
18 <name>ONAP</name>
19 </organization>
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -090020
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050021 <properties>
22 <application.name>dgbuilder</application.name>
23 <skip.SWM>true</skip.SWM>
24 <adm.base>/opt/app/dgbuilder</adm.base>
25 <SWM_VERSION>${project.version}-${build.number}</SWM_VERSION>
26 </properties>
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -090027
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050028 <dependencies>
29 <dependency>
30 <groupId>org.onap.ccsdk.sli.core</groupId>
31 <artifactId>sli-common</artifactId>
Dan Timoney1f4e9032021-01-25 14:47:00 -050032 <version>${ccsdk.sli.version}</version>
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050033 </dependency>
34 <dependency>
35 <groupId>org.mariadb.jdbc</groupId>
36 <artifactId>mariadb-java-client</artifactId>
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050037 </dependency>
38 <dependency>
39 <groupId>org.antlr</groupId>
Dan Timoney1f4e9032021-01-25 14:47:00 -050040 <artifactId>antlr4-runtime</artifactId>
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050041 <type>jar</type>
42 <scope>compile</scope>
43 </dependency>
44 <dependency>
45 <groupId>org.slf4j</groupId>
46 <artifactId>slf4j-api</artifactId>
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050047 </dependency>
48 <dependency>
49 <groupId>org.slf4j</groupId>
50 <artifactId>slf4j-simple</artifactId>
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050051 <scope>compile</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.commons</groupId>
55 <artifactId>commons-lang3</artifactId>
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050056 </dependency>
57 </dependencies>
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -090058
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050059 <build>
60 <plugins>
61 <plugin>
62 <artifactId>maven-assembly-plugin</artifactId>
63 <version>2.6</version>
64 <executions>
65 <execution>
66 <id>create-zip</id>
67 <goals>
68 <goal>single</goal>
69 </goals>
70 <phase>package</phase>
71 <configuration>
72 <finalName>${application.name}.${project.version}</finalName>
73 <attach>true</attach>
74 <descriptors>
75 <descriptor>src/assembly/assemble_zip.xml</descriptor>
76 </descriptors>
77 <appendAssemblyId>false</appendAssemblyId>
78 </configuration>
79 </execution>
80 </executions>
81 </plugin>
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-dependency-plugin</artifactId>
85 <executions>
86 <execution>
87 <id>copy-dependencies</id>
88 <goals>
89 <goal>copy-dependencies</goal>
90 </goals>
91 <phase>prepare-package</phase>
92 <configuration>
93 <transitive>false</transitive>
94 <outputDirectory>${project.build.directory}/svclogic/lib</outputDirectory>
95 <overWriteReleases>false</overWriteReleases>
96 <overWriteSnapshots>true</overWriteSnapshots>
97 <overWriteIfNewer>true</overWriteIfNewer>
98 <useRepositoryLayout>false</useRepositoryLayout>
99 <addParentPoms>false</addParentPoms>
100 <copyPom>false</copyPom>
101 <scope>provided</scope>
102 </configuration>
103 </execution>
104 </executions>
105 </plugin>
106 <plugin>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-antrun-plugin</artifactId>
109 <executions>
110 <execution>
111 <phase>generate-sources</phase>
112 <configuration>
113 <target>
114 <exec executable="${project.basedir}/build_pom_for_yang_compile">
115 <!--<arg value="${odlparent-carbon-sr1-version}"/>-->
116 </exec>
117 </target>
118 </configuration>
119 <goals>
120 <goal>run</goal>
121 </goals>
122 </execution>
123 </executions>
124 </plugin>
125 </plugins>
126 </build>
Chinthakayala, Sheshashailavas (sc2914)d1569972017-08-28 05:25:46 -0900127</project>