See my other mail... I think thats really not helping us :(

Bye,
Norman


2011/6/12  <[email protected]>:
> Author: rdonkin
> Date: Sun Jun 12 14:44:54 2011
> New Revision: 1134931
>
> URL: http://svn.apache.org/viewvc?rev=1134931&view=rev
> Log:
> JAMES-1263 An artifact which appassembler depends has had it's public license 
> removed. Best to avoid running it until this is cleared up.
>
> Modified:
>    james/server/trunk/container-spring/pom.xml
>
> Modified: james/server/trunk/container-spring/pom.xml
> URL: 
> http://svn.apache.org/viewvc/james/server/trunk/container-spring/pom.xml?rev=1134931&r1=1134930&r2=1134931&view=diff
> ==============================================================================
> --- james/server/trunk/container-spring/pom.xml (original)
> +++ james/server/trunk/container-spring/pom.xml Sun Jun 12 14:44:54 2011
> @@ -42,12 +42,15 @@
>
>   <build>
>     <plugins>
> +<!--
> +There is no longer a clear public license for a dependent artifact in Maven 
> central.
> +Commenting out until this is resolved
>       <plugin>
>         <groupId>org.codehaus.mojo</groupId>
>         <artifactId>appassembler-maven-plugin</artifactId>
>         <version>1.1.1</version>
>         <configuration>
> -          <!-- Include etc/ in the beginning of the classpath declaration in 
> the bin scripts -->
> +          <!- - Include etc/ in the beginning of the classpath declaration 
> in the bin scripts - ->
>           
> <includeConfigurationDirectoryInClasspath>true</includeConfigurationDirectoryInClasspath>
>           <configurationDirectory>conf</configurationDirectory>
>           <target>${project.build.directory}/appassembler</target>
> @@ -55,9 +58,9 @@
>           <repositoryName>lib</repositoryName>
>           
> <includeConfigurationDirectoryInClasspath>true</includeConfigurationDirectoryInClasspath>
>           <environmentSetupFileName>setenv</environmentSetupFileName>
> -          <!--  set some sane defaults for memory -->
> +          <!- -  set some sane defaults for memory - ->
>           <extraJvmArguments>-Xms128m -Xmx512m 
> -Djava.system.class.loader=org.apache.james.container.spring.context.JamesClassLoader
>  ${jmx.system-properties} ${javamail.system-properties} 
> ${james.system-properties}</extraJvmArguments>
> -          <!-- Generate bin scripts for windows and unix per default -->
> +          <!- - Generate bin scripts for windows and unix per default - ->
>           <platforms>
>             <platform>windows</platform>
>             <platform>unix</platform>
> @@ -65,9 +68,9 @@
>           <programs>
>             <program>
>               <mainClass>org.apache.james.container.spring.Main</mainClass>
> -              <!-- call it only run because appassemble will add .bat by 
> default on windows -->
> +              <!- - call it only run because appassemble will add .bat by 
> default on windows - ->
>               <name>run</name>
> -              <!-- Only generate windows bat script for this application -->
> +              <!- - Only generate windows bat script for this application - 
> ->
>               <platforms>
>                 <platform>windows</platform>
>               </platforms>
> @@ -75,18 +78,18 @@
>             <program>
>               <mainClass>org.apache.james.container.spring.Main</mainClass>
>               <name>run.sh</name>
> -              <!-- Only generate unix shell script for this application -->
> +              <!- - Only generate unix shell script for this application - ->
>               <platforms>
>                 <platform>unix</platform>
>               </platforms>
>             </program>
>
> -            <!-- This create the scripts for the command line administration 
> client. Maybe this should better be moved to the cli module, but I'm not sure 
> yet -->
> +            <!- - This create the scripts for the command line 
> administration client. Maybe this should better be moved to the cli module, 
> but I'm not sure yet - ->
>             <program>
>               <mainClass>org.apache.james.cli.ServerCmd</mainClass>
> -              <!-- call it only run because appassemble will add .bat by 
> default on windows -->
> +              <!- - call it only run because appassemble will add .bat by 
> default on windows - ->
>               <name>james-cli</name>
> -              <!-- Only generate windows bat script for this application -->
> +              <!- - Only generate windows bat script for this application - 
> ->
>               <platforms>
>                 <platform>windows</platform>
>               </platforms>
> @@ -94,7 +97,7 @@
>             <program>
>               <mainClass>org.apache.james.cli.ServerCmd</mainClass>
>               <name>james-cli.sh</name>
> -              <!-- Only generate unix shell script for the client -->
> +              <!- - Only generate unix shell script for the client - ->
>               <platforms>
>                 <platform>unix</platform>
>               </platforms>
> @@ -240,22 +243,22 @@
>             <configuration>
>
>               <tasks>
> -                <!-- this is only needed because windows freak out on long 
> cmd lines, so we strip of the absolute path
> +                <!- - this is only needed because windows freak out on long 
> cmd lines, so we strip of the absolute path
>                      from the lib dir to make windows happy again
> -                -->
> +                - ->
>                 <replace 
> file="${project.build.directory}/appassembler/bin/run.bat" 
> token="%BASEDIR%\lib" value="..\lib" />
>                 <replace 
> file="${project.build.directory}/appassembler/bin/run.sh" token="setenv" 
> value="setenv.sh" />
>
> -                <!-- this is needed because appassembler is not really smart 
> on some settings -->
> +                <!- - this is needed because appassembler is not really 
> smart on some settings - ->
>                 <replace 
> file="${project.build.directory}/appassembler/jsw/james/conf/wrapper.conf" 
> token="lib/wrapper.jar" value="%REPO_DIR%/wrapper.jar" />
>                 <replace 
> file="${project.build.directory}/appassembler/jsw/james/bin/james" 
> token="logs" value="var" />
>
> -                <!--  copy the linux wrapper-linux-x86-32 to wrapper, so use 
> it as default if no matching wrapper was found-->
> +                <!- -  copy the linux wrapper-linux-x86-32 to wrapper, so 
> use it as default if no matching wrapper was found- ->
>                 <copy 
> file="${project.build.directory}/appassembler/jsw/james/bin/wrapper-linux-x86-32"
>  tofile="${project.build.directory}/appassembler/jsw/james/bin/wrapper" />
>
> -                <!-- this is only needed because windows freak out on long 
> cmd lines, so we strip of the absolute path
> +                <!- - this is only needed because windows freak out on long 
> cmd lines, so we strip of the absolute path
>                      from the lib dir to make windows happy again
> -                -->
> +                - ->
>                 <replace 
> file="${project.build.directory}/appassembler/bin/james-cli.bat" 
> token="%BASEDIR%\lib" value="..\lib" />
>                 <replace 
> file="${project.build.directory}/appassembler/bin/james-cli.sh" 
> token="setenv" value="setenv.sh" />
>               </tasks>
> @@ -267,7 +270,7 @@
>           </execution>
>         </executions>
>       </plugin>
> -
> +      -->
>       <plugin>
>         <artifactId>maven-assembly-plugin</artifactId>
>         <configuration>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to