Merge "Log transactions being allocated"
[controller.git] / third-party / ganymed / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <parent>
8         <groupId>org.opendaylight.controller</groupId>
9         <artifactId>commons.thirdparty</artifactId>
10         <version>1.1.1-SNAPSHOT</version>
11         <relativePath>../commons/thirdparty</relativePath>
12     </parent>
13
14     <groupId>org.opendaylight.controller.thirdparty</groupId>
15     <artifactId>ganymed</artifactId>
16     <version>1.0-SNAPSHOT</version>
17     <packaging>bundle</packaging>
18
19     <properties>
20         <ganymed.version>build209</ganymed.version>
21     </properties>
22
23     <dependencies>
24         <dependency>
25             <groupId>org.osgi</groupId>
26             <artifactId>org.osgi.core</artifactId>
27             <version>5.0.0</version>
28         </dependency>
29         <dependency>
30             <groupId>ch.ethz.ganymed</groupId>
31             <artifactId>ganymed-ssh2</artifactId>
32             <version>261</version>
33         </dependency>
34     </dependencies>
35
36     <build>
37         <plugins>
38             <plugin>
39                 <groupId>org.apache.felix</groupId>
40                 <artifactId>maven-bundle-plugin</artifactId>
41                 <extensions>true</extensions>
42                 <configuration>
43                     <instructions>
44                         <Export-Package>ch.ethz.ssh2.*</Export-Package>
45                         <Embed-Dependency>ganymed-ssh2;scope=compile</Embed-Dependency>
46                         <Embed-Transitive>true</Embed-Transitive>
47                     </instructions>
48                 </configuration>
49             </plugin>
50             <plugin>
51                 <groupId>org.apache.maven.plugins</groupId>
52                 <artifactId>maven-enforcer-plugin</artifactId>
53                 <version>${enforcer.version}</version>
54                 <executions>
55                     <execution>
56                         <id>enforce-no-snapshots</id>
57                         <goals>
58                             <goal>enforce</goal>
59                         </goals>
60                         <configuration>
61                             <rules>
62                                 <bannedDependencies>
63                                     <excludes>
64                                         <exclude>ch.ethz.ganymed:ganymed-ssh2:*</exclude>
65                                     </excludes>
66                                     <includes>
67                                         <include>ch.ethz.ganymed:ganymed-ssh2:[261]</include>
68                                     </includes>
69                                 </bannedDependencies>
70                             </rules>
71                         </configuration>
72                     </execution>
73                 </executions>
74             </plugin>
75         </plugins>
76     </build>
77 </project>
78
79