Skip to content

Commit

Permalink
Merge pull request #153 from hazendaz/master
Browse files Browse the repository at this point in the history
Secure license, fix tag, update renovate, fix urls
  • Loading branch information
hazendaz authored Feb 10, 2024
2 parents d7b571c + 7451fd8 commit e8f0d5f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 21 deletions.
10 changes: 5 additions & 5 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Apache License
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
https://www.apache.org/licenses/

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

Expand Down Expand Up @@ -178,21 +178,21 @@ Apache License
APPENDIX: How to apply the Apache License to your work.

To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "{}"
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright {yyyy} {name of copyright owner}
Copyright [yyyy] [name of copyright owner]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

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

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
23 changes: 8 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
Expand All @@ -32,15 +33,15 @@

<name>mybatis-ignite</name>
<description>Ignite support for MyBatis Cache</description>
<url>https://github.com/mybatis/ignite-cache</url>
<url>https://www.mybatis.org/ignite-cache/</url>

<inceptionYear>2016</inceptionYear>

<scm>
<url>http://github.com/mybatis/ignite-cache</url>
<url>https://github.com/mybatis/ignite-cache/</url>
<connection>scm:git:ssh://git@github.com/mybatis/ignite-cache.git</connection>
<developerConnection>scm:git:ssh://git@github.com/mybatis/ignite-cache.git</developerConnection>
<tag>mybatis-ignite-1.1.1</tag>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub Issue Management</system>
Expand Down Expand Up @@ -72,19 +73,15 @@
</properties>

<dependencies>
<!--
| Provided dependencies
-->
<!-- Provided dependencies -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.15</version>
<scope>provided</scope>
</dependency>

<!--
| compile dependencies
-->
<!-- compile dependencies -->
<dependency>
<groupId>org.apache.ignite</groupId>
<artifactId>ignite-core</artifactId>
Expand All @@ -105,19 +102,15 @@
</exclusions>
</dependency>

<!--
| trick to fix javadoc generation
-->
<!-- trick to fix javadoc generation -->
<dependency>
<groupId>jakarta.transaction</groupId>
<artifactId>jakarta.transaction-api</artifactId>
<version>1.3.3</version>
<scope>provided</scope>
</dependency>

<!--
| test dependencies
-->
<!-- test dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
"config:recommended"
]
}

0 comments on commit e8f0d5f

Please sign in to comment.