Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Timoney, Dan (dt5972) | 6329874 | 2018-03-01 10:59:28 -0500 | [diff] [blame] | 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"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 4 | |
| 5 | <parent> |
Timoney, Dan (dt5972) | 6329874 | 2018-03-01 10:59:28 -0500 | [diff] [blame] | 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>odlparent-lite</artifactId> |
Timoney, Dan (dt5972) | a4c2026 | 2018-06-01 08:08:49 -0400 | [diff] [blame] | 8 | <version>1.0.4</version> |
Timoney, Dan (dt5972) | 6329874 | 2018-03-01 10:59:28 -0500 | [diff] [blame] | 9 | <relativePath /> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 10 | </parent> |
| 11 | |
Dan Timoney | 98ddb13 | 2017-09-01 17:40:45 -0400 | [diff] [blame] | 12 | <groupId>org.onap.sdnc.oam</groupId> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 13 | <artifactId>dgbuilder</artifactId> |
Timoney, Dan (dt5972) | a4c2026 | 2018-06-01 08:08:49 -0400 | [diff] [blame] | 14 | <version>1.3.4-SNAPSHOT</version> |
Timoney, Dan (dt5972) | 6329874 | 2018-03-01 10:59:28 -0500 | [diff] [blame] | 15 | <packaging>pom</packaging> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 16 | |
Timoney, Dan (dt5972) | 6329874 | 2018-03-01 10:59:28 -0500 | [diff] [blame] | 17 | <name>sdnc-oam :: dgbuilder</name> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 18 | <description>Directed Graph Builder</description> |
Timoney, Dan (dt5972) | 6329874 | 2018-03-01 10:59:28 -0500 | [diff] [blame] | 19 | <organization> |
| 20 | <name>ONAP</name> |
| 21 | </organization> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 22 | |
| 23 | <properties> |
| 24 | <application.name>dgbuilder</application.name> |
| 25 | <skip.SWM>true</skip.SWM> |
| 26 | <adm.base>/opt/app/dgbuilder</adm.base> |
Jessica Wagantall | ebaf4ef | 2018-04-04 18:28:31 -0700 | [diff] [blame] | 27 | <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 28 | <build.number>${maven.build.timestamp}</build.number> |
| 29 | <SWM_VERSION>${project.version}-${build.number}</SWM_VERSION> |
| 30 | </properties> |
| 31 | |
| 32 | <dependencies> |
| 33 | <dependency> |
Dan Timoney | 98ddb13 | 2017-09-01 17:40:45 -0400 | [diff] [blame] | 34 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 35 | <artifactId>sli-common</artifactId> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 36 | </dependency> |
Dan Timoney | 3331462 | 2018-02-13 09:42:07 -0500 | [diff] [blame] | 37 | <dependency> |
| 38 | <groupId>org.mariadb.jdbc</groupId> |
| 39 | <artifactId>mariadb-java-client</artifactId> |
| 40 | <version>${mariadb.connector.version}</version> |
| 41 | </dependency> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 42 | <dependency> |
| 43 | <groupId>org.antlr</groupId> |
Timoney, Dan (dt5972) | 6329874 | 2018-03-01 10:59:28 -0500 | [diff] [blame] | 44 | <artifactId>antlr4-runtime</artifactId> |
| 45 | <version>${antlr.version}</version> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.slf4j</groupId> |
| 49 | <artifactId>slf4j-api</artifactId> |
Timoney, Dan (dt5972) | 6329874 | 2018-03-01 10:59:28 -0500 | [diff] [blame] | 50 | <version>${slf4j.version}</version> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.slf4j</groupId> |
| 54 | <artifactId>slf4j-simple</artifactId> |
Timoney, Dan (dt5972) | 6329874 | 2018-03-01 10:59:28 -0500 | [diff] [blame] | 55 | <version>${slf4j.version}</version> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.apache.commons</groupId> |
| 59 | <artifactId>commons-lang3</artifactId> |
Timoney, Dan (dt5972) | 6329874 | 2018-03-01 10:59:28 -0500 | [diff] [blame] | 60 | <version>${commons.lang3.version}</version> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 61 | </dependency> |
| 62 | </dependencies> |
| 63 | |
| 64 | <build> |
| 65 | <plugins> |
| 66 | <plugin> |
| 67 | <artifactId>maven-assembly-plugin</artifactId> |
Guo Ruijing | a5aae99 | 2017-05-07 19:08:00 +0000 | [diff] [blame] | 68 | <version>2.6</version> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 69 | <executions> |
| 70 | <execution> |
| 71 | <id>create-zip</id> |
| 72 | <goals> |
| 73 | <goal>single</goal> |
| 74 | </goals> |
| 75 | <phase>package</phase> |
| 76 | <configuration> |
| 77 | <finalName>${application.name}.${project.version}</finalName> |
| 78 | <attach>true</attach> |
| 79 | <descriptors> |
| 80 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 81 | </descriptors> |
Guo Ruijing | a5aae99 | 2017-05-07 19:08:00 +0000 | [diff] [blame] | 82 | <appendAssemblyId>false</appendAssemblyId> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 83 | </configuration> |
| 84 | </execution> |
| 85 | </executions> |
| 86 | </plugin> |
| 87 | <plugin> |
| 88 | <groupId>org.apache.maven.plugins</groupId> |
| 89 | <artifactId>maven-dependency-plugin</artifactId> |
| 90 | <executions> |
| 91 | <execution> |
| 92 | <id>copy-dependencies</id> |
| 93 | <goals> |
| 94 | <goal>copy-dependencies</goal> |
| 95 | </goals> |
| 96 | <phase>prepare-package</phase> |
| 97 | <configuration> |
| 98 | <transitive>false</transitive> |
| 99 | <outputDirectory>${project.build.directory}/svclogic/lib</outputDirectory> |
| 100 | <overWriteReleases>false</overWriteReleases> |
| 101 | <overWriteSnapshots>true</overWriteSnapshots> |
| 102 | <overWriteIfNewer>true</overWriteIfNewer> |
| 103 | <useRepositoryLayout>false</useRepositoryLayout> |
| 104 | <addParentPoms>false</addParentPoms> |
| 105 | <copyPom>false</copyPom> |
| 106 | <scope>provided</scope> |
| 107 | </configuration> |
| 108 | </execution> |
| 109 | </executions> |
| 110 | </plugin> |
Chinthakayala, Sheshashailavas | 4cc1e4b | 2017-04-07 08:18:56 -0900 | [diff] [blame] | 111 | <plugin> |
| 112 | <groupId>org.apache.maven.plugins</groupId> |
| 113 | <artifactId>maven-antrun-plugin</artifactId> |
| 114 | <executions> |
| 115 | <execution> |
| 116 | <phase>generate-sources</phase> |
| 117 | <configuration> |
Dan Timoney | 9e9f964 | 2017-04-24 14:48:08 -0400 | [diff] [blame] | 118 | <tasks> |
| 119 | <exec executable="${project.basedir}/build_pom_for_yang_compile"> |
| 120 | <arg value="${project.parent.version}"/> |
| 121 | </exec> |
| 122 | </tasks> |
Chinthakayala, Sheshashailavas | 4cc1e4b | 2017-04-07 08:18:56 -0900 | [diff] [blame] | 123 | </configuration> |
| 124 | <goals> |
| 125 | <goal>run</goal> |
| 126 | </goals> |
| 127 | </execution> |
| 128 | </executions> |
| 129 | </plugin> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 130 | </plugins> |
| 131 | </build> |
Dan Timoney | b217558 | 2017-03-31 17:47:19 -0400 | [diff] [blame] | 132 | </project> |