-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The dependency provided does not contain the Autoserializable annotation #5
Comments
There is a typo in the readme file. It should be
|
Hello and thank you for your reply, the problem is that there is no egen.annotations package at all. Can you specify the dependencies that I have to enter to my pom.xml in order to find the Annotation AutoSerializable and to perform the autogeneration during compile time? thanks again |
Annotations are included in the egen delivery package and it shall be added as a project dependency. If you use maven, then the most simple way to add egen is to use the bundled version (you'll also need to add the egen Maven repository - http://dl.bintray.com/devexperts/Maven ): <dependency>
<groupId>com.devexperts</groupId>
<artifactId>egen</artifactId>
<version>2.0.1</version>
<classifier>bundled</classifier>
</dependency> |
helped me. |
Hello,
It seems that your project is a perfect fit for quickly moving on from Serialization to Externalization. I'm following the documentation to add the repository and dependecy provided but I cannot import the corresponding annotation, should I add more dependencies
import com.devexperts.egen.processor.annotations.Autoserializable;
Thanks
The text was updated successfully, but these errors were encountered: