BUG-981: RuntimeGeneratedMappingServiceImpl thread safety
[yangtools.git] / code-generator / binding-generator-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.yangtools</groupId>
14         <artifactId>binding-generator</artifactId>
15         <version>0.6.2-SNAPSHOT</version>
16     </parent>
17
18     <modelVersion>4.0.0</modelVersion>
19     <artifactId>binding-generator-impl</artifactId>
20
21     <dependencies>
22         <dependency>
23             <groupId>org.javassist</groupId>
24             <artifactId>javassist</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.yangtools</groupId>
28             <artifactId>binding-generator-util</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.yangtools</groupId>
32             <artifactId>yang-parser-impl</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.yangtools</groupId>
36             <artifactId>yang-data-impl</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.yangtools</groupId>
40             <artifactId>binding-generator-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>binding-generator-spi</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>binding-type-provider</artifactId>
49             <version>${project.version}</version>
50         </dependency>
51         <dependency>
52             <groupId>com.google.code.findbugs</groupId>
53             <artifactId>jsr305</artifactId>
54             <scope>provided</scope>
55         </dependency>
56
57         <dependency>
58             <groupId>junit</groupId>
59             <artifactId>junit</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.apache.commons</groupId>
63             <artifactId>commons-lang3</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>com.google.guava</groupId>
67             <artifactId>guava</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.eclipse.xtend</groupId>
71             <artifactId>org.eclipse.xtend.lib</artifactId>
72         </dependency>
73     </dependencies>
74
75     <build>
76         <plugins>
77             <plugin>
78                 <artifactId>maven-jar-plugin</artifactId>
79             </plugin>
80             <plugin>
81                 <groupId>org.apache.felix</groupId>
82                 <artifactId>maven-bundle-plugin</artifactId>
83                 <extensions>true</extensions>
84                 <configuration>
85                     <instructions>
86                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
87                         <Export-Package>
88                             org.opendaylight.yangtools.sal.binding.generator.impl.*,
89                             org.opendaylight.yangtools.sal.binding.generator.util.*
90                         </Export-Package>
91                     </instructions>
92                 </configuration>
93             </plugin>
94             <plugin>
95                 <groupId>org.eclipse.xtend</groupId>
96                 <artifactId>xtend-maven-plugin</artifactId>
97                 <executions>
98                     <execution>
99                         <goals>
100                             <goal>compile</goal>
101                         </goals>
102                         <configuration>
103                             <outputDirectory>${basedir}/src/main/xtend-gen</outputDirectory>
104                         </configuration>
105                     </execution>
106                 </executions>
107             </plugin>
108             <plugin>
109                 <artifactId>maven-clean-plugin</artifactId>
110                 <configuration>
111                     <filesets>
112                         <fileset>
113                             <directory>${basedir}/src/main/xtend-gen</directory>
114                             <includes>
115                                 <include>**</include>
116                             </includes>
117                         </fileset>
118                     </filesets>
119                 </configuration>
120             </plugin>
121         </plugins>
122     </build>
123
124 </project>