Skip to content

Commit 7120259

Browse files
authored
Merge pull request #26 from strykeforce/phoenix6-alpha
Phoenix6 Updates
2 parents d9c6424 + e96dca9 commit 7120259

File tree

80 files changed

+6820
-1615
lines changed

Some content is hidden

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

80 files changed

+6820
-1615
lines changed

bin/main/logback.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<configuration>
2+
3+
<appender name="STDERR" class="ch.qos.logback.core.ConsoleAppender">
4+
<!-- encoders are assigned the type
5+
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
6+
<target>System.err</target>
7+
<encoder>
8+
<pattern>%-23(%d{HH:mm:ss.SSS} [%thread]) %highlight(%-5level) %logger{32} - %msg%n</pattern>
9+
</encoder>
10+
</appender>
11+
12+
<logger name="org.strykeforce.thirdcoast" level="DEBUG"/>
13+
<logger name="org.eclipse.jetty" level="INFO"/>
14+
<logger name="Koin" level="INFO"/>
15+
16+
<!-- Strictly speaking, the level attribute is not necessary since -->
17+
<!-- the level of the root level is set to DEBUG by default. -->
18+
<root level="DEBUG">
19+
<appender-ref ref="STDERR"/>
20+
</root>
21+
22+
</configuration>
2.15 KB
Binary file not shown.
509 Bytes
Binary file not shown.
14.9 KB
Binary file not shown.
2.8 KB
Binary file not shown.
6.04 KB
Binary file not shown.
1.76 KB
Binary file not shown.
3.99 KB
Binary file not shown.

bin/main/templates/hello.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Hello</title>
6+
</head>
7+
<body>
8+
<h1 th:text="${name}">Hello, World</h1>
9+
</body>
10+
</html>

bin/test/junit-platform.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
junit.jupiter.testinstance.lifecycle.default=per_class

0 commit comments

Comments
 (0)