aboutsummaryrefslogtreecommitdiffstats
path: root/appc-dispatcher/appc-command-executor/appc-command-executor-api/pom.xml
blob: 7e6f01b321e49b68cb075296f2e97ca998e51b42 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<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.openecomp.appc</groupId>
	    <artifactId>appc-command-executor</artifactId>
	    <version>1.1.0-SNAPSHOT</version>
	  </parent>
  <artifactId>appc-command-executor-api</artifactId>
  <packaging>bundle</packaging>

  <name>appc-command-executor-api</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.openecomp.appc</groupId>
      <artifactId>execution-queue-management-lib</artifactId>
      <version>${project.version}</version>
    </dependency>
      <dependency>
          <groupId>org.openecomp.appc</groupId>
      <artifactId>domain-model-lib</artifactId>
      <version>${project.version}</version>
    </dependency>
      <dependency>
          <groupId>org.openecomp.appc</groupId>
          <artifactId>appc-common</artifactId>
          <version>${project.version}</version>
          <scope>compile</scope>
      </dependency>
      <!--<dependency>-->
          <!--<groupId>org.apache.commons</groupId>-->
          <!--<artifactId>commons-lang3</artifactId>-->
          <!--<version>3.4</version>-->
          <!--<scope>provided</scope>-->
      <!--</dependency>-->
  </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                        <Bundle-Version>${project.version}</Bundle-Version>
                        <Export-Package>org.openecomp.appc.executor,org.openecomp.appc.executor.objects,org.openecomp.appc.executor.conv,org.openecomp.appc.executor.helper</Export-Package>
                        <Embed-Dependency>
                            javax.json;scope=compile|runtime;inline=false
                        </Embed-Dependency>
                        <Embed-Transitive>true</Embed-Transitive>
                        <Import-Package>
                            *;resolution:=optional
                        </Import-Package>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>