First look notes:
None of the javadoc jars have the required NOTICE/LICENSE/DISCLAIMER in them.   
I saw your note on the maven list about the bug in javadoc plugin, but I did 
provide a way to get them there.  [1]     Another alternative is to remove 
the javadoc jars and not release them.  

Instead of DISCLAIMER(.txt) that I think is normal for incubator projects, 
you're using INCUBATOR_NOTICE.txt.   I don't think it's an issue, but I'd 
rather see consistency in the incubator projects. 

Dan


[1]  In the "maven-plugin-parent" pom, you can add the following snippet, then 
you can actually REMOVE the META-INF/LICENSE and 
META-INF/INCUBATOR_NOTICE.txt files from your source tree.  (You can 
optionally remove the NOTICE files as well as this will create new ones based 
on the dependencies.   However, if the NOTICE file is left, it will use it 
instead of creating a new one.) 

<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>
                    <preProjectText>Put the Oracle thing here in
  a cdata section type of thing.
                    </preProjectText>
                </properties>
            </configuration>
        </execution>
    </executions>
</plugin>


On Thursday 22 February 2007 02:36, Matthias Wessendorf wrote:
> The Trinidad community voted to release the the maven
> plugins as a 1.0.0-incubating release. These plugins are required for the
> maven build of the "core" code of the Trinidad Podling. To fulfill the
> incubator guides, we like to ask you guys, the Incubator PMC, for a
> permission to release those maven plugins.
>
> There were seven +1 votes and the vote has been tracked at [1].
> (5 binding)
>
> The plugins are documented at [2] and our release notes inculde
> the bugs that have been addressed ([3]).
>
> The plugins are available as source and bin inside the following
> m2 staging repo (see [4]).
>
>
> Thanks
> Matthias
>
>
> [1] http://tinyurl.com/3dpa5g
> [2] http://incubator.apache.org/adffaces/plugins/index.html
> [3]
> http://wiki.apache.org/myfaces/ADF_Faces/plugins_release_1_0_0-incubating
> [4] http://people.apache.org/~matzew/stage/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]

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

Reply via email to