[
https://issues.apache.org/jira/browse/SOLR-3431?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13266898#comment-13266898
]
Steven Rowe commented on SOLR-3431:
-----------------------------------
Caveat: I have never done this. That said:
* You shouldn't be adding a dependency on slf4j-jdk14.
* Your overlay should refer to your dependency on the solr war, something like
(untested!):
{code:xml}
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.2</version>
<configuration>
<overlays>
<overlay>
<id>exclude-slf4j-jdk14</id>
<groupId>org.apache.solr</groupId>
<artifactId>solr</artifactId>
<excludes>
<exclude>WEB-INF/lib/slf4j-jdk14-1.6.4.jar</exclude>
</excludes>
</overlay>
</overlays>
</configuration>
</plugin>
{code}
> Make dist-war-excl-slf4j target available in the Maven repository
> -----------------------------------------------------------------
>
> Key: SOLR-3431
> URL: https://issues.apache.org/jira/browse/SOLR-3431
> Project: Solr
> Issue Type: Improvement
> Affects Versions: 4.0
> Reporter: Neil Hooey
> Priority: Minor
> Labels: maven, slf4j
>
> Since SOLR-2487 was closed, a new build target {{dist-war-excl-slf4j}} was
> created for the Ant build, but this war file isn't in Maven yet.
> Users who want to build a Solr war with Maven and without slf4j included have
> to expand the war file and delete the {{WEB-INF/lib/slf4j-jdk14-1.6.4.jar}}
> file.
> With this target in Maven, expanding the war won't be necessary.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]