Skip to content

Commit

Permalink
remove unused dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sboeckelmann committed Jun 12, 2024
1 parent 6855cf4 commit 81fb4a1
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 43 deletions.
9 changes: 0 additions & 9 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,6 @@
<groupId>io.smallrye.reactive</groupId>
<artifactId>mutiny</artifactId>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>serializer</artifactId>
</dependency>

<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
Expand Down
15 changes: 0 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,6 @@
<artifactId>converter-service-servlet</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>io.openepcis</groupId>
<artifactId>openepcis-document-converter-sax</artifactId>
<version>${project.parent.version}</version>
</dependency>

<!-- Converting the EPCIS Identifiers URN <-> WebURI -->
<dependency>
Expand All @@ -132,16 +127,6 @@
<artifactId>openepcis-test-resources</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.3</version>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>serializer</artifactId>
<version>2.7.3</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import io.quarkus.deployment.builditem.nativeimage.NativeImageResourcePatternsBuildItem;
import io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem;
import io.quarkus.smallrye.health.deployment.spi.HealthBuildItem;
import org.apache.xml.dtm.ref.DTMManagerDefault;

import java.util.stream.Stream;

Expand Down Expand Up @@ -68,9 +67,7 @@ ReflectiveClassBuildItem addReflectiveClassBuildItem() {
return ReflectiveClassBuildItem.builder(
VersionTransformerProducer.class,
VersionTransformer.class,
DTMManagerDefault.class,
DefaultXmlVersionTransformer.class,
org.apache.xml.serializer.ToXMLStream.class
DefaultXmlVersionTransformer.class
)
.unsafeAllocated()
.serialization().methods().fields().constructors()
Expand Down
5 changes: 0 additions & 5 deletions service/converter-service-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,6 @@
<artifactId>openepcis-document-converter</artifactId>
</dependency>

<dependency>
<groupId>io.openepcis</groupId>
<artifactId>openepcis-document-converter-sax</artifactId>
</dependency>

<!-- Converting the EPCIS Identifiers URN <-> WebURI -->
<dependency>
<groupId>io.openepcis</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public Uni<InputStream> convertToJson_2_0(
.fromMediaType(GS1FormatSupport.getEPCISFormat(mediaType))
.toMediaType(EPCISFormat.JSON_LD)
.toVersion(EPCISVersion.VERSION_2_0_0)
.build()));
.build())).runSubscriptionOn(managedExecutor);
}

// Method to convert the input JSON 2.0 EPCIS events into XML 2.0 EPCIS events
Expand Down
5 changes: 0 additions & 5 deletions service/converter-service-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,6 @@
<artifactId>openepcis-document-converter</artifactId>
</dependency>

<dependency>
<groupId>io.openepcis</groupId>
<artifactId>openepcis-document-converter-sax</artifactId>
</dependency>

<!-- Converting the EPCIS Identifiers URN <-> WebURI -->
<dependency>
<groupId>io.openepcis</groupId>
Expand Down
4 changes: 0 additions & 4 deletions service/quarkus-converter-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,6 @@
<groupId>io.openepcis</groupId>
<artifactId>converter-service-rest</artifactId>
</dependency>
<dependency>
<groupId>io.openepcis</groupId>
<artifactId>openepcis-document-converter-sax</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-arc</artifactId>
Expand Down

0 comments on commit 81fb4a1

Please sign in to comment.