Correcting the INPUT in Doxygen file.
[platform/upstream/iotivity.git] / service / resource-encapsulation / src / resourceContainer / bundle-java-api / 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.resourcecontainer</groupId>
5   <artifactId>bundle-api</artifactId>
6   <packaging>jar</packaging>
7   <version>0.1</version>
8   <name>resource-container-api</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.maven.plugins</groupId>
19       <artifactId>maven-shade-plugin</artifactId>
20       <version>2.4</version>
21       <type>maven-plugin</type>
22     </dependency>
23   </dependencies>
24   <build>
25         <pluginManagement>
26         <plugins>
27                 <plugin>
28                         <groupId>org.apache.maven.plugins</groupId>
29                         <artifactId>maven-assmembly-plugin</artifactId>
30                         <version>2.5.5</version>
31                 </plugin>
32         </plugins>            
33       </pluginManagement>
34      <plugins>      
35       <plugin>
36         <groupId>org.apache.maven.plugins</groupId>
37         <artifactId>maven-compiler-plugin</artifactId>
38         <version>3.3</version>
39         <configuration>
40           <source>1.6</source>
41           <target>1.6</target>
42         </configuration>
43       </plugin>
44     
45       <plugin>
46         <groupId>org.apache.maven.plugins</groupId>
47         <artifactId>maven-assembly-plugin</artifactId>
48         <version>2.5.5</version>  
49         <configuration>
50                 <descriptorRefs>
51                         <descriptorRef>jar-with-dependencies</descriptorRef>
52                 </descriptorRefs>
53         </configuration>      
54       </plugin> 
55     </plugins>
56   </build>
57   <repositories>
58         <repository>
59                 <id>repo1</id>
60                 <name>Repo1</name>
61                 <url>http://repo1.maven.rog</url>               
62         </repository>
63   </repositories>
64 </project>