a8a11aff2fbd2ab2267595b44928f195db5cf8a1
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / helpServer / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project 
3         xmlns="http://maven.apache.org/POM/4.0.0" 
4         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">
5         <modelVersion>4.0.0</modelVersion>
6         <groupId>com.highstreet.technologies.helpserver</groupId>
7         <artifactId>helpserver-impl</artifactId>
8         <packaging>bundle</packaging>
9         <parent>
10                 <groupId>org.opendaylight.mwtn</groupId>
11                 <artifactId>config-parent</artifactId>
12                 <version>0.5.1-SNAPSHOT</version>
13                 <relativePath>../../commons/config-parent</relativePath>
14         </parent>
15         <dependencies>
16                 <dependency>
17                         <groupId>javax.servlet</groupId>
18                         <artifactId>servlet-api</artifactId>
19                         <version>2.5</version>
20                 </dependency>
21                 <dependency>
22                         <groupId>org.json</groupId>
23                         <artifactId>json</artifactId>
24                 </dependency>
25         </dependencies>
26         <build>
27                 <plugins>
28                         <plugin>
29                                 <groupId>com.google.code.maven-replacer-plugin</groupId>
30                                 <artifactId>replacer</artifactId>
31                                 <version>1.5.3</version>
32                                 <executions>
33                                         <execution>
34                                                 <phase>test</phase>
35                                                 <goals>
36                                                         <goal>replace</goal>
37                                                 </goals>
38                                         </execution>
39                                 </executions>
40                                 <configuration>
41                                         <basedir>${project.basedir}/src/main/resources</basedir>
42                                         <includes>
43                                                 <include>**/*.md</include>
44                                         </includes>
45                                         <replacements>
46                                                 <replacement>
47                                                         <token>@distversion@</token>
48                                                         <value>${distversion}</value>
49                                                 </replacement>
50                                                 <replacement>
51                                                         <token>@buildtime@</token>
52                                                         <value>${buildtime}</value>
53                                                 </replacement>
54                                         </replacements>
55                                 </configuration>
56                         </plugin>
57                 </plugins>
58         </build>
59 </project>