Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / service / resource-encapsulation / src / resourceContainer / examples / HueJavaSampleBundle / hue / 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/maven-v4_0_0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <groupId>org.iotivity.bundles</groupId>
5   <artifactId>hue</artifactId>
6   <packaging>jar</packaging>
7   <version>0.1</version>
8   <name>hue</name>
9   <url>http://maven.apache.org</url>
10   <dependencies>
11     <dependency>
12       <groupId>junit</groupId>
13       <artifactId>junit</artifactId>
14       <version>3.8.1</version>
15       <scope>test</scope>
16     </dependency>
17     <dependency>
18                 <groupId>org.apache.httpcomponents</groupId>
19                 <artifactId>httpclient</artifactId>
20                 <version>4.5</version>
21                 <scope>compile</scope>
22     </dependency>
23     <dependency>
24                 <groupId>org.iotivity.resourcecontainer</groupId>
25                 <artifactId>bundle-api</artifactId>
26                 <version>0.1</version>
27                 <scope>compile</scope>
28     </dependency>
29     <dependency>
30       <groupId>org.apache.maven.plugins</groupId>
31       <artifactId>maven-shade-plugin</artifactId>
32       <version>2.4</version>
33       <type>maven-plugin</type>
34     </dependency>
35   </dependencies>
36   <build>
37         <pluginManagement>
38         <plugins>
39                 <plugin>
40                         <groupId>org.apache.maven.plugins</groupId>
41                         <artifactId>maven-assmembly-plugin</artifactId>
42                         <version>2.5.5</version>
43                 </plugin>
44         </plugins>            
45       </pluginManagement>
46      <plugins>      
47       <plugin>
48         <groupId>org.apache.maven.plugins</groupId>
49         <artifactId>maven-compiler-plugin</artifactId>
50         <version>3.3</version>
51         <configuration>
52           <source>1.6</source>
53           <target>1.6</target>
54         </configuration>
55       </plugin>
56     
57       <plugin>
58         <groupId>org.apache.maven.plugins</groupId>
59         <artifactId>maven-assembly-plugin</artifactId>
60         <version>2.5.5</version>  
61         <configuration>
62                 <descriptorRefs>
63                         <descriptorRef>jar-with-dependencies</descriptorRef>
64                 </descriptorRefs>
65         </configuration>      
66       </plugin> 
67     </plugins>
68   </build>
69   <repositories>
70         <repository>
71                 <id>repo1</id>
72                 <name>Repo1</name>
73                 <url>http://repo1.maven.rog</url>               
74         </repository>
75   </repositories>
76 </project>