Skip to content

Commit

Permalink
Merge pull request deegree#78 from wetransform-os/pr/fix-eclipse-build
Browse files Browse the repository at this point in the history
Exclude dependencies that are included in Java 11+
  • Loading branch information
copierrj authored May 12, 2023
2 parents 15064a0 + 2d02191 commit ae8af13
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 17 deletions.
4 changes: 0 additions & 4 deletions deegree-ogcapi-config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,6 @@
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</dependency>
</dependencies>

</project>
8 changes: 0 additions & 8 deletions deegree-ogcapi-features/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,6 @@
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-stax-api_1.0_spec</artifactId>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
Expand Down
17 changes: 12 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,12 @@
<groupId>org.deegree</groupId>
<artifactId>deegree-core-commons</artifactId>
<version>${deegree-version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-stax-api_1.0_spec</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.deegree</groupId>
Expand Down Expand Up @@ -749,11 +755,12 @@
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.12.2</version>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>1.4.01</version>
<exclusions>
<exclusion>
<artifactId>xml-apis</artifactId>
<groupId>xml-apis</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- logging -->
<dependency>
Expand Down

0 comments on commit ae8af13

Please sign in to comment.