-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔒 Add Support for Java11 👽 update LibraryManager to v1.3.2 🍱 Add .gitprefix
- Loading branch information
Showing
10 changed files
with
81 additions
and
204 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
//By way_zer, references: | ||
// Angular Conventions | ||
// http://gitmoji.surge.sh/ | ||
|
||
|$| ===Type 类型 | ||
//Follow Angular,May different | ||
:sparkles: NewOrImprove | 新功能或外部改善 | ||
:bug: BugFix | bug修复 | ||
:memo: Documentation | 添加文档 | ||
:art: Style | 自动优化(Lint,Reformat) | ||
:hammer: InteralChange | 内部重构,不外部变化 | ||
:white_check_mark: Test | 测试效果修改 | ||
:bento: Chore | 其他代码无关的杂事 | ||
|
||
|$| ===Reason 原因=== | ||
:alien: DueToApi | 外界导致变更 | ||
:globe_with_meridians: Globalization | 国际化 | ||
:lock: Safe | 安全 | ||
:zap: Proformance | 优化性能 | ||
|$| ===Operate 操作=== | ||
:fire: Remove | 删除xxx | ||
:truck: Move | 移动或重命名 | ||
|$| ===Other 结果,变更,备注=== | ||
:construction: UnderConstruct | 建设中 | ||
:bookmark: NewVersion | 版本号更新 | ||
:boom: BreakChange | 重大修改 | ||
:ok_hand: Closes | 关闭Issue或Pull | ||
|
||
merge { | ||
:twisted_rightwards_arrows: Merge From | ||
} |
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
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,7 +1,8 @@ | ||
package cf.wayzer.SuperItem.scripts | ||
|
||
@Target(AnnotationTarget.FILE) | ||
@Retention(AnnotationRetention.SOURCE) | ||
@Repeatable | ||
annotation class ImportClass( | ||
val name:String | ||
) | ||
val name:String | ||
) |
11 changes: 11 additions & 0 deletions
11
src/main/kotlin/cf/wayzer/SuperItem/scripts/MavenDepends.kt
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 @@ | ||
package cf.wayzer.SuperItem.scripts | ||
|
||
import cf.wayzer.libraryManager.Repository | ||
|
||
@Target(AnnotationTarget.FILE) | ||
@Retention(AnnotationRetention.SOURCE) | ||
@Repeatable | ||
annotation class MavenDepends( | ||
val name: String, | ||
val repo: String = Repository.DEFAULT | ||
) |
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