Skip to content
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

WELD-1933 Add profile to activate weld-logging-tools annotation proce… #972

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions impl/pom.xml
Expand Up @@ -132,9 +132,9 @@
<configuration>
<!-- This path is not used for default properties files yet -->
<!-- https://issues.jboss.org/browse/LOGTOOL-65 -->
<compilerArgument>
-AgeneratedTranslationFilesPath=${project.build.directory}/generated-translation-files
</compilerArgument>
<compilerArguments>
<AgeneratedTranslationFilesPath>${project.build.directory}/generated-translation-files</AgeneratedTranslationFilesPath>
</compilerArguments>
</configuration>
</plugin>
<plugin>
Expand Down
31 changes: 31 additions & 0 deletions pom.xml
Expand Up @@ -64,6 +64,7 @@
<shrinkwrap.descriptors.version>1.1.0-beta-1</shrinkwrap.descriptors.version>
<testng.version>5.10</testng.version>
<weld.api.version>2.2.SP4</weld.api.version>
<weld.logging.tools.version>1.0.0.CR1</weld.logging.tools.version>
<wildfly.arquillian.version>1.0.0.Alpha2</wildfly.arquillian.version>
</properties>

Expand Down Expand Up @@ -616,6 +617,36 @@
<module>bundles/osgi</module>
</modules>
</profile>
<profile>
<id>log-msg-idx</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>log-msg-idx</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-logging-tools</artifactId>
<version>${weld.logging.tools.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArguments>
<AprojectVersion>${project.version}</AprojectVersion>
<Aartifact>${project.groupId}:${project.artifactId}</Aartifact>
</compilerArguments>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>