Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] Problems with their own annotation processor and tycho-compiler (0.21)

Hi there,

I have tried unsuccessfully own annotation processor during tycho-compiler:compile to use.


In the POM of the annotation processor is available as a dependency.

The plugin configuration looks like this:
---

  <plugin>

    <groupId>org.eclipse.tycho</groupId>

    <artifactId>tycho-compiler-plugin</artifactId>

    <version>${tycho.version}</version>

    <configuration>

      <compilerArgs>

        <arg>-Ajavax.ejb.module.name=module-name</arg>

        <arg>-Ajavax.ejb.application.name=application-name</arg>

        <arg>-Aorg.jboss.distinct.name</arg>

        <arg>-verbose</arg>

      </compilerArgs>

      <verbose>true</verbose>

    </configuration>

  </plugin>

---

I have in the processor itself normal System.out.println (..) used to debug, but unfortunately you will not see in the log / console.

Can it be that is not visible to the tycho-compiler of the annotation processor? He is just a normal JAR and not a OSGi bundle.

Is there a way to run the annotation processor?

 


Thank you so much.

Greeting Ronald.

 


Back to the top