diff options
author | Jorge Hernandez <jorge.hernandez-herrero@att.com> | 2018-11-29 15:56:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-11-29 15:56:19 +0000 |
commit | fb7c89ebe2e682170b09275a5e531d0a49d70ada (patch) | |
tree | 14390442d2ca40754b8b3d30d553a7796656937d /testsuites | |
parent | 9f637618ce0b5a4c893e2b6973096b52c6e564b7 (diff) | |
parent | ea736d0c60f042d4e6255136da789724ee178193 (diff) |
Merge "Fixing issues in apex documents"
Diffstat (limited to 'testsuites')
3 files changed, 18 insertions, 3 deletions
diff --git a/testsuites/apex-pdp-stability/pom.xml b/testsuites/apex-pdp-stability/pom.xml index 8f3b6687c..5d786bc77 100644 --- a/testsuites/apex-pdp-stability/pom.xml +++ b/testsuites/apex-pdp-stability/pom.xml @@ -18,7 +18,8 @@ ============LICENSE_END========================================================= --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.onap.policy.apex-pdp.testsuites</groupId> @@ -55,4 +56,20 @@ </plugins> </build> + <profiles> + <profile> + <id>apexSite</id> + <activation> + <property> + <name>apexSite</name> + </property> + </activation> + <distributionManagement> + <site> + <id>${project.artifactId}-site</id> + <url>${apex.adsite.prefix}/modules/${project.parent.artifactId}/${project.artifactId}/</url> + </site> + </distributionManagement> + </profile> + </profiles> </project>
\ No newline at end of file diff --git a/testsuites/integration/integration-common/src/main/java/org/onap/policy/apex/testsuites/integration/common/model/java/DefaultTaskLogic.java b/testsuites/integration/integration-common/src/main/java/org/onap/policy/apex/testsuites/integration/common/model/java/DefaultTaskLogic.java index 0dd59ed86..08ad008f4 100644 --- a/testsuites/integration/integration-common/src/main/java/org/onap/policy/apex/testsuites/integration/common/model/java/DefaultTaskLogic.java +++ b/testsuites/integration/integration-common/src/main/java/org/onap/policy/apex/testsuites/integration/common/model/java/DefaultTaskLogic.java @@ -36,7 +36,6 @@ public class DefaultTaskLogic { * * @param executor the executor * @return the event - * @throws ApexException the apex exception */ public boolean getEvent(final TaskExecutionContext executor) { String idString = executor.subject.getId(); diff --git a/testsuites/integration/integration-common/src/main/java/org/onap/policy/apex/testsuites/integration/common/model/java/EvalTaskLogic.java b/testsuites/integration/integration-common/src/main/java/org/onap/policy/apex/testsuites/integration/common/model/java/EvalTaskLogic.java index 29c58f148..8ba4b879f 100644 --- a/testsuites/integration/integration-common/src/main/java/org/onap/policy/apex/testsuites/integration/common/model/java/EvalTaskLogic.java +++ b/testsuites/integration/integration-common/src/main/java/org/onap/policy/apex/testsuites/integration/common/model/java/EvalTaskLogic.java @@ -33,7 +33,6 @@ public class EvalTaskLogic { * * @param executor the executor * @return the event - * @throws ApexException the apex exception */ public boolean getEvent(final TaskExecutionContext executor) { String idString = executor.subject.getId(); |