-
-
Notifications
You must be signed in to change notification settings - Fork 351
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
Unable to load processor #1002
Comments
The processors are in the same project as the code to be transformed? (this is not recommended) Does it work with the precompile flag? |
I tried to specify the precompile flag and it did not worked About my maven project structure, I have now:
Is that correct? |
that's better. and the second submodule must depend on the first one. |
Ok thanks ! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there
I am trying to do a dead-simple example of spoon for teaching purpose and facing an Unable to load processor issue that I don't understand.
Context:
mvn clean install
command at the root of my projectBelow, an extract of my
pom.xml
file:<dependencies> <dependency> <groupId>fr.inria.gforge.spoon</groupId> <artifactId>spoon-core</artifactId> <version>5.3.0</version> </dependency> </dependencies>
I don't understand why I need to specify a precompile option or to include something in the classpath since my processor are in the current project:
src/main/java/fr/unice/test/spoon/processor : GTToLTProcessor.java | LTToGTProcessor.java
I have found this issue that may be related or not.
I expected that
mvn clean install
will run my processors on all java files in classpath, and output the result in a specific folder.Need help on this !
thanks !
The text was updated successfully, but these errors were encountered: