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" |
Piotr Jaszczyk | 086e838 | 2019-05-30 13:04:36 +0200 | [diff] [blame] | 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"> |
Zlatko Murgoski | 2cf4d3c | 2018-12-13 12:23:30 +0100 | [diff] [blame] | 5 | |
Piotr Jaszczyk | 086e838 | 2019-05-30 13:04:36 +0200 | [diff] [blame] | 6 | <parent> |
| 7 | <groupId>org.onap.dcaegen2.services.sdk.security</groupId> |
| 8 | <artifactId>dcaegen2-services-sdk-security</artifactId> |
Michal Banka | 4d4190a | 2021-03-30 08:58:15 +0200 | [diff] [blame] | 9 | <version>1.8.2-SNAPSHOT</version> |
Piotr Jaszczyk | 086e838 | 2019-05-30 13:04:36 +0200 | [diff] [blame] | 10 | </parent> |
| 11 | <modelVersion>4.0.0</modelVersion> |
Zlatko Murgoski | 2cf4d3c | 2018-12-13 12:23:30 +0100 | [diff] [blame] | 12 | |
Piotr Jaszczyk | 086e838 | 2019-05-30 13:04:36 +0200 | [diff] [blame] | 13 | <groupId>org.onap.dcaegen2.services.sdk.security.crypt</groupId> |
| 14 | <artifactId>crypt-password</artifactId> |
Zlatko Murgoski | 2cf4d3c | 2018-12-13 12:23:30 +0100 | [diff] [blame] | 15 | |
Piotr Jaszczyk | 086e838 | 2019-05-30 13:04:36 +0200 | [diff] [blame] | 16 | <name>Security :: Crypt Password</name> |
| 17 | <description>DMaaP Security Module</description> |
Pawel | 0ace1a3 | 2020-03-03 12:39:44 +0100 | [diff] [blame] | 18 | <properties> |
| 19 | <maven-jar-plugin.version>3.2.0</maven-jar-plugin.version> |
| 20 | <maven-shade-plugin.version>3.2.1</maven-shade-plugin.version> |
| 21 | </properties> |
Piotr Jaszczyk | 086e838 | 2019-05-30 13:04:36 +0200 | [diff] [blame] | 22 | <packaging>jar</packaging> |
Zlatko Murgoski | 2cf4d3c | 2018-12-13 12:23:30 +0100 | [diff] [blame] | 23 | |
Piotr Jaszczyk | 086e838 | 2019-05-30 13:04:36 +0200 | [diff] [blame] | 24 | <dependencies> |
| 25 | <dependency> |
| 26 | <groupId>org.springframework.security</groupId> |
| 27 | <artifactId>spring-security-crypto</artifactId> |
| 28 | </dependency> |
| 29 | <dependency> |
Piotr Jaszczyk | 086e838 | 2019-05-30 13:04:36 +0200 | [diff] [blame] | 30 | <groupId>org.slf4j</groupId> |
| 31 | <artifactId>jcl-over-slf4j</artifactId> |
| 32 | <scope>runtime</scope> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>ch.qos.logback</groupId> |
| 36 | <artifactId>logback-classic</artifactId> |
| 37 | <scope>runtime</scope> |
| 38 | </dependency> |
Bogumil Zebek | dff6663 | 2021-02-19 08:36:45 +0100 | [diff] [blame] | 39 | <dependency> |
| 40 | <groupId>org.junit.jupiter</groupId> |
| 41 | <artifactId>junit-jupiter-engine</artifactId> |
| 42 | <scope>test</scope> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.assertj</groupId> |
| 46 | <artifactId>assertj-core</artifactId> |
| 47 | <scope>test</scope> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.mockito</groupId> |
| 51 | <artifactId>mockito-core</artifactId> |
| 52 | <scope>test</scope> |
| 53 | </dependency> |
Piotr Jaszczyk | 086e838 | 2019-05-30 13:04:36 +0200 | [diff] [blame] | 54 | </dependencies> |
Zlatko Murgoski | 2cf4d3c | 2018-12-13 12:23:30 +0100 | [diff] [blame] | 55 | |
| 56 | <build> |
| 57 | <plugins> |
Piotr Jaszczyk | 086e838 | 2019-05-30 13:04:36 +0200 | [diff] [blame] | 58 | <plugin> |
| 59 | <groupId>org.apache.maven.plugins</groupId> |
| 60 | <artifactId>maven-shade-plugin</artifactId> |
Pawel | 0ace1a3 | 2020-03-03 12:39:44 +0100 | [diff] [blame] | 61 | <version>${maven-shade-plugin.version}</version> |
Piotr Jaszczyk | 086e838 | 2019-05-30 13:04:36 +0200 | [diff] [blame] | 62 | <executions> |
| 63 | <execution> |
| 64 | <phase>package</phase> |
| 65 | <goals> |
| 66 | <goal>shade</goal> |
| 67 | </goals> |
| 68 | <configuration> |
| 69 | <transformers> |
| 70 | <transformer |
| 71 | implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 72 | <mainClass>org.onap.dcaegen2.services.sdk.security.EncodePassword</mainClass> |
| 73 | </transformer> |
| 74 | </transformers> |
| 75 | </configuration> |
| 76 | </execution> |
| 77 | </executions> |
| 78 | </plugin> |
Pawel | 0ace1a3 | 2020-03-03 12:39:44 +0100 | [diff] [blame] | 79 | <plugin> |
| 80 | <groupId>org.apache.maven.plugins</groupId> |
| 81 | <artifactId>maven-jar-plugin</artifactId> |
| 82 | <version>${maven-jar-plugin.version}</version> |
| 83 | <executions> |
| 84 | <execution> |
| 85 | <id>only-library</id> |
| 86 | <goals><goal>jar</goal></goals> |
| 87 | <configuration> |
| 88 | <classifier>slim</classifier> |
| 89 | </configuration> |
| 90 | </execution> |
| 91 | </executions> |
| 92 | </plugin> |
Zlatko Murgoski | 2cf4d3c | 2018-12-13 12:23:30 +0100 | [diff] [blame] | 93 | </plugins> |
| 94 | </build> |
| 95 | |
Piotr Marcinkiewicz | 4710dd7 | 2020-07-27 16:28:52 +0200 | [diff] [blame] | 96 | </project> |