Zlatko Murgoski | 2cf4d3c | 2018-12-13 12:23:30 +0100 | [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 | |
| 6 | <parent> |
| 7 | <groupId>org.onap.dcaegen2.services.sdk.security</groupId> |
| 8 | <artifactId>dcaegen2-services-sdk-security</artifactId> |
| 9 | <version>1.0.0-SNAPSHOT</version> |
| 10 | </parent> |
| 11 | <modelVersion>4.0.0</modelVersion> |
| 12 | |
| 13 | <groupId>org.onap.dcaegen2.services.sdk.security.crypt</groupId> |
| 14 | <artifactId>crypt-password</artifactId> |
| 15 | <version>1.0.0-SNAPSHOT</version> |
| 16 | |
| 17 | <name>dcaegen2-services-sdk-security-crypt-password</name> |
| 18 | <description>DMaaP Security Module</description> |
| 19 | <packaging>jar</packaging> |
| 20 | |
| 21 | <dependencies> |
| 22 | <dependency> |
| 23 | <groupId>org.springframework.security</groupId> |
| 24 | <artifactId>spring-security-crypto</artifactId> |
| 25 | <version>3.1.0.RELEASE</version> |
| 26 | </dependency> |
| 27 | </dependencies> |
| 28 | |
| 29 | <build> |
| 30 | <plugins> |
| 31 | <plugin> |
| 32 | <groupId>org.apache.maven.plugins</groupId> |
| 33 | <artifactId>maven-shade-plugin</artifactId> |
| 34 | <version>3.2.1</version> |
| 35 | <executions> |
| 36 | <execution> |
| 37 | <phase>package</phase> |
| 38 | <goals> |
| 39 | <goal>shade</goal> |
| 40 | </goals> |
| 41 | <configuration> |
| 42 | <transformers> |
| 43 | <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 44 | <mainClass>org.onap.dcaegen2.services.sdk.security.DecodePassword</mainClass> |
| 45 | </transformer> |
| 46 | </transformers> |
| 47 | </configuration> |
| 48 | </execution> |
| 49 | </executions> |
| 50 | </plugin> |
| 51 | </plugins> |
| 52 | </build> |
| 53 | |
| 54 | </project> |