Skip to content

Commit 5c649ad

Browse files
committed
Upgraded Tika, Testng, hamcrest, log4j and surefire plugin.
Closes elastic#12
1 parent 65043c0 commit 5c649ad

File tree

2 files changed

+18
-15
lines changed

2 files changed

+18
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ In order to install the plugin, simply run: `bin/plugin -install elasticsearch/e
88
------------------------------------------------------
99
| Attachment Mapper Plugin | ElasticSearch | Tika |
1010
------------------------------------------------------
11-
| master | 0.19 -> master | 1.1 |
11+
| master | 0.19 -> master | 1.2 |
1212
------------------------------------------------------
1313
| 1.4.0 | 0.19 -> master | 1.1 |
1414
------------------------------------------------------

pom.xml

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
</licenses>
2020
<scm>
2121
<connection>scm:git:[email protected]:elasticsearch/elasticsearch-mapper-attachments.git</connection>
22-
<developerConnection>scm:git:[email protected]:elasticsearch/elasticsearch-mapper-attachments.git
23-
</developerConnection>
22+
<developerConnection>scm:git:[email protected]:elasticsearch/elasticsearch-mapper-attachments.git</developerConnection>
2423
<url>http://github.com/elasticsearch/elasticsearch-mapper-attachments</url>
2524
</scm>
2625

@@ -68,37 +67,41 @@
6867
<dependency>
6968
<groupId>org.apache.tika</groupId>
7069
<artifactId>tika-app</artifactId>
71-
<version>1.1</version>
70+
<version>1.2</version>
7271
<scope>compile</scope>
7372
</dependency>
7473

7574
<dependency>
7675
<groupId>log4j</groupId>
7776
<artifactId>log4j</artifactId>
78-
<version>1.2.16</version>
77+
<version>1.2.17</version>
7978
<scope>runtime</scope>
8079
</dependency>
8180

8281
<dependency>
8382
<groupId>org.testng</groupId>
8483
<artifactId>testng</artifactId>
85-
<version>6.3.1</version>
84+
<version>6.8</version>
8685
<scope>test</scope>
86+
<exclusions>
87+
<exclusion>
88+
<groupId>org.hamcrest</groupId>
89+
<artifactId>hamcrest-core</artifactId>
90+
</exclusion>
91+
<exclusion>
92+
<groupId>junit</groupId>
93+
<artifactId>junit</artifactId>
94+
</exclusion>
95+
</exclusions>
8796
</dependency>
8897

8998
<dependency>
9099
<groupId>org.hamcrest</groupId>
91-
<artifactId>hamcrest-core</artifactId>
92-
<version>1.3.RC2</version>
100+
<artifactId>hamcrest-all</artifactId>
101+
<version>1.3</version>
93102
<scope>test</scope>
94103
</dependency>
95104

96-
<dependency>
97-
<groupId>org.hamcrest</groupId>
98-
<artifactId>hamcrest-library</artifactId>
99-
<version>1.3.RC2</version>
100-
<scope>test</scope>
101-
</dependency>
102105
</dependencies>
103106

104107
<build>
@@ -128,7 +131,7 @@
128131
<plugin>
129132
<groupId>org.apache.maven.plugins</groupId>
130133
<artifactId>maven-surefire-plugin</artifactId>
131-
<version>2.11</version>
134+
<version>2.12.3</version>
132135
<configuration>
133136
<includes>
134137
<include>**/*Tests.java</include>

0 commit comments

Comments
 (0)