You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Steve Rowe (JIRA)" <ji...@apache.org> on 2013/04/26 16:30:16 UTC

[jira] [Commented] (SOLR-4768) The Solr war produced by generate-maven-artifacts should not contain logging jars

    [ https://issues.apache.org/jira/browse/SOLR-4768?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13642892#comment-13642892 ] 

Steve Rowe commented on SOLR-4768:
----------------------------------

Here's the patch:

{code:java}
Index: solr/build.xml
===================================================================
--- solr/build.xml	(revision 1476218)
+++ solr/build.xml	(working copy)
@@ -353,7 +353,6 @@
   <target name="dist-war"
           description="Creates the Solr WAR Distribution file.">
     <ant dir="webapp" target="dist" inheritall="false">
-      <property name="exclude.from.war" value="*slf4j*,log4j-*" />
       <propertyset refid="uptodate.and.compiled.properties"/>
     </ant>
   </target>
Index: solr/webapp/build.xml
===================================================================
--- solr/webapp/build.xml	(revision 1476218)
+++ solr/webapp/build.xml	(working copy)
@@ -20,7 +20,7 @@
 
   <import file="../common-build.xml"/>
 
-	<property name="exclude.from.war" value="" />
+  <property name="exclude.from.war" value="*slf4j*,log4j-*" />
   <property name="solr.war.suffix" value="" />
 	
   <target name="test" depends="compile-test-solr-core">
{code}
                
> The Solr war produced by generate-maven-artifacts should not contain logging jars
> ---------------------------------------------------------------------------------
>
>                 Key: SOLR-4768
>                 URL: https://issues.apache.org/jira/browse/SOLR-4768
>             Project: Solr
>          Issue Type: Bug
>          Components: Build
>    Affects Versions: 4.3
>            Reporter: Steve Rowe
>            Assignee: Steve Rowe
>
> I know why the two .wars are different:
> The binary package Solr war's target chain is:
>   {noformat}'package'->'create-package'->'dist'->'dist-war'->webapp:'dist'{noformat}
> The maven Solr war's target chain is:
>   {noformat}'generate-maven-artifacts'->webapp:'dist-maven'->webapp:'dist'{noformat}
> So both create the war using webapp:'dist', but only 'dist-war' passes in a modified 'exclude.from.war' property definition (which is empty by default):
>   {code:xml}<property name="exclude.from.war" value="*slf4j*,log4j-*" />{code}
> As a result, the maven Solr war contains logging jars while the official war does not.
> I think the fix is to make the above the default setting, rather than passing in a non-default property value from 'dist-war'.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org