Skip to content

Commit 14d7ace

Browse files
committed
Add optional runtime dependencies to exclusions
1 parent 446b8ba commit 14d7ace

1 file changed

Lines changed: 45 additions & 11 deletions

File tree

pom.xml

Lines changed: 45 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -104,17 +104,6 @@
104104
<artifactId>fiji</artifactId>
105105
<scope>test</scope>
106106
<exclusions>
107-
<!-- Third-party dependencies -->
108-
<exclusion>
109-
<groupId>org.javassist</groupId>
110-
<artifactId>javassist</artifactId>
111-
</exclusion>
112-
<!-- Runtime dependencies -->
113-
<exclusion>
114-
<groupId>org.scijava</groupId>
115-
<artifactId>script-editor-jython</artifactId>
116-
</exclusion>
117-
118107
<!-- Standard Fiji projects - https://github.com/fiji -->
119108
<exclusion>
120109
<groupId>org.janelia</groupId>
@@ -600,6 +589,51 @@
600589
<groupId>io.scif</groupId>
601590
<artifactId>scifio-ome-xml</artifactId>
602591
</exclusion>
592+
593+
594+
<exclusion>
595+
<groupId>ch.qos.reload4j</groupId>
596+
<artifactId>reload4j</artifactId>
597+
</exclusion>
598+
599+
<!-- JFreeSVG - https://www.jfree.org/jfreesvg/ -->
600+
<exclusion>
601+
<groupId>org.jfree</groupId>
602+
<artifactId>jfreesvg</artifactId>
603+
</exclusion>
604+
605+
<!-- JOGL libraries, for Java 3D - https://github.com/jogamp -->
606+
<exclusion>
607+
<groupId>org.jogamp.gluegen</groupId>
608+
<artifactId>gluegen-rt</artifactId>
609+
</exclusion>
610+
<exclusion>
611+
<groupId>org.jogamp.jogl</groupId>
612+
<artifactId>jogl-all</artifactId>
613+
</exclusion>
614+
<exclusion>
615+
<groupId>org.jogamp.gluegen</groupId>
616+
<artifactId>gluegen-rt</artifactId>
617+
</exclusion>
618+
<exclusion>
619+
<groupId>org.jogamp.jogl</groupId>
620+
<artifactId>jogl-all</artifactId>
621+
</exclusion>
622+
623+
<!-- Optional runtime dependencies -->
624+
<exclusion>
625+
<groupId>org.scijava</groupId>
626+
<artifactId>scijava-config</artifactId>
627+
</exclusion>
628+
<exclusion>
629+
<groupId>ch.qos.logback</groupId>
630+
<artifactId>logback-classic</artifactId>
631+
</exclusion>
632+
<!-- Test scope dependencies -->
633+
<exclusion>
634+
<groupId>junit</groupId>
635+
<artifactId>junit</artifactId>
636+
</exclusion>
603637
</exclusions>
604638
</dependency>
605639
<!-- only scijava-common -->

0 commit comments

Comments
 (0)