aboutsummaryrefslogtreecommitdiffstats
path: root/services/services-engine/src/test/resources/parameters/serviceContextBadPluginNameParams.json
blob: d152809fa3e8947edf70fcff303a73d8f3832239 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
    "engineServiceParameters": {
        "name": "MyApexEngine",
        "version": "0.0.1",
        "id": 45,
        "instanceCount": 345,
        "deploymentPort": 65522,
        "policyModelFileName": "src/test/resources/policymodels/SamplePolicyModelMVEL.json",
        "engineParameters": {
            "contextParameters": {
                "parameterClassNamelooby": ""
            }
        }
    }
}
M/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.tools</groupId> <artifactId>tools</artifactId> <version>2.0.3-SNAPSHOT</version> </parent> <artifactId>simple-wsclient</artifactId> <name>${project.artifactId}</name> <description>[${project.parent.artifactId}] Simple Websocket client (console and echo)</description> <dependencies> <dependency> <groupId>org.java-websocket</groupId> <artifactId>Java-WebSocket</artifactId> </dependency> <dependency> <groupId>org.onap.policy.apex-pdp.tools</groupId> <artifactId>tools-common</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>console-client</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>org.onap.policy.apex.tools.simple.wsclient.WsClient</mainClass> </manifest> </archive> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>apexSite</id> <activation> <property> <name>apexSite</name> </property> </activation> <properties> <adsite-tools-wsclients-dir>${project.basedir}/src</adsite-tools-wsclients-dir> </properties> <distributionManagement> <site> <id>${project.artifactId}-site</id> <url>${apex.adsite.prefix}/modules/${project.parent.artifactId}/${project.artifactId}/</url> </site> </distributionManagement> </profile> </profiles> </project>