Add stndDefinedNamespace field to CommonEventHeader
[dcaegen2/services/sdk.git] / security / crypt-password / pom.xml
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.8.2-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
16     <name>Security :: Crypt Password</name>
17     <description>DMaaP Security Module</description>
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>
22     <packaging>jar</packaging>
23
24     <dependencies>
25         <dependency>
26             <groupId>org.springframework.security</groupId>
27             <artifactId>spring-security-crypto</artifactId>
28         </dependency>
29         <dependency>
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>
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>
54     </dependencies>
55
56     <build>
57         <plugins>
58             <plugin>
59                 <groupId>org.apache.maven.plugins</groupId>
60                 <artifactId>maven-shade-plugin</artifactId>
61                 <version>${maven-shade-plugin.version}</version>
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>
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>
93         </plugins>
94     </build>
95
96 </project>