On 08/22/2015 04:32 PM, Emmanuel Lécharny wrote:
> Le 22/08/15 15:45, Kiran Ayyagari a écrit :
>> On Sat, Aug 22, 2015 at 6:23 PM, Emmanuel Lécharny <[email protected]>
>> wrote:
>>
>>> Hi guys,
>>>
>>> I have started working on the first kerby release, and there are a few
>>> things that need to be corrected.
>>>
>>> I already fixed the rat warnings (basically, .pmd, .pmdruleset.xml and
>>> bin dir had to be ignored, and I added 2 headers in log4j.properies).
>>>
>>> I also added a scm tag in the main pom.xml.
>>>
>>> Now, the next thing is the version. I'm quite sure youwant to cut a RC
>>> before a 1.0, so I guess the version should be 1.0-RC1-SNAPSHOT instead
>>> of 1.0-SNAPSHOT in all the poms.
>>>
>>> +1
>
> Ok, tehre are *many* things that go wrong when trying to cut a release.
> I have fixed some of them, but it's far from over.
>
> Typically, when building with Java 8, we get a hell lot of errors
> because of the missing Javadoc (or incorrect part of it).
>
> Then the project does not have the default apache pom parent. I have
> added it, but then a lot of duplications occur.
>
> I think there is a lot to do in order to clean the project before we are
> able to cut a release. I'll check a bit of that later this week-end, but
> I suggest some of you try to run the javadoc build with Java 8 and fix
> what's wrong.
Ah, I remember that Javadoc thing when I released Studio. The simplest
workaround is to disable the Java8 Javadoc linter by adding a property:
<properties>
...
<!-- Disable Java8 javadoc linter -->
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
Of course fixing all the issues would be better...
Kind Regards,
Stefan