Do not pull in javax.inject into runtime
[genius.git] / cloudscaler / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3
4   <parent>
5     <groupId>org.opendaylight.genius</groupId>
6     <artifactId>binding-parent</artifactId>
7     <version>0.9.0-SNAPSHOT</version>
8     <relativePath>../../commons/binding-parent</relativePath>
9   </parent>
10
11   <modelVersion>4.0.0</modelVersion>
12   <artifactId>cloudscaler-impl</artifactId>
13   <version>0.9.0-SNAPSHOT</version>
14   <name>ODL :: genius :: ${project.artifactId}</name>
15   <packaging>bundle</packaging>
16   <dependencies>
17     <dependency>
18       <groupId>org.opendaylight.genius</groupId>
19       <artifactId>cloudscaler-api</artifactId>
20       <version>0.9.0-SNAPSHOT</version>
21     </dependency>
22       <dependency>
23           <groupId>org.opendaylight.genius</groupId>
24           <artifactId>idmanager-api</artifactId>
25       </dependency>
26     <dependency>
27       <groupId>org.opendaylight.genius</groupId>
28       <artifactId>idmanager-impl</artifactId>
29       <version>${project.version}</version>
30       <scope>test</scope>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.genius</groupId>
34       <artifactId>arputil-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.genius</groupId>
38       <artifactId>itm-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.genius</groupId>
42       <artifactId>interfacemanager-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.openflowplugin.model</groupId>
46       <artifactId>model-flow-service</artifactId>
47     </dependency>
48     <dependency>
49         <groupId>commons-net</groupId>
50         <artifactId>commons-net</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.powermock</groupId>
54       <artifactId>powermock-api-mockito2</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.awaitility</groupId>
58       <artifactId>awaitility</artifactId>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.genius</groupId>
63       <artifactId>testutils</artifactId>
64       <version>${project.version}</version>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.genius</groupId>
69       <artifactId>mdsalutil-testutils</artifactId>
70       <version>${project.version}</version>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.infrautils</groupId>
75       <artifactId>caches-test</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.powermock</groupId>
79       <artifactId>powermock-module-junit4</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.powermock</groupId>
83       <artifactId>powermock-core</artifactId>
84     </dependency>
85     <!--<dependency>
86       <groupId>org.opendaylight.infrautils</groupId>
87       <artifactId>counters-api</artifactId>
88     </dependency> -->
89     <dependency>
90       <groupId>javax.inject</groupId>
91       <artifactId>javax.inject</artifactId>
92       <scope>provided</scope>
93       <optional>true</optional>
94     </dependency>
95     <dependency>
96       <groupId>javax.annotation</groupId>
97       <artifactId>javax.annotation-api</artifactId>
98       <optional>true</optional>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.infrautils</groupId>
102       <artifactId>caches-api</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.yangtools</groupId>
106       <artifactId>testutils</artifactId>
107       <scope>test</scope>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.genius</groupId>
111       <artifactId>mdsalutil-api</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.genius</groupId>
115       <artifactId>mdsalutil-impl</artifactId>
116       <version>${project.version}</version>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>org.opendaylight.mdsal</groupId>
121       <artifactId>mdsal-binding-test-utils</artifactId>
122       <scope>test</scope>
123     </dependency>
124     <dependency>
125       <groupId>org.opendaylight.genius</groupId>
126       <artifactId>lockmanager-impl</artifactId>
127       <version>${project.version}</version>
128       <scope>test</scope>
129     </dependency>
130     <dependency>
131       <groupId>org.opendaylight.openflowplugin</groupId>
132       <artifactId>openflowplugin-extension-nicira</artifactId>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.openflowplugin.model</groupId>
136       <artifactId>model-flow-base</artifactId>
137     </dependency>
138
139   </dependencies>
140
141   <build>
142     <plugins>
143       <plugin>
144         <groupId>org.apache.felix</groupId>
145         <artifactId>maven-bundle-plugin</artifactId>
146         <extensions>true</extensions>
147         <configuration>
148           <instructions>
149             <!-- We purposely don't export any packages to avoid any dependencies
150                  on this bundle and prevent @Singleton annotated classes from being
151                  accidently included in another bundle's blueprint XML  -->
152             <Export-Package />
153           </instructions>
154         </configuration>
155       </plugin>
156       <plugin>
157         <groupId>org.apache.aries.blueprint</groupId>
158         <artifactId>blueprint-maven-plugin</artifactId>
159       </plugin>
160       <plugin>
161         <groupId>org.eclipse.xtend</groupId>
162         <artifactId>xtend-maven-plugin</artifactId>
163       </plugin>
164     </plugins>
165   </build>
166 </project>