Skip to content

Commit

Permalink
jboss-logging-tool config (not working)
Browse files Browse the repository at this point in the history
  • Loading branch information
mojavelinux committed Dec 21, 2010
1 parent eb924c8 commit 1e39919
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions api/pom.xml
Expand Up @@ -51,10 +51,56 @@
<scope>provided</scope>
</dependency>

<!-- need for generation of type-safe loggers -->
<!-- jboss-logging-tooling is currently not working -->
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging-tools</artifactId>
<version>1.0.0.Beta1</version>
<scope>provided</scope>
</dependency>

</dependencies>

<build>
<plugins>
<!-- jboss-logging-tooling is currently not working -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>1.3.7</version>
<executions>
<execution>
<id>process</id>
<goals>
<goal>process</goal>
</goals>
<phase>process-sources</phase>
<configuration>
<processors>
<processor>org.jboss.logging.LoggingToolsProcessor</processor>
</processors>
</configuration>
</execution>
</executions>
<!-- dependency not working in this location -->
<!--
<dependencies>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging-tools</artifactId>
<version>1.0.0.Beta1</version>
<scope>compile</scope>
</dependency>
</dependencies>
-->
</plugin>
<!-- Skip test phase in API module -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 1e39919

Please sign in to comment.