Skip to content

Commit

Permalink
fix : fix about jar in gradle&docker
Browse files Browse the repository at this point in the history
  • Loading branch information
nonaninona committed Jan 1, 2024
1 parent b6edc00 commit 2a60b01
Show file tree
Hide file tree
Showing 11 changed files with 55 additions and 59 deletions.
Binary file modified .gradle/8.5/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:19-alpine
ARG JAR_PATH=build/libs/chatdiary-0.0.1-SNAPSHOT.jar
ARG JAR_PATH=build/libs/*.jar
COPY ${JAR_PATH} /home/server.jar
ENTRYPOINT ["java","-jar","/home/server.jar"]
4 changes: 0 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ tasks.named('test') {
useJUnitPlatform()
}

bootJar {
enabled = true
}

jar {
enabled = false
}

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions build/reports/tests/test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ <h1>Test Summary</h1>
</td>
<td>
<div class="infoBox" id="duration">
<div class="counter">0.132s</div>
<div class="counter">0.159s</div>
<p>duration</p>
</div>
</td>
Expand Down Expand Up @@ -85,7 +85,7 @@ <h2>Packages</h2>
<td>1</td>
<td>0</td>
<td>0</td>
<td>0.132s</td>
<td>0.159s</td>
<td class="success">100%</td>
</tr>
</tbody>
Expand All @@ -112,7 +112,7 @@ <h2>Classes</h2>
<td>1</td>
<td>0</td>
<td>0</td>
<td>0.132s</td>
<td>0.159s</td>
<td class="success">100%</td>
</tr>
</tbody>
Expand All @@ -126,7 +126,7 @@ <h2>Classes</h2>
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
</label>
</div>Generated by
<a href="http://www.gradle.org">Gradle 8.5</a> at 2023. 12. 31. 오후 10:02:27</p>
<a href="http://www.gradle.org">Gradle 8.5</a> at 2024. 1. 1. 오후 11:46:47</p>
</div>
</div>
</body>
Expand Down
6 changes: 3 additions & 3 deletions build/reports/tests/test/packages/com.kuit.chatdiary.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ <h1>Package com.kuit.chatdiary</h1>
</td>
<td>
<div class="infoBox" id="duration">
<div class="counter">0.132s</div>
<div class="counter">0.159s</div>
<p>duration</p>
</div>
</td>
Expand Down Expand Up @@ -83,7 +83,7 @@ <h2>Classes</h2>
<td>1</td>
<td>0</td>
<td>0</td>
<td>0.132s</td>
<td>0.159s</td>
<td class="success">100%</td>
</tr>
</table>
Expand All @@ -96,7 +96,7 @@ <h2>Classes</h2>
<input id="line-wrapping-toggle" type="checkbox" autocomplete="off"/>
</label>
</div>Generated by
<a href="http://www.gradle.org">Gradle 8.5</a> at 2023. 12. 31. 오후 10:02:27</p>
<a href="http://www.gradle.org">Gradle 8.5</a> at 2024. 1. 1. 오후 11:46:47</p>
</div>
</div>
</body>
Expand Down

Large diffs are not rendered by default.

Binary file modified build/test-results/test/binary/output.bin
Binary file not shown.
Binary file modified build/test-results/test/binary/output.bin.idx
Binary file not shown.
Binary file modified build/test-results/test/binary/results.bin
Binary file not shown.

0 comments on commit 2a60b01

Please sign in to comment.