Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
38leinaD committed Oct 4, 2017
1 parent e0e4f84 commit 71aadfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<groupId>org.connectorz.files</groupId>
<artifactId>api</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
Expand Down

1 comment on commit 71aadfe

@tarunmp0102
Copy link

@tarunmp0102 tarunmp0102 commented on 71aadfe Jan 18, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How do we solve the problem, if we aren't using maven to do the deployments.

I basically extracted the "Bucket" and "BucketStore" interfaces into a saperate jar . and injected this jar as a dependency in both the rar-file and the Jax-RS-client of this rar. But i still see the first error reported in the issue even on the latest package of build.
Note i also over came the issues on needing to apply the equals and hashCode method and removing the @min(1) annotation.

Questions:

Is there a specific way to implement the hashCode and equals method in the FileAdapter? As of now i am just in-turn invoking the super.hashCode() and super.equals() methods respectively in my implementation.

Please sign in to comment.