Logger on neutron model
[neutron.git] / neutron-logger / 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   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>config-parent</artifactId>
7     <version>0.5.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>neutron-logger</artifactId>
13   <version>0.7.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <properties>
16     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
17   </properties>
18   <dependencyManagement>
19     <dependencies>
20       <dependency>
21         <groupId>org.opendaylight.mdsal.model</groupId>
22         <artifactId>mdsal-model-artifacts</artifactId>
23         <version>0.9.0-SNAPSHOT</version>
24         <type>pom</type>
25         <scope>import</scope>
26       </dependency>
27     </dependencies>
28   </dependencyManagement>
29   <dependencies>
30     <dependency>
31       <groupId>org.opendaylight.neutron</groupId>
32       <artifactId>neutron-spi</artifactId>
33       <version>${project.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.neutron</groupId>
37       <artifactId>model</artifactId>
38       <version>${project.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>org.osgi</groupId>
42       <artifactId>org.osgi.core</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.slf4j</groupId>
46       <artifactId>slf4j-api</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>config-api</artifactId>
51       <version>0.5.0-SNAPSHOT</version>
52     </dependency>
53   </dependencies>
54   <build>
55     <plugins>
56       <plugin>
57         <groupId>org.apache.felix</groupId>
58         <artifactId>maven-bundle-plugin</artifactId>
59         <extensions>true</extensions>
60         <configuration>
61           <instructions>
62             <Import-Package>*</Import-Package>
63           </instructions>
64           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
65         </configuration>
66       </plugin>
67     </plugins>
68   </build>
69   <scm>
70     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
71     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
72     <tag>HEAD</tag>
73     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
74   </scm>
75   <distributionManagement>
76     <!-- OpenDayLight Released artifact -->
77     <repository>
78       <id>opendaylight-release</id>
79       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
80     </repository>
81     <!-- OpenDayLight Snapshot artifact -->
82     <snapshotRepository>
83       <id>opendaylight-snapshot</id>
84       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
85     </snapshotRepository>
86     <!-- Site deployment -->
87     <site>
88       <id>opendaylight-site</id>
89       <url>${nexus.site.url}/${project.artifactId}/</url>
90     </site>
91   </distributionManagement>
92
93   <!--
94       Maven Site Configuration
95
96       The following configuration is necessary for maven-site-plugin to
97       correctly identify the correct deployment path for OpenDaylight Maven
98       sites.
99   -->
100   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
101 </project>