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

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

Open
chetankpatil opened this issue Nov 3, 2016 · 0 comments
Open

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

chetankpatil opened this issue Nov 3, 2016 · 0 comments

Comments

@chetankpatil
Copy link

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.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant