Gautam Shah | 719e3bb | 2018-06-05 18:50:13 +0530 | [diff] [blame] | 1 | <?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 | <artifactId>snapshot-signature-plugin</artifactId> |
| 8 | <packaging>maven-plugin</packaging> |
| 9 | <parent> |
| 10 | <artifactId>sdc-onboarding</artifactId> |
| 11 | <groupId>org.openecomp.sdc</groupId> |
| 12 | <version>1.3.0-SNAPSHOT</version> |
| 13 | <relativePath>../../../onboarding</relativePath> |
| 14 | </parent> |
| 15 | |
| 16 | <dependencies> |
| 17 | <dependency> |
| 18 | <groupId>org.apache.maven</groupId> |
| 19 | <artifactId>maven-core</artifactId> |
| 20 | <version>${maven-core.version}</version> |
| 21 | </dependency> |
| 22 | <dependency> |
| 23 | <groupId>org.apache.maven.plugin-tools</groupId> |
| 24 | <artifactId>maven-plugin-annotations</artifactId> |
| 25 | <version>${maven-plugin-annotations.version}</version> |
| 26 | </dependency> |
| 27 | </dependencies> |
| 28 | |
| 29 | <build> |
| 30 | <plugins> |
| 31 | <plugin> |
| 32 | <groupId>org.apache.maven.plugins</groupId> |
| 33 | <artifactId>maven-plugin-plugin</artifactId> |
| 34 | <version>${maven-plugin-plugin.version}</version> |
| 35 | </plugin> |
| 36 | </plugins> |
| 37 | </build> |
| 38 | |
| 39 | |
| 40 | </project> |