Skip to content

Commit 4917d53

Browse files
authored
Merge pull request #1952 from kazuki43zoo/gh-1916-workaround-apply-mybatis-parent-32-snapshot
Apply mybatis-parent 32-SNAPSHOT for build error using JDK 15 on Travis CI
2 parents cd34da4 + 615b333 commit 4917d53

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
language: java
22

33
jdk:
4-
# JDK15 is blocked due to maven-bundle-plugin and underlying bnd (see https://issues.apache.org/jira/browse/FELIX-6259)
5-
#- openjdk15
4+
- openjdk15
65
- openjdk14
76
- openjdk13
87
- openjdk11

pom.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.mybatis</groupId>
2424
<artifactId>mybatis-parent</artifactId>
25-
<version>31</version>
25+
<version>32-SNAPSHOT</version>
2626
<relativePath />
2727
</parent>
2828

@@ -406,4 +406,13 @@
406406
</profile>
407407
</profiles>
408408

409+
<!-- Will remove after released mybatis-parent 32+ (See https://github.com/mybatis/mybatis-3/issues/1926) -->
410+
<repositories>
411+
<repository>
412+
<id>sonatype-oss-snapshots</id>
413+
<name>Sonatype OSS Snapshots Repository</name>
414+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
415+
</repository>
416+
</repositories>
417+
409418
</project>

0 commit comments

Comments
 (0)