Re: [maven-source-plugin] 3.3.0 incompatible with 3.2.1

2023-08-15 Thread Gary Gregory
On Tue, Aug 15, 2023 at 2:17 PM Konrad Windszus  wrote:
>
> Hi,
> The error message is introduced with 
> https://issues.apache.org/jira/browse/MSOURCES-121 in 3.3.0:
> If you have two goals both attaching an artifact with the same classifier and 
> extension to the current project they will overwrite each other.
> Please check which classifiers are used for both goals:
> By default they should differ: 
> https://maven.apache.org/plugins/maven-source-plugin/test-jar-no-fork-mojo.html#classifier
>  and 
> https://maven.apache.org/plugins/maven-source-plugin/jar-no-fork-mojo.html#classifier
>
> If it can be reproduced without the same classifier parameter, please raise a 
> JIRA issue.

Hi,

We don't specify classifiers and we need to create two jars: the
source jar and the test source jar. I created
https://issues.apache.org/jira/browse/MSOURCES-143

TY!
Gary

>
> Thanks,
> Konrad
>
>
>
>
> > On 15. Aug 2023, at 19:48, Gary Gregory  wrote:
> >
> > On Tue, Aug 15, 2023 at 12:42 PM Michael Osipov  > > wrote:
> >>
> >> Am 2023-08-15 um 14:57 schrieb Gary Gregory:
> >>> Hi All,
> >>>
> >>> In Commons Parent [1], we want to configure child POMs to build both
> >>> source and test sources, so we say (among other things):
> >>>
> >>>   
> >>> maven-source-plugin
> >>> 
> >>>   
> >>> create-source-jar
> >>> 
> >>>   jar-no-fork
> >>>   test-jar-no-fork
> >>> 
> >>>   
> >>> 
> >>>   
> >>>
> >>> Which appears to no longer work in 3.3.0:
> >>>
> >>> [ERROR] Failed to execute goal
> >>> org.apache.maven.plugins:maven-source-plugin:3.3.0:jar-no-fork
> >>> (create-source-jar) on project commons-cli: Presumably you have
> >>> configured maven-source-plugn to execute twice times in your build.
> >>> You have to configure a classifier for at least on of them. -> [Help
> >>> 1]
> >>>
> >>> Am I missing something?
> >>
> >> Do you invoke two overlapping phases? E.g., package and install?
> >
> > I get the error with 'mvn clean package'
> >
> > Gary
> > PS: There is also a typo in the error message: maven-source-plugn ->
> > maven-source-plugin
> >
> >>
> >>
> >> -
> >> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org 
> >> 
> >> For additional commands, e-mail: dev-h...@maven.apache.org 
> >> 
> >>
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org 
> > 
> > For additional commands, e-mail: dev-h...@maven.apache.org 
> > 

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [maven-source-plugin] 3.3.0 incompatible with 3.2.1

2023-08-15 Thread Konrad Windszus

> PS: There is also a typo in the error message: maven-source-plugn ->
> maven-source-plugin
> 
Reported and fixed already in master: 
https://github.com/apache/maven-source-plugin/commit/1edeea47f80bc5c5903e88c1adbff56501248a8b



Re: [maven-source-plugin] 3.3.0 incompatible with 3.2.1

2023-08-15 Thread Konrad Windszus
Hi,
The error message is introduced with 
https://issues.apache.org/jira/browse/MSOURCES-121 in 3.3.0:
If you have two goals both attaching an artifact with the same classifier and 
extension to the current project they will overwrite each other.
Please check which classifiers are used for both goals:
By default they should differ: 
https://maven.apache.org/plugins/maven-source-plugin/test-jar-no-fork-mojo.html#classifier
 and 
https://maven.apache.org/plugins/maven-source-plugin/jar-no-fork-mojo.html#classifier

If it can be reproduced without the same classifier parameter, please raise a 
JIRA issue.

Thanks,
Konrad




> On 15. Aug 2023, at 19:48, Gary Gregory  wrote:
> 
> On Tue, Aug 15, 2023 at 12:42 PM Michael Osipov  > wrote:
>> 
>> Am 2023-08-15 um 14:57 schrieb Gary Gregory:
>>> Hi All,
>>> 
>>> In Commons Parent [1], we want to configure child POMs to build both
>>> source and test sources, so we say (among other things):
>>> 
>>>   
>>> maven-source-plugin
>>> 
>>>   
>>> create-source-jar
>>> 
>>>   jar-no-fork
>>>   test-jar-no-fork
>>> 
>>>   
>>> 
>>>   
>>> 
>>> Which appears to no longer work in 3.3.0:
>>> 
>>> [ERROR] Failed to execute goal
>>> org.apache.maven.plugins:maven-source-plugin:3.3.0:jar-no-fork
>>> (create-source-jar) on project commons-cli: Presumably you have
>>> configured maven-source-plugn to execute twice times in your build.
>>> You have to configure a classifier for at least on of them. -> [Help
>>> 1]
>>> 
>>> Am I missing something?
>> 
>> Do you invoke two overlapping phases? E.g., package and install?
> 
> I get the error with 'mvn clean package'
> 
> Gary
> PS: There is also a typo in the error message: maven-source-plugn ->
> maven-source-plugin
> 
>> 
>> 
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org 
>> 
>> For additional commands, e-mail: dev-h...@maven.apache.org 
>> 
>> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org 
> 
> For additional commands, e-mail: dev-h...@maven.apache.org 
> 


Re: [maven-source-plugin] 3.3.0 incompatible with 3.2.1

2023-08-15 Thread Gary Gregory
On Tue, Aug 15, 2023 at 12:42 PM Michael Osipov  wrote:
>
> Am 2023-08-15 um 14:57 schrieb Gary Gregory:
> > Hi All,
> >
> > In Commons Parent [1], we want to configure child POMs to build both
> > source and test sources, so we say (among other things):
> >
> >
> >  maven-source-plugin
> >  
> >
> >  create-source-jar
> >  
> >jar-no-fork
> >test-jar-no-fork
> >  
> >
> >  
> >
> >
> > Which appears to no longer work in 3.3.0:
> >
> > [ERROR] Failed to execute goal
> > org.apache.maven.plugins:maven-source-plugin:3.3.0:jar-no-fork
> > (create-source-jar) on project commons-cli: Presumably you have
> > configured maven-source-plugn to execute twice times in your build.
> > You have to configure a classifier for at least on of them. -> [Help
> > 1]
> >
> > Am I missing something?
>
> Do you invoke two overlapping phases? E.g., package and install?

I get the error with 'mvn clean package'

Gary
PS: There is also a typo in the error message: maven-source-plugn ->
maven-source-plugin

>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [maven-source-plugin] 3.3.0 incompatible with 3.2.1

2023-08-15 Thread Michael Osipov

Am 2023-08-15 um 14:57 schrieb Gary Gregory:

Hi All,

In Commons Parent [1], we want to configure child POMs to build both
source and test sources, so we say (among other things):

   
 maven-source-plugin
 
   
 create-source-jar
 
   jar-no-fork
   test-jar-no-fork
 
   
 
   

Which appears to no longer work in 3.3.0:

[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-source-plugin:3.3.0:jar-no-fork
(create-source-jar) on project commons-cli: Presumably you have
configured maven-source-plugn to execute twice times in your build.
You have to configure a classifier for at least on of them. -> [Help
1]

Am I missing something?


Do you invoke two overlapping phases? E.g., package and install?


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: maven-source-plugin broken on Windows + JDK8

2020-07-31 Thread Robert Scholte
Letting Maven sleep for 2 seconds between the 2 executions doesn't help.
There's something else going wrong.
Any Linux user that can solve this?

thanks,
Robert
On 27-7-2020 09:32:10, Slawomir Jaranowski  wrote:
jdk can be good point,
pass build use: Java version: 1.8.0_241, vendor: Oracle Corporation,
runtime: /usr/local/asfpackages/java/jdk1.8.0_241/jre
failed has: Java version: 1.8.0_252, vendor: Oracle Corporation,
runtime: /usr/local/asfpackages/java/openjdk-8u252-b09/jre

on mac os with: Java version: 1.8.0_252, vendor: AdoptOpenJDK, runtime:
/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/jre
build pass successful

pon., 27 lip 2020 o 08:31 Robert Scholte napisał(a):

> My bad, it is indeed the Ubuntu that is failing.
> It might be caused be JDK-8177809[1]
> IIRC when using Path instead of File you won't have this issue.
>
> Robert
>
> [1] https://bugs.openjdk.java.net/browse/JDK-8177809
>
>
> On 27-7-2020 07:31:41, Christian Stein wrote:
> Hi,
>
> Why do you think it's the Windows node, Robert?
>
> For me, it [1] says 5 times: linux-jdk8-m3.6.x_build
> The file separator chars displayed in the log file also points to a Linux
> node:
>
> >
> > [INFO] The post-build script did not succeed. assert buildLog.text =~
> > /(?i) Archive .*${sourcesJarFileName} is uptodate/
> > | | | |
> > | | |
> > empty-source-directory-1.0-SNAPSHOT-sources.jar
> > | | java.util.regex.Matcher[pattern=(?i) Archive
> > .*empty-source-directory-1.0-SNAPSHOT-sources.jar is uptodate
> > region=0,44353 lastmatch=]
> > | Picked up JAVA_TOOL_OPTIONS:
> >
> -Dmaven.ext.class.path="/home/jenkins/jenkins-slave/workspace/n-box_maven-source-plugin_master@3
> > @2@tmp/withMaven42d62564/pipeline-maven-spy.jar"
> >
> -Dorg.jenkinsci.plugins.pipeline.maven.reportsFolder="/home/jenkins/jenkins-slave/workspace/n-box_maven-source-plugin_master@3
> > @2@tmp/withMaven42d62564"
>
>
> The underlying reason for the failure is not clear to me.
> IIUC, the log says a new -sources.jar was created for an IT
> named MSOURCES-95.
> But the expectation is, that an "uptodate" check prevents a recreation of
> the -sources.jar file?
>
> Cheers,
> Christian
>
> [1]
>
> https://builds.apache.org/blue/organizations/jenkins/maven-box%2Fmaven-source-plugin/activity
>
>
>
> On Sun, Jul 26, 2020 at 9:56 PM Robert Scholte wrote:
>
> > Anybody willing to analyze why this plugin is broken for a while?[1]
> > It look like there hasn't been a commit since the last success (recent
> > changes only show commits on our Jenkins files)
> >
> > All other master are currently stable.[2]
> >
> > thanks,
> > Robert
> >
> > [1]
> >
> https://builds.apache.org/job/maven-box/job/maven-source-plugin/job/master/
> > [2]
> >
> https://builds.apache.org/view/M-R/view/Maven/job/dist-tool-plugin/site/dist-tool-master-jobs.html
> >
> >
>


--
Sławomir Jaranowski


Re: maven-source-plugin broken on Windows + JDK8

2020-07-27 Thread Slawomir Jaranowski
jdk can be good point,
pass build use: Java version: 1.8.0_241, vendor: Oracle Corporation,
runtime: /usr/local/asfpackages/java/jdk1.8.0_241/jre
failed has: Java version: 1.8.0_252, vendor: Oracle Corporation,
runtime: /usr/local/asfpackages/java/openjdk-8u252-b09/jre

on mac os with: Java version: 1.8.0_252, vendor: AdoptOpenJDK, runtime:
/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/jre
build pass successful

pon., 27 lip 2020 o 08:31 Robert Scholte  napisał(a):

> My bad, it is indeed the Ubuntu that is failing.
> It might be caused be JDK-8177809[1]
> IIRC when using Path instead of File you won't have this issue.
>
> Robert
>
> [1] https://bugs.openjdk.java.net/browse/JDK-8177809
>
>
> On 27-7-2020 07:31:41, Christian Stein  wrote:
> Hi,
>
> Why do you think it's the Windows node, Robert?
>
> For me, it [1] says 5 times: linux-jdk8-m3.6.x_build
> The file separator chars displayed in the log file also points to a Linux
> node:
>
> >
> > [INFO] The post-build script did not succeed. assert buildLog.text =~
> > /(?i) Archive .*${sourcesJarFileName} is uptodate/
> > | | | |
> > | | |
> > empty-source-directory-1.0-SNAPSHOT-sources.jar
> > | | java.util.regex.Matcher[pattern=(?i) Archive
> > .*empty-source-directory-1.0-SNAPSHOT-sources.jar is uptodate
> > region=0,44353 lastmatch=]
> > | Picked up JAVA_TOOL_OPTIONS:
> >
> -Dmaven.ext.class.path="/home/jenkins/jenkins-slave/workspace/n-box_maven-source-plugin_master@3
> > @2@tmp/withMaven42d62564/pipeline-maven-spy.jar"
> >
> -Dorg.jenkinsci.plugins.pipeline.maven.reportsFolder="/home/jenkins/jenkins-slave/workspace/n-box_maven-source-plugin_master@3
> > @2@tmp/withMaven42d62564"
>
>
> The underlying reason for the failure is not clear to me.
> IIUC, the log says a new -sources.jar was created for an IT
> named MSOURCES-95.
> But the expectation is, that an "uptodate" check prevents a recreation of
> the -sources.jar file?
>
> Cheers,
> Christian
>
> [1]
>
> https://builds.apache.org/blue/organizations/jenkins/maven-box%2Fmaven-source-plugin/activity
>
>
>
> On Sun, Jul 26, 2020 at 9:56 PM Robert Scholte wrote:
>
> > Anybody willing to analyze why this plugin is broken for a while?[1]
> > It look like there hasn't been a commit since the last success (recent
> > changes only show commits on our Jenkins files)
> >
> > All other master are currently stable.[2]
> >
> > thanks,
> > Robert
> >
> > [1]
> >
> https://builds.apache.org/job/maven-box/job/maven-source-plugin/job/master/
> > [2]
> >
> https://builds.apache.org/view/M-R/view/Maven/job/dist-tool-plugin/site/dist-tool-master-jobs.html
> >
> >
>


-- 
Sławomir Jaranowski


Re: maven-source-plugin broken on Windows + JDK8

2020-07-26 Thread Robert Scholte
My bad, it is indeed the Ubuntu that is failing.
It might be caused be JDK-8177809[1]
IIRC when using Path instead of File you won't have this issue.

Robert

[1] https://bugs.openjdk.java.net/browse/JDK-8177809


On 27-7-2020 07:31:41, Christian Stein  wrote:
Hi,

Why do you think it's the Windows node, Robert?

For me, it [1] says 5 times: linux-jdk8-m3.6.x_build
The file separator chars displayed in the log file also points to a Linux
node:

>
> [INFO] The post-build script did not succeed. assert buildLog.text =~
> /(?i) Archive .*${sourcesJarFileName} is uptodate/
> | | | |
> | | |
> empty-source-directory-1.0-SNAPSHOT-sources.jar
> | | java.util.regex.Matcher[pattern=(?i) Archive
> .*empty-source-directory-1.0-SNAPSHOT-sources.jar is uptodate
> region=0,44353 lastmatch=]
> | Picked up JAVA_TOOL_OPTIONS:
> -Dmaven.ext.class.path="/home/jenkins/jenkins-slave/workspace/n-box_maven-source-plugin_master@3
> @2@tmp/withMaven42d62564/pipeline-maven-spy.jar"
> -Dorg.jenkinsci.plugins.pipeline.maven.reportsFolder="/home/jenkins/jenkins-slave/workspace/n-box_maven-source-plugin_master@3
> @2@tmp/withMaven42d62564"


The underlying reason for the failure is not clear to me.
IIUC, the log says a new -sources.jar was created for an IT
named MSOURCES-95.
But the expectation is, that an "uptodate" check prevents a recreation of
the -sources.jar file?

Cheers,
Christian

[1]
https://builds.apache.org/blue/organizations/jenkins/maven-box%2Fmaven-source-plugin/activity



On Sun, Jul 26, 2020 at 9:56 PM Robert Scholte wrote:

> Anybody willing to analyze why this plugin is broken for a while?[1]
> It look like there hasn't been a commit since the last success (recent
> changes only show commits on our Jenkins files)
>
> All other master are currently stable.[2]
>
> thanks,
> Robert
>
> [1]
> https://builds.apache.org/job/maven-box/job/maven-source-plugin/job/master/
> [2]
> https://builds.apache.org/view/M-R/view/Maven/job/dist-tool-plugin/site/dist-tool-master-jobs.html
>
>


Re: maven-source-plugin broken on Windows + JDK8

2020-07-26 Thread Christian Stein
Hi,

Why do you think it's the Windows node, Robert?

For me, it [1] says 5 times: linux-jdk8-m3.6.x_build
The file separator chars displayed in the log file also points to a Linux
node:

>
> [INFO]   The post-build script did not succeed. assert buildLog.text =~
> /(?i) Archive .*${sourcesJarFileName} is uptodate/
>|||   |
>|||
> empty-source-directory-1.0-SNAPSHOT-sources.jar
>||java.util.regex.Matcher[pattern=(?i) Archive
> .*empty-source-directory-1.0-SNAPSHOT-sources.jar is uptodate
> region=0,44353 lastmatch=]
>|Picked up JAVA_TOOL_OPTIONS:
> -Dmaven.ext.class.path="/home/jenkins/jenkins-slave/workspace/n-box_maven-source-plugin_master@3
> @2@tmp/withMaven42d62564/pipeline-maven-spy.jar"
> -Dorg.jenkinsci.plugins.pipeline.maven.reportsFolder="/home/jenkins/jenkins-slave/workspace/n-box_maven-source-plugin_master@3
> @2@tmp/withMaven42d62564"


The underlying reason for the failure is not clear to me.
IIUC, the log says a new -sources.jar was created for an IT
named  MSOURCES-95.
But the expectation is, that an "uptodate" check prevents a recreation of
the -sources.jar file?

Cheers,
Christian

[1]
https://builds.apache.org/blue/organizations/jenkins/maven-box%2Fmaven-source-plugin/activity



On Sun, Jul 26, 2020 at 9:56 PM Robert Scholte  wrote:

> Anybody willing to analyze why this plugin is broken for a while?[1]
> It look like there hasn't been a commit since the last success (recent
> changes only show commits on our Jenkins files)
>
> All other master are currently stable.[2]
>
> thanks,
> Robert
>
> [1]
> https://builds.apache.org/job/maven-box/job/maven-source-plugin/job/master/
> [2]
> https://builds.apache.org/view/M-R/view/Maven/job/dist-tool-plugin/site/dist-tool-master-jobs.html
>
>


Re: Maven Source Plugin 3.0.0 Question

2015-11-28 Thread Karl Heinz Marbaise

Hi Tibor,

On 11/28/15 9:36 PM, Tibor Digana wrote:

..but I don't understand why you want to have the descriptor in sources jar?


So we could discuss why a site archive needs a descriptor? Why does a 
javadoc archive should have a descriptor 
(https://issues.apache.org/jira/browse/MJAVADOC-431)...at all?


The ideas is that all plugins are behaving in the same 
way...(conventions...)...




Is the plugin buggy or something or it is just arbitrary some reason
found for a release?


The reason for a new release is this:
https://issues.apache.org/jira/issues/?jql=project%20%3D%20MSOURCES%20AND%20fixVersion%20%3D%203.0.0

Kind regards
Karl Heinz Marbaise

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: Maven Source Plugin 3.0.0 Question

2015-11-28 Thread Michael Osipov

Am 2015-11-28 um 23:35 schrieb Tibor Digana:

For me the descriptor was always useless. Do you Karl, Michael mean that
this cofiguration does not work?
http://maven.apache.org/shared/maven-archiver/index.html#class_archive>>



It does not help because it is disabled (hardcoded) in Javadoc Plugin:
https://github.com/apache/maven-plugins/blob/trunk/maven-javadoc-plugin/src/main/java/org/apache/maven/plugin/javadoc/JavadocJar.java#L299


On Sat, Nov 28, 2015 at 11:15 PM, Michael Osipov 
wrote:


Am 2015-11-28 um 21:36 schrieb Tibor Digana:


..but I don't understand why you want to have the descriptor in sources
jar?
Is the plugin buggy or something or it is just arbitrary some reason found
for a release?



Please see MJAVADOC-431 and the PR but I consider them as special cases
and not worthy being of general use.

Michael


On Sat, Nov 28, 2015 at 7:14 PM, Karl Heinz Marbaise 

wrote:

Hi,


at the moment the maven-source-plugin creates archives (source archives)
which do not contain a maven descriptor ...

/META-INF/maven//../pom.xml
/META-INF/maven//../pom.properties

I would like to change the default behaviour to produce this maven
descriptor...in source archives ...

I would think it would make maven-source-plugin to behave the same way as
other plugins aleady do ...and this change would be reasonable for a
major
version change...

WDYT ?

Kind regards
Karl Heinz Marbaise



-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org








-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org








-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: Maven Source Plugin 3.0.0 Question

2015-11-28 Thread Tibor Digana
For me the descriptor was always useless. Do you Karl, Michael mean that
this cofiguration does not work?
http://maven.apache.org/shared/maven-archiver/index.html#class_archive>>

You did not mention Jira # in maven-source-plugin.



On Sat, Nov 28, 2015 at 11:15 PM, Michael Osipov 
wrote:

> Am 2015-11-28 um 21:36 schrieb Tibor Digana:
>
>> ..but I don't understand why you want to have the descriptor in sources
>> jar?
>> Is the plugin buggy or something or it is just arbitrary some reason found
>> for a release?
>>
>
> Please see MJAVADOC-431 and the PR but I consider them as special cases
> and not worthy being of general use.
>
> Michael
>
>
> On Sat, Nov 28, 2015 at 7:14 PM, Karl Heinz Marbaise 
>> wrote:
>>
>> Hi,
>>>
>>> at the moment the maven-source-plugin creates archives (source archives)
>>> which do not contain a maven descriptor ...
>>>
>>> /META-INF/maven//../pom.xml
>>> /META-INF/maven//../pom.properties
>>>
>>> I would like to change the default behaviour to produce this maven
>>> descriptor...in source archives ...
>>>
>>> I would think it would make maven-source-plugin to behave the same way as
>>> other plugins aleady do ...and this change would be reasonable for a
>>> major
>>> version change...
>>>
>>> WDYT ?
>>>
>>> Kind regards
>>> Karl Heinz Marbaise
>>>
>>>
>>>
>>> -
>>> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
>>> For additional commands, e-mail: dev-h...@maven.apache.org
>>>
>>>
>>>
>>
>>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>
>


-- 
Cheers
Tibor


Re: Maven Source Plugin 3.0.0 Question

2015-11-28 Thread Michael Osipov

Am 2015-11-28 um 21:36 schrieb Tibor Digana:

..but I don't understand why you want to have the descriptor in sources jar?
Is the plugin buggy or something or it is just arbitrary some reason found
for a release?


Please see MJAVADOC-431 and the PR but I consider them as special cases 
and not worthy being of general use.


Michael


On Sat, Nov 28, 2015 at 7:14 PM, Karl Heinz Marbaise 
wrote:


Hi,

at the moment the maven-source-plugin creates archives (source archives)
which do not contain a maven descriptor ...

/META-INF/maven//../pom.xml
/META-INF/maven//../pom.properties

I would like to change the default behaviour to produce this maven
descriptor...in source archives ...

I would think it would make maven-source-plugin to behave the same way as
other plugins aleady do ...and this change would be reasonable for a major
version change...

WDYT ?

Kind regards
Karl Heinz Marbaise



-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org








-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: Maven Source Plugin 3.0.0 Question

2015-11-28 Thread Tibor Digana
..but I don't understand why you want to have the descriptor in sources jar?
Is the plugin buggy or something or it is just arbitrary some reason found
for a release?

On Sat, Nov 28, 2015 at 7:14 PM, Karl Heinz Marbaise 
wrote:

> Hi,
>
> at the moment the maven-source-plugin creates archives (source archives)
> which do not contain a maven descriptor ...
>
> /META-INF/maven//../pom.xml
> /META-INF/maven//../pom.properties
>
> I would like to change the default behaviour to produce this maven
> descriptor...in source archives ...
>
> I would think it would make maven-source-plugin to behave the same way as
> other plugins aleady do ...and this change would be reasonable for a major
> version change...
>
> WDYT ?
>
> Kind regards
> Karl Heinz Marbaise
>
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>
>


-- 
Cheers
Tibor


Re: Maven Source Plugin 3.0.0 Question

2015-11-28 Thread Michael Osipov

Am 2015-11-28 um 19:56 schrieb Karl Heinz Marbaise:

Hi Michael,

On 11/28/15 7:43 PM, Michael Osipov wrote:

Am 2015-11-28 um 19:14 schrieb Karl Heinz Marbaise:

Hi,

at the moment the maven-source-plugin creates archives (source archives)
which do not contain a maven descriptor ...

/META-INF/maven//../pom.xml
/META-INF/maven//../pom.properties

I would like to change the default behaviour to produce this maven
descriptor...in source archives ...

I would think it would make maven-source-plugin to behave the same way
as other plugins aleady do ...and this change would be reasonable for a
major version change...

WDYT ?


Why not take the same approach as in MJAVADOC-431? Opt-in for the dev.


Cause at the moment it is exactly so implemented..but i would like to
change that to the default if it makes sense...


That is exactly the issue, just because it might make sense to you, it 
doesn't make to the rest. Personally, I do not see any added value to 
have then by default filled up in Central because those are always 
accompanied by the main artifact. If a project needs to have those by 
default, they can turn it on with a switch.


Do you see general usecases having them by default in the JAR?

Michael


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: Maven Source Plugin 3.0.0 Question

2015-11-28 Thread Karl Heinz Marbaise

Hi Michael,

On 11/28/15 7:43 PM, Michael Osipov wrote:

Am 2015-11-28 um 19:14 schrieb Karl Heinz Marbaise:

Hi,

at the moment the maven-source-plugin creates archives (source archives)
which do not contain a maven descriptor ...

/META-INF/maven//../pom.xml
/META-INF/maven//../pom.properties

I would like to change the default behaviour to produce this maven
descriptor...in source archives ...

I would think it would make maven-source-plugin to behave the same way
as other plugins aleady do ...and this change would be reasonable for a
major version change...

WDYT ?


Why not take the same approach as in MJAVADOC-431? Opt-in for the dev.


Cause at the moment it is exactly so implemented..but i would like to 
change that to the default if it makes sense...


Kind regards
Karl Heinz Marbaise

-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: Maven Source Plugin 3.0.0 Question

2015-11-28 Thread Michael Osipov

Am 2015-11-28 um 19:14 schrieb Karl Heinz Marbaise:

Hi,

at the moment the maven-source-plugin creates archives (source archives)
which do not contain a maven descriptor ...

/META-INF/maven//../pom.xml
/META-INF/maven//../pom.properties

I would like to change the default behaviour to produce this maven
descriptor...in source archives ...

I would think it would make maven-source-plugin to behave the same way
as other plugins aleady do ...and this change would be reasonable for a
major version change...

WDYT ?


Why not take the same approach as in MJAVADOC-431? Opt-in for the dev.

Michael


-
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



Re: [maven-source-plugin] Releasing 2.0.3

2007-04-20 Thread Stephane Nicoll

I have performed the staging release and will cast for the vote right now.

Stéphane

On 4/20/07, Jochen Wiedmann <[EMAIL PROTECTED]> wrote:

Quoting Niall: ping! :-)

On 4/13/07, Niall Pemberton <[EMAIL PROTECTED]> wrote:
> ping!
>
> Niall
>
> On 4/3/07, Jason van Zyl <[EMAIL PROTECTED]> wrote:
> >
> > On 3 Apr 07, at 1:39 PM 3 Apr 07, Jochen Wiedmann wrote:
> >
> > > Hi,
> > >
> > > now that Maria has applied MSOURCES-14, can this release proceed?
> > >
> >
> > I'll check it with the embedder and a few other projects before I
> > give it a thumbs up.
> >
> > jason.
> >
> > > Thanks,
> > >
> > > Jochen
> > >
> > >
> > > --
> > > My cats know that I am a loser who goes out for hunting every day
> > > without ever returning as much as a single mouse. Fortunately, I've
> > > got a wife who's a real champ: She leaves the house and returns within
> > > half an hour, carrying whole bags full of meal.
> > >
> > > -
> > > 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]
> >
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
My cats know that I am a loser who goes out for hunting every day
without ever returning as much as a single mouse. Fortunately, I've
got a wife who's a real champ: She leaves the house and returns within
half an hour, carrying whole bags full of meal.

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



Re: [maven-source-plugin] Releasing 2.0.3

2007-04-20 Thread Jochen Wiedmann

Quoting Niall: ping! :-)

On 4/13/07, Niall Pemberton <[EMAIL PROTECTED]> wrote:

ping!

Niall

On 4/3/07, Jason van Zyl <[EMAIL PROTECTED]> wrote:
>
> On 3 Apr 07, at 1:39 PM 3 Apr 07, Jochen Wiedmann wrote:
>
> > Hi,
> >
> > now that Maria has applied MSOURCES-14, can this release proceed?
> >
>
> I'll check it with the embedder and a few other projects before I
> give it a thumbs up.
>
> jason.
>
> > Thanks,
> >
> > Jochen
> >
> >
> > --
> > My cats know that I am a loser who goes out for hunting every day
> > without ever returning as much as a single mouse. Fortunately, I've
> > got a wife who's a real champ: She leaves the house and returns within
> > half an hour, carrying whole bags full of meal.
> >
> > -
> > 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]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
My cats know that I am a loser who goes out for hunting every day
without ever returning as much as a single mouse. Fortunately, I've
got a wife who's a real champ: She leaves the house and returns within
half an hour, carrying whole bags full of meal.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [maven-source-plugin] Releasing 2.0.3

2007-04-13 Thread Niall Pemberton

ping!

Niall

On 4/3/07, Jason van Zyl <[EMAIL PROTECTED]> wrote:


On 3 Apr 07, at 1:39 PM 3 Apr 07, Jochen Wiedmann wrote:

> Hi,
>
> now that Maria has applied MSOURCES-14, can this release proceed?
>

I'll check it with the embedder and a few other projects before I
give it a thumbs up.

jason.

> Thanks,
>
> Jochen
>
>
> --
> My cats know that I am a loser who goes out for hunting every day
> without ever returning as much as a single mouse. Fortunately, I've
> got a wife who's a real champ: She leaves the house and returns within
> half an hour, carrying whole bags full of meal.
>
> -
> 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]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [maven-source-plugin] Releasing 2.0.3

2007-04-03 Thread Jason van Zyl


On 3 Apr 07, at 1:39 PM 3 Apr 07, Jochen Wiedmann wrote:


Hi,

now that Maria has applied MSOURCES-14, can this release proceed?



I'll check it with the embedder and a few other projects before I  
give it a thumbs up.


jason.


Thanks,

Jochen


--
My cats know that I am a loser who goes out for hunting every day
without ever returning as much as a single mouse. Fortunately, I've
got a wife who's a real champ: She leaves the house and returns within
half an hour, carrying whole bags full of meal.

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



Re: [maven-source-plugin] Releasing 2.0.3

2007-04-03 Thread Jochen Wiedmann

Hi,

now that Maria has applied MSOURCES-14, can this release proceed?

Thanks,

Jochen


--
My cats know that I am a loser who goes out for hunting every day
without ever returning as much as a single mouse. Fortunately, I've
got a wife who's a real champ: She leaves the house and returns within
half an hour, carrying whole bags full of meal.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: maven-source-plugin

2007-03-22 Thread Brian E. Fox
Hi Ben,
Generally for being a committer you need to be around for a while,
provide patches via Jira etc and then someone will nominate you.

For your specific question, it may be as simple as refactoring the goal
so that a new one can be created that doesn't have @execute and then
calls into the common code that exists. I would suggest making a patch
and then submitting to a Jira. 

-Original Message-
From: Ben Tatham [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 22, 2007 5:12 PM
To: dev@maven.apache.org
Subject: maven-source-plugin

Hello,
I am new to this list, but I thought I would see what it takes to join a
project as a committer, or at least be a suggester.

My issue is that the maven-source-plugin mojos have @execute
phase=generate-sources.  This is great for the command line, but when
using the plugin from a pom, its kind of annoying.  In my case, xdoclet
gets run multiple times.  According to this,
http://maven.apache.org/guides/introduction/introduction-to-the-lifecycl
e.html
there is no way around this.

 In any case, I like what the assembly plugin does...they have
assembly:assembly and assembly:attached in order to distinguish the two.
Makes perfect sense.  All we need is a subclass of the Mojos to get rid
of the @execute.  Easy, peasy...

I am happy to do the work, but I need to learn how to join projects...I
guess sending this email is the first step?

-Ben

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



Re: maven-source-plugin

2007-03-22 Thread Carlos Sanchez

create an issue in http://jira.codehaus.org/browse/MSOURCES and attach
a patch with your proposed solution.

The more patches/docs/... you contribute, the more chances to be
nominated as committer

On 3/22/07, Ben Tatham <[EMAIL PROTECTED]> wrote:

Hello,
I am new to this list, but I thought I would see what it takes to join a
project as a committer, or at least be a suggester.

My issue is that the maven-source-plugin mojos have @execute
phase=generate-sources.  This is great for the command line, but when
using the plugin from a pom, its kind of annoying.  In my case, xdoclet
gets run multiple times.  According to this,
 http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html
there is no way around this.

 In any case, I like what the assembly plugin does...they have
assembly:assembly and assembly:attached in order to distinguish the
two.  Makes perfect sense.  All we need is a subclass of the Mojos to
get rid of the @execute.  Easy, peasy...

I am happy to do the work, but I need to learn how to join projects...I
guess sending this email is the first step?

-Ben

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
-- The Princess Bride

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [maven-source-plugin] Releasing 2.0.3

2007-02-11 Thread Niall Pemberton

On 2/11/07, Stephane Nicoll <[EMAIL PROTECTED]> wrote:

Hi,

On 2/11/07, Niall Pemberton <[EMAIL PROTECTED]> wrote:
> All the issue tickets for the maven sources plugin are resolved:
>
>http://jira.codehaus.org/browse/MSOURCES
>
> Is there likely to be a 2.0.3 release soon?
>
Yes, I'll handle this.


Great and thanks!

Niall


Cheers,
Stéphane


> thx
>
> Niall


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [maven-source-plugin] Releasing 2.0.3

2007-02-11 Thread Stephane Nicoll

Hi,

On 2/11/07, Niall Pemberton <[EMAIL PROTECTED]> wrote:

All the issue tickets for the maven sources plugin are resolved:

   http://jira.codehaus.org/browse/MSOURCES

Is there likely to be a 2.0.3 release soon?


Yes, I'll handle this.

Cheers,
Stéphane



thx

Niall

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



Re: Maven-source-plugin ignoring Includes/Excludes

2006-07-18 Thread Carlos Sanchez

I've added a comment to the issue about your patch

to keep backwards comaptibility you can't remove non private methods,
so you need to refactor your patch to keep old methods while adding
the new ones you need, avoiding code duplication

On 7/10/06, m k <[EMAIL PROTECTED]> wrote:

The maven-source-plugin is ignoring the includes/excludes sections of
resources.  This issue was logged (
http://jira.codehaus.org/browse/MSOURCES-6).  I proposed a patch for this
issue and was wondering if the developers responsible for this plugin would
be able to take a look at it.

Thanks,
Micah Whitacre





--
I could give you my word as a Spaniard.
No good. I've known too many Spaniards.
-- The Princess Bride

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven-source-plugin ignoring Includes/Excludes

2006-07-18 Thread Brett Porter

Could someone take a look at this?

Thanks,
Brett

On 11/07/2006 7:16 AM, m k wrote:

The maven-source-plugin is ignoring the includes/excludes sections of
resources.  This issue was logged (
http://jira.codehaus.org/browse/MSOURCES-6).  I proposed a patch for this
issue and was wondering if the developers responsible for this plugin would
be able to take a look at it.

Thanks,
Micah Whitacre




--
Apache Maven - http://maven.apache.org/
Better Builds with Maven - http://library.mergere.com/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven source plugin to core plugins

2006-02-19 Thread Stephane Nicoll
Thanks!

On 2/19/06, Arnaud HERITIER <[EMAIL PROTECTED]> wrote:
> Hi Stephan,
>
>   The project is created : http://jira.codehaus.org/browse/MPSOURCE
>   You are the project lead (I used your account sni - tell me if you
> use another one).
>
>   For the main plugins site, you can redeploy it. When you deploy the
> site of one plugin, maven ask you if you want to deploy the main site.
> Just reply 'Yes'.
>   Be careful to use maven 1.1 to do it. I'm not sure that it works
> with maven 1.0
>
> Arnaud
>
> On 2/19/06, Stephane Nicoll <[EMAIL PROTECTED]> wrote:
> > Release has been made and web site is deployed:
> > http://maven.apache.org/maven-1.x/reference/plugins/source/
> >
> > Before I announce the release to the community, could anyone please
> > create a Jira project on codehaus for the source plugin? Also, I never
> > redeployed the main plugins site so if anyone could do it for me (or
> > confirm I can do it), that would be nice.
> >
> > Thanks,
> > Stéphane
> >
> > On 2/18/06, Stephane Nicoll <[EMAIL PROTECTED]> wrote:
> > > Vote result
> > >
> > > 5 Bindings: (John, Jason, Emmanuel, Arnaud, Lukas)
> > > 3 Non Binding: (Nicolas, Fabrizio, Stephane)
> > >
> > > The plugin will be moved to the core plugins and release 1.0 is on its 
> > > way.
> > >
> > > Thanks,
> > > Stéphane
> > >
> > >
> > > On 2/14/06, Stephane Nicoll <[EMAIL PROTECTED]> wrote:
> > > > Hi,
> > > >
> > > > I would like to move the maven source plugin from the sandbox to the
> > > > core plugins. I just added a couple of tests. In the same time, we can
> > > > release a 1.0
> > > >
> > > > WDYT?
> > > >
> > > > Thanks,
> > > > Stéphane
> > > > --
> > > > .::You're welcome ::.
> > > >
> > >
> > >
> > > --
> > > .::You're welcome ::.
> > >
> >
> >
> > --
> > .::You're welcome ::.
> >
> > -
> > 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]
>
>


--
.::You're welcome ::.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven source plugin to core plugins

2006-02-19 Thread Arnaud HERITIER
Hi Stephan,

  The project is created : http://jira.codehaus.org/browse/MPSOURCE
  You are the project lead (I used your account sni - tell me if you
use another one).

  For the main plugins site, you can redeploy it. When you deploy the
site of one plugin, maven ask you if you want to deploy the main site.
Just reply 'Yes'.
  Be careful to use maven 1.1 to do it. I'm not sure that it works
with maven 1.0

Arnaud

On 2/19/06, Stephane Nicoll <[EMAIL PROTECTED]> wrote:
> Release has been made and web site is deployed:
> http://maven.apache.org/maven-1.x/reference/plugins/source/
>
> Before I announce the release to the community, could anyone please
> create a Jira project on codehaus for the source plugin? Also, I never
> redeployed the main plugins site so if anyone could do it for me (or
> confirm I can do it), that would be nice.
>
> Thanks,
> Stéphane
>
> On 2/18/06, Stephane Nicoll <[EMAIL PROTECTED]> wrote:
> > Vote result
> >
> > 5 Bindings: (John, Jason, Emmanuel, Arnaud, Lukas)
> > 3 Non Binding: (Nicolas, Fabrizio, Stephane)
> >
> > The plugin will be moved to the core plugins and release 1.0 is on its way.
> >
> > Thanks,
> > Stéphane
> >
> >
> > On 2/14/06, Stephane Nicoll <[EMAIL PROTECTED]> wrote:
> > > Hi,
> > >
> > > I would like to move the maven source plugin from the sandbox to the
> > > core plugins. I just added a couple of tests. In the same time, we can
> > > release a 1.0
> > >
> > > WDYT?
> > >
> > > Thanks,
> > > Stéphane
> > > --
> > > .::You're welcome ::.
> > >
> >
> >
> > --
> > .::You're welcome ::.
> >
>
>
> --
> .::You're welcome ::.
>
> -
> 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]



Re: maven source plugin to core plugins

2006-02-19 Thread Stephane Nicoll
Release has been made and web site is deployed:
http://maven.apache.org/maven-1.x/reference/plugins/source/

Before I announce the release to the community, could anyone please
create a Jira project on codehaus for the source plugin? Also, I never
redeployed the main plugins site so if anyone could do it for me (or
confirm I can do it), that would be nice.

Thanks,
Stéphane

On 2/18/06, Stephane Nicoll <[EMAIL PROTECTED]> wrote:
> Vote result
>
> 5 Bindings: (John, Jason, Emmanuel, Arnaud, Lukas)
> 3 Non Binding: (Nicolas, Fabrizio, Stephane)
>
> The plugin will be moved to the core plugins and release 1.0 is on its way.
>
> Thanks,
> Stéphane
>
>
> On 2/14/06, Stephane Nicoll <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > I would like to move the maven source plugin from the sandbox to the
> > core plugins. I just added a couple of tests. In the same time, we can
> > release a 1.0
> >
> > WDYT?
> >
> > Thanks,
> > Stéphane
> > --
> > .::You're welcome ::.
> >
>
>
> --
> .::You're welcome ::.
>


--
.::You're welcome ::.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven source plugin to core plugins

2006-02-18 Thread Stephane Nicoll
Vote result

5 Bindings: (John, Jason, Emmanuel, Arnaud, Lukas)
3 Non Binding: (Nicolas, Fabrizio, Stephane)

The plugin will be moved to the core plugins and release 1.0 is on its way.

Thanks,
Stéphane


On 2/14/06, Stephane Nicoll <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I would like to move the maven source plugin from the sandbox to the
> core plugins. I just added a couple of tests. In the same time, we can
> release a 1.0
>
> WDYT?
>
> Thanks,
> Stéphane
> --
> .::You're welcome ::.
>


--
.::You're welcome ::.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven source plugin to core plugins

2006-02-15 Thread Lukas Theussl

+1

-Lukas

Stephane Nicoll wrote:

Hi,

I would like to move the maven source plugin from the sandbox to the
core plugins. I just added a couple of tests. In the same time, we can
release a 1.0

WDYT?

Thanks,
Stéphane
--
.::You're welcome ::.

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



Re: maven source plugin to core plugins

2006-02-15 Thread Fabrizio Giustina
+1

fabrizio

On 2/14/06, Stephane Nicoll <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I would like to move the maven source plugin from the sandbox to the
> core plugins. I just added a couple of tests. In the same time, we can
> release a 1.0

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven source plugin to core plugins

2006-02-15 Thread Arnaud HERITIER
+1

Be careful when you'll do the release to use maven 1.1 to have the
site correctly generated and the POM rewrote.

Arnaud

On 2/14/06, Stephane Nicoll <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I would like to move the maven source plugin from the sandbox to the
> core plugins. I just added a couple of tests. In the same time, we can
> release a 1.0
>
> WDYT?
>
> Thanks,
> Stéphane
> --
> .::You're welcome ::.
>
> -
> 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]



Re: maven source plugin to core plugins

2006-02-15 Thread Nicolas De Loof


No problemo. That's what I expected.

Stephane Nicoll a écrit :


Nicolas,

That's really interesting thanks! Is it ok for you if I add this
script in the source plugin documentation on the web site?

Thanks,
Stéphane

On 2/15/06, Nicolas De Loof <[EMAIL PROTECTED]> wrote:
 


Just to add this :

I've used this simple ant script to convert an "old style" source
repository to new java-sources :

   
   
   
   

For "old style" source I mean the
"/src/-version.zip" that was used by the eclipse
plugin.

Maybe it could be added to the source plugin as a migration tool ?

Nicolas De Loof a écrit :

   


+1
I'm using SNAPSHOT version and it's great !

Jason van Zyl a écrit :

 


Stephane Nicoll wrote:

   


Hi,

I would like to move the maven source plugin from the sandbox to the
core plugins. I just added a couple of tests. In the same time, we can
release a 1.0

WDYT?
 



+1

   


Thanks,
Stéphane
--
.::You're welcome ::.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



 

   


This message contains information that may be privileged or
confidential and is the property of the Capgemini Group. It is
intended only for the person to whom it is addressed. If you are not
the intended recipient,  you are not authorized to read, print,
retain, copy, disseminate,  distribute, or use this message or any
part thereof. If you receive this  message in error, please notify the
sender immediately and delete all  copies of this message.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

 


This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


   




--
.::You're welcome ::.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


 



This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven source plugin to core plugins

2006-02-15 Thread Stephane Nicoll
Nicolas,

That's really interesting thanks! Is it ok for you if I add this
script in the source plugin documentation on the web site?

Thanks,
Stéphane

On 2/15/06, Nicolas De Loof <[EMAIL PROTECTED]> wrote:
>
> Just to add this :
>
> I've used this simple ant script to convert an "old style" source
> repository to new java-sources :
>
> 
> 
>  to="\1/java-sources/\2-sources.jar"/>
> 
>
> For "old style" source I mean the
> "/src/-version.zip" that was used by the eclipse
> plugin.
>
> Maybe it could be added to the source plugin as a migration tool ?
>
> Nicolas De Loof a écrit :
>
> >
> > +1
> > I'm using SNAPSHOT version and it's great !
> >
> > Jason van Zyl a écrit :
> >
> >> Stephane Nicoll wrote:
> >>
> >>> Hi,
> >>>
> >>> I would like to move the maven source plugin from the sandbox to the
> >>> core plugins. I just added a couple of tests. In the same time, we can
> >>> release a 1.0
> >>>
> >>> WDYT?
> >>
> >>
> >>
> >> +1
> >>
> >>> Thanks,
> >>> Stéphane
> >>> --
> >>> .::You're welcome ::.
> >>>
> >>> -
> >>> To unsubscribe, e-mail: [EMAIL PROTECTED]
> >>> For additional commands, e-mail: [EMAIL PROTECTED]
> >>>
> >>>
> >>>
> >>
> >>
> >
> > This message contains information that may be privileged or
> > confidential and is the property of the Capgemini Group. It is
> > intended only for the person to whom it is addressed. If you are not
> > the intended recipient,  you are not authorized to read, print,
> > retain, copy, disseminate,  distribute, or use this message or any
> > part thereof. If you receive this  message in error, please notify the
> > sender immediately and delete all  copies of this message.
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
>
> This message contains information that may be privileged or confidential and 
> is the property of the Capgemini Group. It is intended only for the person to 
> whom it is addressed. If you are not the intended recipient,  you are not 
> authorized to read, print, retain, copy, disseminate,  distribute, or use 
> this message or any part thereof. If you receive this  message in error, 
> please notify the sender immediately and delete all  copies of this message.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
.::You're welcome ::.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven source plugin to core plugins

2006-02-15 Thread Nicolas De Loof


Just to add this :

I've used this simple ant script to convert an "old style" source 
repository to new java-sources :


   
   
   to="\1/java-sources/\2-sources.jar"/>

   

For "old style" source I mean the 
"/src/-version.zip" that was used by the eclipse 
plugin.


Maybe it could be added to the source plugin as a migration tool ?

Nicolas De Loof a écrit :



+1
I'm using SNAPSHOT version and it's great !

Jason van Zyl a écrit :


Stephane Nicoll wrote:


Hi,

I would like to move the maven source plugin from the sandbox to the
core plugins. I just added a couple of tests. In the same time, we can
release a 1.0

WDYT?




+1


Thanks,
Stéphane
--
.::You're welcome ::.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]








This message contains information that may be privileged or 
confidential and is the property of the Capgemini Group. It is 
intended only for the person to whom it is addressed. If you are not 
the intended recipient,  you are not authorized to read, print, 
retain, copy, disseminate,  distribute, or use this message or any 
part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven source plugin to core plugins

2006-02-15 Thread Nicolas De Loof


+1
I'm using SNAPSHOT version and it's great !

Jason van Zyl a écrit :


Stephane Nicoll wrote:


Hi,

I would like to move the maven source plugin from the sandbox to the
core plugins. I just added a couple of tests. In the same time, we can
release a 1.0

WDYT?



+1


Thanks,
Stéphane
--
.::You're welcome ::.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]








This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven source plugin to core plugins

2006-02-15 Thread Emmanuel Venisse

+1

Emmanuel

Stephane Nicoll a écrit :

Hi,

I would like to move the maven source plugin from the sandbox to the
core plugins. I just added a couple of tests. In the same time, we can
release a 1.0

WDYT?

Thanks,
Stéphane
--
.::You're welcome ::.

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



Re: maven source plugin to core plugins

2006-02-14 Thread Jason van Zyl

Stephane Nicoll wrote:

Hi,

I would like to move the maven source plugin from the sandbox to the
core plugins. I just added a couple of tests. In the same time, we can
release a 1.0

WDYT?


+1


Thanks,
Stéphane
--
.::You're welcome ::.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






--

jvz.

Jason van Zyl
jason at maven.org
http://maven.apache.org

happiness is like a butterfly: the more you chase it, the more it will
elude you, but if you turn your attention to other things, it will come
and sit softly on your shoulder ...

 -- Thoreau

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven source plugin to core plugins

2006-02-14 Thread John Casey

+1

Stephane Nicoll wrote:

Hi,

I would like to move the maven source plugin from the sandbox to the
core plugins. I just added a couple of tests. In the same time, we can
release a 1.0

WDYT?

Thanks,
Stéphane
--
.::You're welcome ::.

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