Patrick Brady | 8351425 | 2017-02-13 11:57:08 -0800 | [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" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | |
| 5 | <parent> |
| 6 | <groupId>org.openecomp.appc.deployment</groupId> |
| 7 | <artifactId>platform-logic</artifactId> |
Patrick Brady | ea8c76c | 2017-11-09 11:53:06 -0800 | [diff] [blame^] | 8 | <version>1.2.0-SNAPSHOT</version> |
Patrick Brady | 8351425 | 2017-02-13 11:57:08 -0800 | [diff] [blame] | 9 | </parent> |
| 10 | |
| 11 | <modelVersion>4.0.0</modelVersion> |
| 12 | <packaging>pom</packaging> |
| 13 | <groupId>org.openecomp.appc.deployment</groupId> |
| 14 | <artifactId>platform-logic-installer</artifactId> |
Patrick Brady | ea8c76c | 2017-11-09 11:53:06 -0800 | [diff] [blame^] | 15 | <version>1.2.0-SNAPSHOT</version> |
Patrick Brady | 8351425 | 2017-02-13 11:57:08 -0800 | [diff] [blame] | 16 | |
| 17 | <name>Platform Logic Installer for APP-C</name> |
| 18 | <description>Contains platform-level service logic installer for APP-C</description> |
| 19 | |
| 20 | <build> |
| 21 | <plugins> |
| 22 | <plugin> |
| 23 | <artifactId>maven-resources-plugin</artifactId> |
| 24 | <version>2.6</version> |
| 25 | <executions> |
| 26 | <execution> |
| 27 | <id>copy-version</id> |
| 28 | <goals> |
| 29 | <goal>copy-resources</goal> |
| 30 | </goals><!-- here the phase you need --> |
| 31 | <phase>validate</phase> |
| 32 | <configuration> |
| 33 | <outputDirectory>target/resources</outputDirectory> |
| 34 | <resources> |
| 35 | <resource> |
| 36 | <directory>src/main/resources</directory> |
| 37 | <includes> |
| 38 | <include>*</include> |
| 39 | </includes> |
| 40 | <filtering>true</filtering> |
| 41 | </resource> |
| 42 | </resources> |
| 43 | </configuration> |
| 44 | </execution> |
| 45 | </executions> |
| 46 | </plugin> |
| 47 | <plugin> |
| 48 | <artifactId>maven-assembly-plugin</artifactId> |
Guo Ruijing | 1f74ea2 | 2017-05-07 21:14:31 +0000 | [diff] [blame] | 49 | <version>2.6</version> |
Patrick Brady | 8351425 | 2017-02-13 11:57:08 -0800 | [diff] [blame] | 50 | <executions> |
| 51 | <execution> |
| 52 | <id>create-zip</id> |
| 53 | <goals> |
| 54 | <goal>single</goal> |
| 55 | </goals> |
| 56 | <phase>package</phase> |
| 57 | <configuration> |
| 58 | <attach>true</attach> |
| 59 | <descriptors> |
| 60 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 61 | </descriptors> |
Guo Ruijing | 1f74ea2 | 2017-05-07 21:14:31 +0000 | [diff] [blame] | 62 | <appendAssemblyId>false</appendAssemblyId> |
Patrick Brady | 8351425 | 2017-02-13 11:57:08 -0800 | [diff] [blame] | 63 | </configuration> |
| 64 | </execution> |
| 65 | |
| 66 | </executions> |
| 67 | </plugin> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.maven.plugins</groupId> |
| 70 | <artifactId>maven-dependency-plugin</artifactId> |
| 71 | <executions> |
| 72 | <execution> |
| 73 | <id>copy-dependencies</id> |
| 74 | <goals> |
| 75 | <goal>copy-dependencies</goal> |
| 76 | </goals> |
| 77 | <phase>prepare-package</phase> |
| 78 | <configuration> |
| 79 | <transitive>false</transitive> |
| 80 | <outputDirectory>${project.build.directory}/lib</outputDirectory> |
| 81 | <overWriteReleases>false</overWriteReleases> |
| 82 | <overWriteSnapshots>true</overWriteSnapshots> |
| 83 | <overWriteIfNewer>true</overWriteIfNewer> |
| 84 | <useRepositoryLayout>false</useRepositoryLayout> |
| 85 | <addParentPoms>false</addParentPoms> |
| 86 | <copyPom>false</copyPom> |
| 87 | <scope>provided</scope> |
| 88 | </configuration> |
| 89 | </execution> |
| 90 | </executions> |
| 91 | </plugin> |
| 92 | </plugins> |
| 93 | |
| 94 | </build> |
| 95 | <dependencies> |
| 96 | <dependency> |
| 97 | <groupId>org.slf4j</groupId> |
| 98 | <artifactId>slf4j-api</artifactId> |
| 99 | <version>${slf4j.version}</version> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>org.slf4j</groupId> |
| 103 | <artifactId>slf4j-simple</artifactId> |
| 104 | <version>1.7.5</version> |
| 105 | <scope>compile</scope> |
| 106 | </dependency> |
| 107 | <dependency> |
Patrick Brady | d63f449 | 2017-09-29 10:13:07 -0700 | [diff] [blame] | 108 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | 8351425 | 2017-02-13 11:57:08 -0800 | [diff] [blame] | 109 | <artifactId>sli-common</artifactId> |
Patrick Brady | d63f449 | 2017-09-29 10:13:07 -0700 | [diff] [blame] | 110 | <version>${ccsdk.sli.core.version}</version> |
Patrick Brady | 8351425 | 2017-02-13 11:57:08 -0800 | [diff] [blame] | 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>org.antlr</groupId> |
| 114 | <artifactId>antlr4</artifactId> |
| 115 | <version>${antlr.version}</version> |
| 116 | <type>jar</type> |
| 117 | <scope>compile</scope> |
| 118 | </dependency> |
| 119 | <dependency> |
Patrick Brady | 5cf9dc3 | 2017-09-29 12:29:18 -0700 | [diff] [blame] | 120 | <groupId>org.mariadb.jdbc</groupId> |
| 121 | <artifactId>mariadb-java-client</artifactId> |
| 122 | <version>${mariadb.connector.version}</version> |
Patrick Brady | 8351425 | 2017-02-13 11:57:08 -0800 | [diff] [blame] | 123 | <type>jar</type> |
| 124 | <scope>compile</scope> |
| 125 | </dependency> |
| 126 | </dependencies> |
| 127 | |
| 128 | </project> |