diff options
author | sebdet <sebastien.determe@intl.att.com> | 2021-02-08 14:36:11 +0100 |
---|---|---|
committer | S�bastien Determe <sebastien.determe@intl.att.com> | 2021-02-08 14:16:45 +0000 |
commit | d2178bc9f7d6c06f60a3a8afecd83e428d84cd78 (patch) | |
tree | c919ea6a0b3d974347e67cd5ef9ebc76b5568fc8 /pom.xml | |
parent | 76a0b386bcf5f30533c85f6d26c559bea19ce0fb (diff) |
Remove test usage of the AAF certificate
Fix the broken build by removing the need of the useless certificate, a new one is now generate during the build for the tests.
Issue-ID: POLICY-3036
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Change-Id: I11c2ff5aac8a99c7a2b7e676d6c11bbc861a1de4
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 40 |
1 files changed, 40 insertions, 0 deletions
@@ -1266,6 +1266,46 @@ </arguments> </configuration> </plugin> + <!-- Plugin to generate a X509 Certificate for https tests --> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>keytool-maven-plugin</artifactId> + <version>1.5</version> + <executions> + <execution> + <id>add-certificate-for-dev</id> + <configuration> + <keystore>${project.build.directory}/classes/clds/aaf/org.onap.clamp.p12</keystore> + <storepass>China in the Spring</storepass> + <alias>clamptest</alias> + <storetype>PKCS12</storetype> + <keyalg>RSA</keyalg> + <dname>cn=CN, ou=OU, o=O, c=C</dname> + <validity>365</validity> + </configuration> + <goals> + <goal>generateKeyPair</goal> + </goals> + <phase>generate-resources</phase> + </execution> + <execution> + <id>add-certificate-for-test</id> + <configuration> + <keystore>${project.build.directory}/test-classes/clds/aaf/org.onap.clamp.p12</keystore> + <storepass>China in the Spring</storepass> + <alias>clamptest</alias> + <storetype>PKCS12</storetype> + <keyalg>RSA</keyalg> + <dname>cn=CN, ou=OU, o=O, c=C</dname> + <validity>365</validity> + </configuration> + <goals> + <goal>generateKeyPair</goal> + </goals> + <phase>generate-test-resources</phase> + </execution> + </executions> + </plugin> </plugins> </build> </project> |