Skip to content

Commit 7bda96a

Browse files
authored
Merge pull request #130 from hazendaz/master
Cleanup build
2 parents 874ee3c + 15bdd87 commit 7bda96a

File tree

5 files changed

+12
-18
lines changed

5 files changed

+12
-18
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
os: [ubuntu-latestt]
10+
os: [ubuntu-latest]
1111
java: [11, 17, 21, 22-ea]
1212
distribution: ['temurin']
1313
fail-fast: false

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Apache License
22
Version 2.0, January 2004
3-
http://www.apache.org/licenses/
3+
https://www.apache.org/licenses/
44

55
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
66

@@ -192,7 +192,7 @@
192192
you may not use this file except in compliance with the License.
193193
You may obtain a copy of the License at
194194

195-
http://www.apache.org/licenses/LICENSE-2.0
195+
https://www.apache.org/licenses/LICENSE-2.0
196196

197197
Unless required by applicable law or agreed to in writing, software
198198
distributed under the License is distributed on an "AS IS" BASIS,

pom.xml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2012-2023 the original author or authors.
4+
Copyright 2012-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -32,23 +32,23 @@
3232

3333
<name>mybatis-memcached</name>
3434
<description>Memcached support for MyBatis Cache</description>
35-
<url>http://www.mybatis.org/caches/memcached/</url>
35+
<url>https://www.mybatis.org/memcached-cache/</url>
3636

3737
<inceptionYear>2012</inceptionYear>
3838

3939
<scm>
40-
<url>http://github.com/mybatis/memcached-cache</url>
4140
<connection>scm:git:ssh://[email protected]/mybatis/memcached-cache.git</connection>
4241
<developerConnection>scm:git:ssh://[email protected]/mybatis/memcached-cache.git</developerConnection>
4342
<tag>HEAD</tag>
43+
<url>http://github.com/mybatis/memcached-cache/</url>
4444
</scm>
4545
<issueManagement>
4646
<system>GitHub Issue Management</system>
4747
<url>https://github.com/mybatis/memcached-cache/issues</url>
4848
</issueManagement>
4949
<ciManagement>
5050
<system>GitHub Actions</system>
51-
<url>https://github.com/mybatis/memcached-cache</url>
51+
<url>https://github.com/mybatis/memcached-cache/actions</url>
5252
</ciManagement>
5353
<distributionManagement>
5454
<site>
@@ -70,29 +70,23 @@
7070
</properties>
7171

7272
<dependencies>
73-
<!--
74-
| Provided dependencies
75-
-->
73+
<!-- Provided dependencies -->
7674
<dependency>
7775
<groupId>org.mybatis</groupId>
7876
<artifactId>mybatis</artifactId>
7977
<version>3.5.15</version>
8078
<scope>provided</scope>
8179
</dependency>
8280

83-
<!--
84-
| compile dependencies
85-
-->
81+
<!-- compile dependencies -->
8682
<dependency>
8783
<groupId>net.spy</groupId>
8884
<artifactId>spymemcached</artifactId>
8985
<version>2.12.3</version>
9086
<scope>compile</scope>
9187
</dependency>
9288

93-
<!--
94-
| test dependencies
95-
-->
89+
<!-- test dependencies -->
9690
<dependency>
9791
<groupId>org.junit.jupiter</groupId>
9892
<artifactId>junit-jupiter-engine</artifactId>

renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4-
"config:base"
4+
"config:recommended"
55
]
66
}

src/site/site.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2012-2022 the original author or authors.
4+
Copyright 2012-2024 the original author or authors.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)