|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + |
5 | 6 | <modelVersion>4.0.0</modelVersion> |
6 | 7 |
|
7 | 8 | <groupId>org.xbib.elasticsearch.plugin</groupId> |
8 | 9 | <artifactId>elasticsearch-knapsack</artifactId> |
9 | 10 | <version>2.1.3</version> |
| 11 | + |
10 | 12 | <packaging>jar</packaging> |
11 | 13 |
|
12 | 14 | <name>elasticsearch-knapsack</name> |
13 | 15 | <description> |
14 | 16 | Knapsack is a simple backup/restore tool for Elasticsearch |
15 | 17 | </description> |
16 | 18 |
|
| 19 | + <url>http://github.com/jprante/elasticsearch-knapsack</url> |
| 20 | + |
17 | 21 | <inceptionYear>2012</inceptionYear> |
18 | 22 |
|
19 | 23 | <licenses> |
|
39 | 43 | </distributionManagement> |
40 | 44 |
|
41 | 45 | <properties> |
| 46 | + <github.global.server>github</github.global.server> |
42 | 47 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
43 | 48 | <elasticsearch.version>0.90.5</elasticsearch.version> |
44 | 49 | </properties> |
|
64 | 69 | <dependency> |
65 | 70 | <groupId>org.testng</groupId> |
66 | 71 | <artifactId>testng</artifactId> |
67 | | - <version>6.8</version> |
| 72 | + <version>6.8.7</version> |
68 | 73 | <scope>test</scope> |
69 | | - <exclusions> |
70 | | - <exclusion> |
71 | | - <groupId>org.hamcrest</groupId> |
72 | | - <artifactId>hamcrest-core</artifactId> |
73 | | - </exclusion> |
74 | | - <exclusion> |
75 | | - <groupId>junit</groupId> |
76 | | - <artifactId>junit</artifactId> |
77 | | - </exclusion> |
78 | | - </exclusions> |
79 | 74 | </dependency> |
80 | 75 |
|
81 | 76 | <dependency> |
|
147 | 142 | </execution> |
148 | 143 | </executions> |
149 | 144 | </plugin> |
| 145 | + <plugin> |
| 146 | + <artifactId>maven-resources-plugin</artifactId> |
| 147 | + <version>2.6</version> |
| 148 | + <configuration> |
| 149 | + <encoding>UTF-8</encoding> |
| 150 | + </configuration> |
| 151 | + </plugin> |
| 152 | + <plugin> |
| 153 | + <artifactId>maven-project-info-reports-plugin</artifactId> |
| 154 | + <version>2.7</version> |
| 155 | + </plugin> |
| 156 | + <plugin> |
| 157 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 158 | + <version>2.9.1</version> |
| 159 | + <configuration> |
| 160 | + <encoding>${project.build.sourceEncoding}</encoding> |
| 161 | + <locale>en</locale> |
| 162 | + <linksource>true</linksource> |
| 163 | + <validateLinks>true</validateLinks> |
| 164 | + </configuration> |
| 165 | + <executions> |
| 166 | + <execution> |
| 167 | + <phase>package</phase> |
| 168 | + <goals> |
| 169 | + <goal>jar</goal> |
| 170 | + </goals> |
| 171 | + </execution> |
| 172 | + </executions> |
| 173 | + </plugin> |
| 174 | + <plugin> |
| 175 | + <artifactId>maven-site-plugin</artifactId> |
| 176 | + <version>3.3</version> |
| 177 | + <configuration> |
| 178 | + <locales>en</locales> |
| 179 | + <inputEncoding>UTF-8</inputEncoding> |
| 180 | + <outputEncoding>UTF-8</outputEncoding> |
| 181 | + </configuration> |
| 182 | + </plugin> |
| 183 | + <plugin> |
| 184 | + <groupId>com.github.github</groupId> |
| 185 | + <artifactId>site-maven-plugin</artifactId> |
| 186 | + <version>0.9</version> |
| 187 | + <configuration> |
| 188 | + <message>Building site for ${project.version}</message> |
| 189 | + </configuration> |
| 190 | + <executions> |
| 191 | + <execution> |
| 192 | + <goals> |
| 193 | + <goal>site</goal> |
| 194 | + </goals> |
| 195 | + <phase>site</phase> |
| 196 | + </execution> |
| 197 | + </executions> |
| 198 | + </plugin> |
150 | 199 | </plugins> |
151 | 200 | </build> |
152 | 201 |
|
| 202 | + <reporting> |
| 203 | + <plugins> |
| 204 | + <plugin> |
| 205 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 206 | + <version>2.9.1</version> |
| 207 | + <configuration> |
| 208 | + <encoding>${project.build.sourceEncoding}</encoding> |
| 209 | + <locale>en</locale> |
| 210 | + <linksource>true</linksource> |
| 211 | + <validateLinks>true</validateLinks> |
| 212 | + </configuration> |
| 213 | + </plugin> |
| 214 | + <plugin> |
| 215 | + <artifactId>maven-surefire-report-plugin</artifactId> |
| 216 | + <version>2.15</version> |
| 217 | + </plugin> |
| 218 | + </plugins> |
| 219 | + </reporting> |
| 220 | + |
153 | 221 | </project> |
0 commit comments