Skip to content

Commit

Permalink
enable vintage junit
Browse files Browse the repository at this point in the history
  • Loading branch information
bertramn committed Oct 22, 2023
1 parent c23a174 commit 566d6db
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
18 changes: 17 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@
<dependency>
<groupId>org.jvnet.jaxb</groupId>
<artifactId>jaxb2-basics-tools</artifactId>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- region logging dependencies -->
<dependency>
Expand All @@ -120,9 +126,19 @@
</dependency>
<!-- endregion -->
<!-- region testing -->
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@

public class JacksonPlugin extends AbstractParameterizablePlugin {

public static final String NS = "http://jaxb2-commons.dev.java.net/basic/jackson";
// TODO rename plugin namespace
public static final String NS = "http" + "://jaxb2-commons.dev.java.net/basic/jackson";

private final EnumAnnotationProcessor enumAnnotationProcessor;

Expand Down

0 comments on commit 566d6db

Please sign in to comment.