Skip to content

Commit 7d6c3a7

Browse files
authored
Merge pull request #2 from chrisdennis/ibm-dep-updates
Update to IBM dependencies
2 parents 938410b + 74e7e9d commit 7d6c3a7

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

azure-pipelines.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ resources:
2727
jobs:
2828
- template: build-templates/maven-common.yml@templates
2929
parameters:
30-
jobName: Linux_Java_8
31-
options: -B -Djava.test.version=1.8 -Djava.test.vendor=zulu -Ptc-publish,fullmode -Dsag-deps=true
30+
jobName: Linux_Java_11
31+
jdkVersion: 11
32+
options: -B -Djava.test.vendor=zulu -Ptc-publish,fullmode -Dsag-deps=true
3233
mavenGoals: 'clean verify'

pom.xml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.terracotta.forge</groupId>
88
<artifactId>forge-parent</artifactId>
9-
<version>4.17</version>
9+
<version>8.0</version>
1010
</parent>
1111

1212
<groupId>org.terracotta</groupId>
@@ -22,24 +22,39 @@
2222
<dependency>
2323
<groupId>org.terracotta</groupId>
2424
<artifactId>search</artifactId>
25-
<version>1.5.13</version>
25+
<version>1.5.19</version>
2626
</dependency>
2727

2828
<!-- test deps, versions in parent -->
2929
<dependency>
3030
<groupId>junit</groupId>
3131
<artifactId>junit</artifactId>
32+
<version>4.12</version>
3233
</dependency>
3334
<dependency>
3435
<groupId>org.mockito</groupId>
3536
<artifactId>mockito-core</artifactId>
37+
<version>3.0.0</version>
3638
</dependency>
3739
<dependency>
3840
<groupId>org.hamcrest</groupId>
3941
<artifactId>hamcrest</artifactId>
42+
<version>2.1</version>
4043
</dependency>
4144
</dependencies>
4245

46+
<build>
47+
<plugins>
48+
<plugin>
49+
<groupId>org.apache.maven.plugins</groupId>
50+
<artifactId>maven-javadoc-plugin</artifactId>
51+
<configuration>
52+
<doclint>none</doclint>
53+
</configuration>
54+
</plugin>
55+
</plugins>
56+
</build>
57+
4358
<scm>
4459
<connection>scm:git:[email protected]:Terracotta-OSS/tc-messaging.git</connection>
4560
<developerConnection>scm:git:https://github.com/Terracotta-OSS/tc-messaging.git</developerConnection>

0 commit comments

Comments
 (0)