Skip to content

Commit 516dd31

Browse files
committed
Rewrite in Kotlin
1 parent ba849bb commit 516dd31

File tree

254 files changed

+7072
-8384
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

254 files changed

+7072
-8384
lines changed

.circleci/config.yml

-233
This file was deleted.

.detekt/config.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
comments:
2+
UndocumentedPublicClass:
3+
active: true
4+
UndocumentedPublicFunction:
5+
active: true
6+
UndocumentedPublicProperty:
7+
active: true
8+
complexity:
9+
TooManyFunctions:
10+
ignoreDeprecated: true
11+
ignoreOverridden: true
12+
ignorePrivate: true
13+
formatting:
14+
ImportOrdering:
15+
active: true
16+
NoBlankLineBeforeRbrace:
17+
active: false
18+
ParameterListWrapping:
19+
indentSize: 8
20+
performance:
21+
SpreadOperator:
22+
active: false
23+
style:
24+
ClassOrdering:
25+
active: true
26+
ForbiddenComment:
27+
active: false
28+
FunctionOnlyReturningConstant:
29+
active: false
30+
NoTabs:
31+
active: true
32+
SerialVersionUIDInSerializableClass:
33+
active: false
34+
UnusedPrivateMember:
35+
allowedNames: (readObject|readObjectNoData|readResolve|serialVersionUID|writeObject|writeReplace)

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @akkinoc

.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: akkinoc

.github/ISSUE_TEMPLATE/bug_report.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: 🐛 Bug report
3+
about: Create a bug report.
4+
labels: type:bug
5+
---
6+
7+
## Describe the bug
8+
9+
<!--
10+
A clear and concise description of what the bug is.
11+
-->
12+
13+
## To Reproduce
14+
15+
<!--
16+
Steps to reproduce the behavior.
17+
-->
18+
19+
## Expected behavior
20+
21+
<!--
22+
A clear and concise description of what you expected to happen.
23+
-->
24+
25+
### Environment
26+
27+
<!--
28+
Please provide the following.
29+
-->
30+
31+
* **Version of this library used**:
32+
* **Version of Java used**:
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: 💡 Feature request
3+
about: Suggest an idea or a feature.
4+
labels: type:enhancement
5+
---
6+
7+
## Describe the problem you'd like to have solved
8+
9+
<!--
10+
A clear and concise description of what the problem is.
11+
-->
12+
13+
## Describe the solution you'd like
14+
15+
<!--
16+
A clear and concise description of what you want to happen.
17+
-->

.github/ISSUE_TEMPLATE/question.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: ❓ Question
3+
about: Ask a question about usage, support, internal behavior, etc.
4+
labels: type:question
5+
---
6+
7+
## Question
8+
9+
<!--
10+
A clear and concise question.
11+
-->

.github/dependabot.yml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: maven
4+
directory: /
5+
schedule:
6+
interval: daily
7+
labels:
8+
- type:dependencies
9+
- package-ecosystem: maven
10+
directory: /examples/webmvc-tomcat-java
11+
schedule:
12+
interval: daily
13+
labels:
14+
- type:dependencies
15+
- package-ecosystem: maven
16+
directory: /examples/webmvc-tomcat-kotlin
17+
schedule:
18+
interval: daily
19+
labels:
20+
- type:dependencies
21+
- package-ecosystem: maven
22+
directory: /examples/webmvc-jetty-java
23+
schedule:
24+
interval: daily
25+
labels:
26+
- type:dependencies
27+
- package-ecosystem: maven
28+
directory: /examples/webmvc-undertow-java
29+
schedule:
30+
interval: daily
31+
labels:
32+
- type:dependencies
33+
- package-ecosystem: maven
34+
directory: /examples/webflux-tomcat-java
35+
schedule:
36+
interval: daily
37+
labels:
38+
- type:dependencies
39+
- package-ecosystem: maven
40+
directory: /examples/webflux-jetty-java
41+
schedule:
42+
interval: daily
43+
labels:
44+
- type:dependencies
45+
- package-ecosystem: maven
46+
directory: /examples/webflux-undertow-java
47+
schedule:
48+
interval: daily
49+
labels:
50+
- type:dependencies
51+
- package-ecosystem: github-actions
52+
directory: /
53+
schedule:
54+
interval: daily
55+
labels:
56+
- type:dependencies

.github/issue_template.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Describe the issue
2+
3+
<!--
4+
A clear and concise description of what the issue is.
5+
-->

0 commit comments

Comments
 (0)