Skip to content

Commit

Permalink
Java stacktraces
Browse files Browse the repository at this point in the history
  • Loading branch information
pivovarit committed May 25, 2024
1 parent 76bb26d commit 7dea2c0
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 0 deletions.
Empty file.
48 changes: 48 additions & 0 deletions java-exception-stacktraces/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.pivovarit</groupId>
<version>1.0</version>
<artifactId>java-exception-stacktraces</artifactId>

<name>java-exception-stacktraces</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>22</source>
<target>22</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>1.1.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.22.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.pivovarit.exception;

class StacktraceDropExample {
}
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<module>kotlin-collections</module>
<module>hamming-error-correction</module>
<module>kotlin-type-inference</module>
<module>java-exception-stacktraces</module>
<module>java-sneaky-throws-lambda</module>
<module>java-priorityqueue-stream-order</module>
<module>java-stream-mapmulti</module>
Expand Down

0 comments on commit 7dea2c0

Please sign in to comment.