Bug 1003: Restconf - remove whitespace on input
[controller.git] / opendaylight / md-sal / sal-dom-it / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     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>sal-parent</artifactId>
7         <version>1.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>sal-dom-it</artifactId>
10     <scm>
11         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
14     </scm>
15
16     <dependencies>
17         <dependency>
18             <groupId>org.opendaylight.controller</groupId>
19             <artifactId>sal-broker-impl</artifactId>
20             <version>1.0-SNAPSHOT</version>
21         </dependency>
22         <dependency>
23             <groupId>org.opendaylight.controller</groupId>
24             <artifactId>yang-data-util</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.mockito</groupId>
28             <artifactId>mockito-all</artifactId>
29             <version>1.9.5</version>
30             <scope>test</scope>
31         </dependency>
32         <dependency>
33             <groupId>org.slf4j</groupId>
34             <artifactId>slf4j-simple</artifactId>
35             <version>1.7.2</version>
36             <scope>runtime</scope>
37         </dependency>
38     </dependencies>
39     <build>
40         <plugins>
41             <plugin>
42                 <artifactId>maven-assembly-plugin</artifactId>
43                 <version>2.4</version>
44                 <configuration>
45                     <descriptorRefs>
46                         <descriptorRef>jar-with-dependencies</descriptorRef>
47                     </descriptorRefs>
48                     <archive>
49                         <manifest>
50                             <mainClass>org.opendaylight.controller.sal.demo.SALDemo</mainClass>
51                         </manifest>
52                     </archive>
53                 </configuration>
54                 <executions>
55                     <execution>
56                         <id>make-assembly</id>
57                         <phase>package</phase>
58                         <goals>
59                             <goal>single</goal>
60                         </goals>
61                     </execution>
62                 </executions>
63             </plugin>
64         </plugins>
65     </build>
66 </project>