forked from Slimefun/Slimefun4
-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
658 changed files
with
21,273 additions
and
17,389 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## 简介 | ||
<!-- 大致解释一下这个提交更改变动了什么. --> | ||
|
||
## 相关的 Issues (没有可不填) | ||
<!-- 如果这个提交更改解决了 Issue 中的问题, 请手动标记对应的 Issues --> | ||
<!-- 例如: "Fixes #000" --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "maven" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "daily" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
version: "1" | ||
rules: | ||
- base: master | ||
upstream: Slimefun:master | ||
mergeMethod: merge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,6 @@ | |
/target | ||
/.idea/ | ||
dependency-reduced-pom.xml | ||
.factorypath | ||
.factorypath | ||
|
||
/src/test/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
<configuration xmlns="https://github.com/qoomon/maven-git-versioning-extension" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="https://github.com/qoomon/maven-git-versioning-extension https://qoomon.github.io/maven-git-versioning-extension/configuration-6.4.0.xsd"> | ||
<branch> | ||
<pattern>master</pattern> | ||
<versionFormat>4.9-canary-${commit.short}</versionFormat> | ||
</branch> | ||
<branch> | ||
<pattern>release</pattern> | ||
<versionFormat>4.9-release-${commit.short}</versionFormat> | ||
</branch> | ||
<branch> | ||
<pattern>feature/(.+)></pattern> | ||
<versionFormat>4.9-${1}-${commit.short}</versionFormat> | ||
</branch> | ||
<tag> | ||
<pattern>v([0-9].*)></pattern> | ||
<versionFormat>${1}</versionFormat> | ||
</tag> | ||
xsi:schemaLocation="https://github.com/qoomon/maven-git-versioning-extension https://qoomon.github.io/maven-git-versioning-extension/configuration-7.1.0.xsd"> | ||
<refs> | ||
<ref type ="branch"> | ||
<pattern>master</pattern> | ||
<version>4.9-canary-${commit.short}</version> | ||
</ref> | ||
<ref type ="branch"> | ||
<pattern>release</pattern> | ||
<version>4.9-release-${commit.timestamp.year.2digit}${commit.timestamp.month}${commit.timestamp.day}</version> | ||
</ref> | ||
<ref type ="branch"> | ||
<pattern>feature/(.+)</pattern> | ||
<version>4.9-${1}-${commit.short}</version> | ||
</ref> | ||
<ref type = "tag"> | ||
<pattern>v([0-9].*)></pattern> | ||
<version>${1}</version> | ||
</ref> | ||
</refs> | ||
</configuration> |
Oops, something went wrong.