Skip to content

Commit af5727d

Browse files
committed
Changed dependencies in order to make glassfish to work with eupo
1 parent 4fb96dd commit af5727d

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

pom.xml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -468,23 +468,16 @@
468468
<artifactId>jetty-io</artifactId>
469469
<version>10.0.19</version>
470470
</dependency>
471-
<!--<dependency>
471+
<dependency>
472472
<groupId>jakarta.xml.bind</groupId>
473473
<artifactId>jakarta.xml.bind-api</artifactId>
474474
<version>4.0.2</version>
475475
</dependency>
476-
-->
477476
<dependency>
478477
<groupId>org.glassfish.jaxb</groupId>
479478
<artifactId>jaxb-runtime</artifactId>
480479
<version>4.0.5</version>
481480
</dependency>
482-
<dependency>
483-
<groupId>com.sun.xml.bind</groupId>
484-
<artifactId>jaxb-impl</artifactId>
485-
<version>4.0.5</version>
486-
<scope>runtime</scope>
487-
</dependency>
488481
<dependency>
489482
<!-- Import dependency management from Spring Boot -->
490483
<groupId>org.springframework.boot</groupId>
@@ -1061,6 +1054,10 @@
10611054
<groupId>com.sun.activation</groupId>
10621055
<artifactId>jakarta.activation</artifactId>
10631056
</exclusion>
1057+
<exclusion>
1058+
<groupId>jakarta.xml.bind</groupId>
1059+
<artifactId>jakarta.xml.bind-api</artifactId>
1060+
</exclusion>
10641061
</exclusions>
10651062
</dependency>
10661063
<dependency>

roda-common/roda-common-data/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,15 @@
4141
<groupId>org.slf4j</groupId>
4242
<artifactId>slf4j-api</artifactId>
4343
</dependency>
44+
<dependency>
45+
<groupId>org.glassfish.jaxb</groupId>
46+
<artifactId>jaxb-runtime</artifactId>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.glassfish.jaxb</groupId>
50+
<artifactId>jaxb-runtime</artifactId>
51+
<classifier>sources</classifier>
52+
</dependency>
4453
<dependency>
4554
<groupId>jakarta.xml.bind</groupId>
4655
<artifactId>jakarta.xml.bind-api</artifactId>

roda-core/roda-core/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,10 @@
149149
<groupId>jakarta.servlet</groupId>
150150
<artifactId>jakarta.servlet-api</artifactId>
151151
</dependency>
152+
<dependency>
153+
<groupId>org.glassfish.jaxb</groupId>
154+
<artifactId>jaxb-runtime</artifactId>
155+
</dependency>
152156
<dependency>
153157
<groupId>org.apache.commons</groupId>
154158
<artifactId>commons-lang3</artifactId>

0 commit comments

Comments
 (0)