Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

Incorrect dependencies entries in ecs.core/pom.xml #23

@chetankpatil

Description

@chetankpatil

Following entries in pom.xml are creating issues while running mvn install command. Maven is unable to find the following dependencies.

<dependency>
	<!-- <groupId>org.wymiwyg.clerezza</groupId> -->
        <groupId>org.apache.clerezza</groupId>
        <artifactId>platform.graphprovider.content</artifactId>
	<version>1.0.0</version>
</dependency>
<dependency>
        <!-- <groupId>org.wymiwyg.clerezza</groupId> -->
        <groupId>org.apache.clerezza</groupId>
        <artifactId>platform.cris</artifactId>
	<version>0.2</version>
</dependency>
<dependency>
        <!-- <groupId>org.wymiwyg.clerezza</groupId> -->
        <groupId>org.apache.clerezza</groupId>
        <artifactId>platform.content</artifactId>
	<version>1.0.0</version>
</dependency>

After commenting the existing groupId (commented above) and adding the new one (below commented one), the dependency errors goes away. However, it starts throwing compilation error in class eu.fusepool.ecs.core.ContentStoreImpl. The error is,

The type org.apache.clerezza.rdf.core.UriRef cannot be resolved. It is indirectly referenced from required .class files

It's because rdf.core-1.0.1.jar depedency from ecs.ontologies/pom.xml does not contains class org.apache.clerezza.rdf.core.UriRef anymore since rdf.core-0.14.jar

Even if the dependency version is changed to 0.14, it starts throwing other compilation errors.

Clearly the dependencies are incompatible and needs to be upgraded along with the code.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions