Release odlparent
[odlparent.git] / license / pom.xml
1 <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/maven-v4_0_0.xsd">
2   <modelVersion>4.0.0</modelVersion>
3
4   <parent>
5     <groupId>org.opendaylight.odlparent</groupId>
6     <artifactId>odlparent-lite</artifactId>
7     <version>13.0.9</version>
8     <relativePath>../odlparent-lite</relativePath>
9   </parent>
10
11   <artifactId>odl-license</artifactId>
12   <name>ODL :: odlparent :: ${project.artifactId}</name>
13   <packaging>pom</packaging>
14
15   <build>
16     <plugins>
17       <plugin>
18         <groupId>org.codehaus.mojo</groupId>
19         <artifactId>build-helper-maven-plugin</artifactId>
20         <executions>
21           <execution>
22             <id>attach-artifacts</id>
23             <phase>package</phase>
24             <goals>
25               <goal>attach-artifact</goal>
26             </goals>
27             <configuration>
28               <artifacts>
29                 <artifact>
30                   <file>src/main/resources/LICENSE</file>
31                   <type>license</type>
32                 </artifact>
33               </artifacts>
34             </configuration>
35           </execution>
36         </executions>
37       </plugin>
38     </plugins>
39   </build>
40 </project>
41