+1

Stéphane

On 2/15/07, Daniel Kulp <[EMAIL PROTECTED]> wrote:


I'd like to call a vote for the release of version 1.0-alpha-2 of the
maven-remote-resources-plugin.   Jason has staged it at:

http://people.apache.org/~jvanzyl/staging/maven-remote-resources-plugin/

This release fixes 7 bugs and adds 3 new features that should make it much
more usable for the projects.   In particular for me, it fixes MRRESOURCES-7
which is required for incubator projects since they need additional resources
(disclaimer) in the jar.

To give it a try, you can add to your settings.xml file a profile to enable
it.

<profile>
    <id>remoteresources-staging</id>
   <pluginRepositories>
     <pluginRepository>
       <id>Remote resources plugin staging repository</id>
<url>http://people.apache.org/~jvanzyl/staging/maven-remote-resources-plugin/</url>
       <snapshots>
         <enabled>false</enabled>
       </snapshots>
     </pluginRepository>
   </pluginRepositories>
   <build>
<plugins>
 <plugin>
    <artifactId>maven-remote-resources-plugin</artifactId>
    <version>1.0-alpha-2</version>
    <executions>
        <execution>
            <goals>
                <goal>process</goal>
            </goals>
            <configuration>
                <resourceBundles>
<resourceBundle>org.apache:apache-jar-resource-bundle:1.1</resourceBundle>
<resourceBundle>org.apache:apache-incubator-disclaimer-resource-bundle:1.0</resourceBundle>
                </resourceBundles>
                <properties>
                    <addLicense>true</addLicense>
                </properties>
            </configuration>
        </execution>
    </executions>
</plugin>
<plugins>
  </build>
</profile>

Then run "mvn -Premoteresources-staging -U" to activate it.

Here's my +1.

Dan


Release Notes - Maven 2.x Remote Resources Plugin - Version 1.0-alpha-2

** Bug
    * [MRRESOURCES-1] - Index for resourceBundle error messages is wrong
    * [MRRESOURCES-3] - Plugin does not populate the projects needed for the
notices file
    * [MRRESOURCES-4] - If not resourceBundles specified (or element
miss-spelled) you get a NullPointerException
    * [MRRESOURCES-5] - Uses hardcodes src/main/resources for location of
overriding resources
    * [MRRESOURCES-6] - Remote resources are not added to test jars
    * [MRRESOURCES-7] - Multiple <resourceBundle> entries are ignored
    * [MRRESOURCES-10] - Generated eclipse projects complain about duplicated
resources


** New Feature
    * [MRRESOURCES-2] - Support an "append" mode for local resources
    * [MRRESOURCES-8] - Should be able to pass additional properties into
velocity
    * [MRRESOURCES-9] - For apache-jar-resource-bundle, would be nice to
optionally have license information in the NOTICE


--
J. Daniel Kulp
Principal Engineer
IONA
P: 781-902-8727    C: 508-380-7194
[EMAIL PROTECTED]

---------------------------------------------------------------------
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