summaryrefslogtreecommitdiffstats
path: root/mdsal-resource/pom.xml
blob: 364850f799ae736a8e0e7ceba80e96e256b08102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="UTF-8"?>
<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.ccsdk.parent</groupId>
        <artifactId>odlparent-lite</artifactId>
        <version>1.4.0-SNAPSHOT</version>
        <relativePath/>
    </parent>

    <groupId>org.onap.ccsdk.sli.adaptors</groupId>
    <artifactId>mdsal-resource</artifactId>
    <version>0.6.0-SNAPSHOT</version>
    <packaging>pom</packaging>

    <name>ccsdk-sli-adaptors :: mdsal-resource</name>
    <description>The MD-SAL resource adaptor allows service logic to access persistent data from MD-SAL config and operational trees</description>

    <modules>
        <module>provider</module>
        <module>features</module>
        <module>installer</module>
    </modules>


</project>
span class="s">"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.5.2-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> </project>