RE: Unable to exclude .class files

2010-03-08 Thread Thomas Harris
Nope, not gonna do it... ball of mud stays. I can focus my efforts on newer 
projects with a life ahead of them. This one can't change, too many years of 
barnacles collecting.

Tom

-Original Message-
From: Ron Wheeler [mailto:rwhee...@artifact-software.com] 
Sent: Friday, March 05, 2010 6:52 PM
To: Maven Users List
Subject: Re: Unable to exclude .class files

Thomas Harris wrote:
> When Mavenizing an existing project, especially one that is as old as Java, 
> you might find that the prying apart of the ball of mud via major refactoring 
> is a task that a client will not pay for. You still want to Mavenize the 
> project and integrate it into you blah/blah CI process, etc. So, in that 
> case...?
>
> Tom
>
>   
Someone will pay for and someone will reap the cost savings. In an ideal 
world your customer pays for it and you get to reap the rewards. In 
reality, you often pay for it and the customer gets the rewards when 
your bills are less.

You are probably going to have to unravel good chunks of the ball of mud 
anyway.

Ron

> -Original Message-
> From: thomas.k.sundb...@gmail.com [mailto:thomas.k.sundb...@gmail.com] On 
> Behalf Of Thomas Sundberg
> Sent: Friday, March 05, 2010 4:40 AM
> To: Maven Users List
> Subject: Re: Unable to exclude .class files
>
> Hi!
>
> You should perhaps even have three projects. One for the common stuff,
> one for the specific jar project that depends on the common stuff and
> one for the sar project that also depends on the common stuff.
>
> /Thomas
>
> On Fri, Mar 5, 2010 at 10:35, Anders Hammar  wrote:
>   
>> No, you should have two separate projects. That's the Maven way - do
>> yourself a favor and don't fight it!
>>
>> /Anders
>>
>> On Fri, Mar 5, 2010 at 10:11, WriteJava  wrote:
>>
>> 
>>> Thanks for your reply Anders, yes I am trying to build both jar and sar
>>> within same maven project and I've some java classes which i need to add to
>>> sar and exclude others and add them to jar. Is this possible?
>>>
>>> Thanks
>>>
>>> Anders Hammar wrote:
>>>   
>>>> The exclude tag is for specifying artifactId:groupId as stated in the
>>>> docs.
>>>>
>>>> I don't understand why you don't want to include the classes? If you have
>>>> a
>>>> sar project but don't want to include some classes, why do you have them
>>>> in
>>>> that project? Or could it be that you're trying to do a jar AND a sar in
>>>> the
>>>> same Maven project?
>>>>
>>>> /Anders
>>>>
>>>> On Thu, Mar 4, 2010 at 17:06, WriteJava  wrote:
>>>>
>>>> 
>>>>> Hi,
>>>>>
>>>>> I am trying to generate a sar file using 'jboss-packaging-maven-plugin'
>>>>> plugin and I can't exclude .class files from my sar. It is including all
>>>>> classes to sar. Can you please help? Here is my code snippet:
>>>>>
>>>>>
>>>>>org.codehaus.mojo
>>>>>jboss-packaging-maven-plugin
>>>>>2.1.1
>>>>>true
>>>>>
>>>>>
>>>>>**/*.class
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>sar123
>>>>>
>>>>>sar
>>>>>
>>>>>package
>>>>>
>>>>>my-service
>>>>>
>>>>>
>>>>>
>>>>>   
>>> ${basedir}/conf/mysarMETA-INF/jboss-service.xml
>>>   
>>>>>false
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> Thanks
>>>>> --
>>>>> View this message in context:
>>>>>
>>>>>   
>>> http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27782829.html
>>>   
>>>>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>>>>
>>>>>
>>>>> -
>>>>> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
>>>>> For additional commands, e-mail: users-h...@maven.apache.org
>>>>>
>>>>>
>>>>>   
>>>> 
>>> --
>>> View this message in context:
>>> http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27791501.html
>>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>>
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
>>> For additional commands, e-mail: users-h...@maven.apache.org
>>>
>>>
>>>   
>
>
>
>   


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


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



Re: Unable to exclude .class files

2010-03-05 Thread Ron Wheeler

Thomas Harris wrote:

When Mavenizing an existing project, especially one that is as old as Java, you 
might find that the prying apart of the ball of mud via major refactoring is a 
task that a client will not pay for. You still want to Mavenize the project and 
integrate it into you blah/blah CI process, etc. So, in that case...?

Tom

  
Someone will pay for and someone will reap the cost savings. In an ideal 
world your customer pays for it and you get to reap the rewards. In 
reality, you often pay for it and the customer gets the rewards when 
your bills are less.


You are probably going to have to unravel good chunks of the ball of mud 
anyway.


Ron


-Original Message-
From: thomas.k.sundb...@gmail.com [mailto:thomas.k.sundb...@gmail.com] On 
Behalf Of Thomas Sundberg
Sent: Friday, March 05, 2010 4:40 AM
To: Maven Users List
Subject: Re: Unable to exclude .class files

Hi!

You should perhaps even have three projects. One for the common stuff,
one for the specific jar project that depends on the common stuff and
one for the sar project that also depends on the common stuff.

/Thomas

On Fri, Mar 5, 2010 at 10:35, Anders Hammar  wrote:
  

No, you should have two separate projects. That's the Maven way - do
yourself a favor and don't fight it!

/Anders

On Fri, Mar 5, 2010 at 10:11, WriteJava  wrote:



Thanks for your reply Anders, yes I am trying to build both jar and sar
within same maven project and I've some java classes which i need to add to
sar and exclude others and add them to jar. Is this possible?

Thanks

Anders Hammar wrote:
  

The exclude tag is for specifying artifactId:groupId as stated in the
docs.

I don't understand why you don't want to include the classes? If you have
a
sar project but don't want to include some classes, why do you have them
in
that project? Or could it be that you're trying to do a jar AND a sar in
the
same Maven project?

/Anders

On Thu, Mar 4, 2010 at 17:06, WriteJava  wrote:



Hi,

I am trying to generate a sar file using 'jboss-packaging-maven-plugin'
plugin and I can't exclude .class files from my sar. It is including all
classes to sar. Can you please help? Here is my code snippet:

   
   org.codehaus.mojo
   jboss-packaging-maven-plugin
   2.1.1
   true
   
   
   **/*.class
   
   
   
   
   sar123
   
   sar
   
   package
   
   my-service



  

${basedir}/conf/mysarMETA-INF/jboss-service.xml
  

   false
   
   
   
   

Thanks
--
View this message in context:

  

http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27782829.html
  

Sent from the Maven - Users mailing list archive at Nabble.com.


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


  


--
View this message in context:
http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27791501.html
Sent from the Maven - Users mailing list archive at Nabble.com.


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


  




  



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



Re: Unable to exclude .class files

2010-03-05 Thread Wayne Fay
> The case I'm currently looking at would take many months of work
> to refactor to split the modules up, whereas a build system is a build

Many months for a complete refactor, but couldn't you make a pretty
good effort in just a few weeks, at least hit some of the low-hanging
fruit etc? Making more Maven modules should be pretty low-cost if
you're really converting everything over to Maven anyway.

Or is *any* refactoring beyond the bare minimum required for the new
build system out of the question? Arguably, moving files to new
modules rather than using includes/excludes *is* part of that minimum
effort IMO.

Fowler's refactoring book and Feather's legacy code book are great
resources for this kind of work, if you don't already have them.

Wayne

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



RE: Unable to exclude .class files

2010-03-05 Thread Thomas Harris
The case I'm currently looking at would take many months of work to refactor to 
split the modules up, whereas a build system is a build system. Our new 
standard is Maven with Husdon and a bunch of code reporting tools, etc. We 
really don't have a choice, except to use Maven or a different new build 
system, like custom Ant scripts, as the old build system is all proprietary and 
no longer supported by the vendor.

Tom

-Original Message-
From: anders.g.ham...@gmail.com [mailto:anders.g.ham...@gmail.com] On Behalf Of 
Anders Hammar
Sent: Friday, March 05, 2010 4:14 PM
To: Maven Users List
Subject: Re: Unable to exclude .class files

Well, I believe that in most cases it's going to be more expensive fighting
Maven to force an nonstandard behavior instead of refactoring and going the
standard Maven path.
It's like doing C code style in Java. What's the benefit of switching to
Java?

/Anders

On Fri, Mar 5, 2010 at 21:22, Thomas Harris  wrote:

>
> When Mavenizing an existing project, especially one that is as old as Java,
> you might find that the prying apart of the ball of mud via major
> refactoring is a task that a client will not pay for. You still want to
> Mavenize the project and integrate it into you blah/blah CI process, etc.
> So, in that case...?
>
> Tom
>
> -Original Message-
> From: thomas.k.sundb...@gmail.com [mailto:thomas.k.sundb...@gmail.com] On
> Behalf Of Thomas Sundberg
> Sent: Friday, March 05, 2010 4:40 AM
> To: Maven Users List
> Subject: Re: Unable to exclude .class files
>
> Hi!
>
> You should perhaps even have three projects. One for the common stuff,
> one for the specific jar project that depends on the common stuff and
> one for the sar project that also depends on the common stuff.
>
> /Thomas
>
> On Fri, Mar 5, 2010 at 10:35, Anders Hammar  wrote:
> > No, you should have two separate projects. That's the Maven way - do
> > yourself a favor and don't fight it!
> >
> > /Anders
> >
> > On Fri, Mar 5, 2010 at 10:11, WriteJava  wrote:
> >
> >>
> >> Thanks for your reply Anders, yes I am trying to build both jar and sar
> >> within same maven project and I've some java classes which i need to add
> to
> >> sar and exclude others and add them to jar. Is this possible?
> >>
> >> Thanks
> >>
> >> Anders Hammar wrote:
> >> >
> >> > The exclude tag is for specifying artifactId:groupId as stated in the
> >> > docs.
> >> >
> >> > I don't understand why you don't want to include the classes? If you
> have
> >> > a
> >> > sar project but don't want to include some classes, why do you have
> them
> >> > in
> >> > that project? Or could it be that you're trying to do a jar AND a sar
> in
> >> > the
> >> > same Maven project?
> >> >
> >> > /Anders
> >> >
> >> > On Thu, Mar 4, 2010 at 17:06, WriteJava  wrote:
> >> >
> >> >>
> >> >> Hi,
> >> >>
> >> >> I am trying to generate a sar file using
> 'jboss-packaging-maven-plugin'
> >> >> plugin and I can't exclude .class files from my sar. It is including
> all
> >> >> classes to sar. Can you please help? Here is my code snippet:
> >> >>
> >> >>
> >> >>org.codehaus.mojo
> >> >>jboss-packaging-maven-plugin
> >> >>2.1.1
> >> >>true
> >> >>
> >> >>
> >> >>**/*.class
> >> >>
> >> >>
> >> >>
> >> >>
> >> >>sar123
> >> >>
> >> >>sar
> >> >>
> >> >>package
> >> >>
> >> >>my-service
> >> >>
> >> >>
> >> >>
> >>
> ${basedir}/conf/mysarMETA-INF/jboss-service.xml
> >> >>false
> >> >>
> >> >>
> >> >>
> >> >>
> >> >>
> >> >> Thanks
> >

Re: Unable to exclude .class files

2010-03-05 Thread Anders Hammar
Well, I believe that in most cases it's going to be more expensive fighting
Maven to force an nonstandard behavior instead of refactoring and going the
standard Maven path.
It's like doing C code style in Java. What's the benefit of switching to
Java?

/Anders

On Fri, Mar 5, 2010 at 21:22, Thomas Harris  wrote:

>
> When Mavenizing an existing project, especially one that is as old as Java,
> you might find that the prying apart of the ball of mud via major
> refactoring is a task that a client will not pay for. You still want to
> Mavenize the project and integrate it into you blah/blah CI process, etc.
> So, in that case...?
>
> Tom
>
> -Original Message-
> From: thomas.k.sundb...@gmail.com [mailto:thomas.k.sundb...@gmail.com] On
> Behalf Of Thomas Sundberg
> Sent: Friday, March 05, 2010 4:40 AM
> To: Maven Users List
> Subject: Re: Unable to exclude .class files
>
> Hi!
>
> You should perhaps even have three projects. One for the common stuff,
> one for the specific jar project that depends on the common stuff and
> one for the sar project that also depends on the common stuff.
>
> /Thomas
>
> On Fri, Mar 5, 2010 at 10:35, Anders Hammar  wrote:
> > No, you should have two separate projects. That's the Maven way - do
> > yourself a favor and don't fight it!
> >
> > /Anders
> >
> > On Fri, Mar 5, 2010 at 10:11, WriteJava  wrote:
> >
> >>
> >> Thanks for your reply Anders, yes I am trying to build both jar and sar
> >> within same maven project and I've some java classes which i need to add
> to
> >> sar and exclude others and add them to jar. Is this possible?
> >>
> >> Thanks
> >>
> >> Anders Hammar wrote:
> >> >
> >> > The exclude tag is for specifying artifactId:groupId as stated in the
> >> > docs.
> >> >
> >> > I don't understand why you don't want to include the classes? If you
> have
> >> > a
> >> > sar project but don't want to include some classes, why do you have
> them
> >> > in
> >> > that project? Or could it be that you're trying to do a jar AND a sar
> in
> >> > the
> >> > same Maven project?
> >> >
> >> > /Anders
> >> >
> >> > On Thu, Mar 4, 2010 at 17:06, WriteJava  wrote:
> >> >
> >> >>
> >> >> Hi,
> >> >>
> >> >> I am trying to generate a sar file using
> 'jboss-packaging-maven-plugin'
> >> >> plugin and I can't exclude .class files from my sar. It is including
> all
> >> >> classes to sar. Can you please help? Here is my code snippet:
> >> >>
> >> >>
> >> >>org.codehaus.mojo
> >> >>jboss-packaging-maven-plugin
> >> >>2.1.1
> >> >>true
> >> >>
> >> >>
> >> >>**/*.class
> >> >>
> >> >>
> >> >>
> >> >>
> >> >>sar123
> >> >>
> >> >>sar
> >> >>
> >> >>package
> >> >>
> >> >>my-service
> >> >>
> >> >>
> >> >>
> >>
> ${basedir}/conf/mysarMETA-INF/jboss-service.xml
> >> >>false
> >> >>
> >> >>
> >> >>
> >> >>
> >> >>
> >> >> Thanks
> >> >> --
> >> >> View this message in context:
> >> >>
> >>
> http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27782829.html
> >> >> Sent from the Maven - Users mailing list archive at Nabble.com.
> >> >>
> >> >>
> >> >> -
> >> >> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> >> >> For additional commands, e-mail: users-h...@maven.apache.org
> >> >>
> >> >>
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >>
> http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27791501.html
> >> Sent from the Maven - Users mailing list archive at Nabble.com.
> >>
> >>
> >> -
> >> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> >> For additional commands, e-mail: users-h...@maven.apache.org
> >>
> >>
> >
>
>
>
> --
> Thomas Sundberg
> M. Sc. in Computer Science
>
> Mobile: +46 70 767 33 15
> Blog: http://thomassundberg.wordpress.com/
>
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>
>


RE: Unable to exclude .class files

2010-03-05 Thread Thomas Harris

When Mavenizing an existing project, especially one that is as old as Java, you 
might find that the prying apart of the ball of mud via major refactoring is a 
task that a client will not pay for. You still want to Mavenize the project and 
integrate it into you blah/blah CI process, etc. So, in that case...?

Tom

-Original Message-
From: thomas.k.sundb...@gmail.com [mailto:thomas.k.sundb...@gmail.com] On 
Behalf Of Thomas Sundberg
Sent: Friday, March 05, 2010 4:40 AM
To: Maven Users List
Subject: Re: Unable to exclude .class files

Hi!

You should perhaps even have three projects. One for the common stuff,
one for the specific jar project that depends on the common stuff and
one for the sar project that also depends on the common stuff.

/Thomas

On Fri, Mar 5, 2010 at 10:35, Anders Hammar  wrote:
> No, you should have two separate projects. That's the Maven way - do
> yourself a favor and don't fight it!
>
> /Anders
>
> On Fri, Mar 5, 2010 at 10:11, WriteJava  wrote:
>
>>
>> Thanks for your reply Anders, yes I am trying to build both jar and sar
>> within same maven project and I've some java classes which i need to add to
>> sar and exclude others and add them to jar. Is this possible?
>>
>> Thanks
>>
>> Anders Hammar wrote:
>> >
>> > The exclude tag is for specifying artifactId:groupId as stated in the
>> > docs.
>> >
>> > I don't understand why you don't want to include the classes? If you have
>> > a
>> > sar project but don't want to include some classes, why do you have them
>> > in
>> > that project? Or could it be that you're trying to do a jar AND a sar in
>> > the
>> > same Maven project?
>> >
>> > /Anders
>> >
>> > On Thu, Mar 4, 2010 at 17:06, WriteJava  wrote:
>> >
>> >>
>> >> Hi,
>> >>
>> >> I am trying to generate a sar file using 'jboss-packaging-maven-plugin'
>> >> plugin and I can't exclude .class files from my sar. It is including all
>> >> classes to sar. Can you please help? Here is my code snippet:
>> >>
>> >>            
>> >>                org.codehaus.mojo
>> >>                jboss-packaging-maven-plugin
>> >>                2.1.1
>> >>                true
>> >>                
>> >>                        
>> >>                                **/*.class
>> >>                        
>> >>                
>> >>                
>> >>                    
>> >>                        sar123
>> >>                        
>> >>                            sar
>> >>                        
>> >>                        package
>> >>                        
>> >>                            my-service
>> >>
>> >>
>> >>
>> ${basedir}/conf/mysarMETA-INF/jboss-service.xml
>> >>                            false
>> >>                        
>> >>                    
>> >>                
>> >>            
>> >>
>> >> Thanks
>> >> --
>> >> View this message in context:
>> >>
>> http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27782829.html
>> >> Sent from the Maven - Users mailing list archive at Nabble.com.
>> >>
>> >>
>> >> -
>> >> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
>> >> For additional commands, e-mail: users-h...@maven.apache.org
>> >>
>> >>
>> >
>> >
>>
>> --
>> View this message in context:
>> http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27791501.html
>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
>> For additional commands, e-mail: users-h...@maven.apache.org
>>
>>
>



-- 
Thomas Sundberg
M. Sc. in Computer Science

Mobile: +46 70 767 33 15
Blog: http://thomassundberg.wordpress.com/

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


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



Re: Unable to exclude .class files

2010-03-05 Thread Thomas Sundberg
Hi!

You should perhaps even have three projects. One for the common stuff,
one for the specific jar project that depends on the common stuff and
one for the sar project that also depends on the common stuff.

/Thomas

On Fri, Mar 5, 2010 at 10:35, Anders Hammar  wrote:
> No, you should have two separate projects. That's the Maven way - do
> yourself a favor and don't fight it!
>
> /Anders
>
> On Fri, Mar 5, 2010 at 10:11, WriteJava  wrote:
>
>>
>> Thanks for your reply Anders, yes I am trying to build both jar and sar
>> within same maven project and I've some java classes which i need to add to
>> sar and exclude others and add them to jar. Is this possible?
>>
>> Thanks
>>
>> Anders Hammar wrote:
>> >
>> > The exclude tag is for specifying artifactId:groupId as stated in the
>> > docs.
>> >
>> > I don't understand why you don't want to include the classes? If you have
>> > a
>> > sar project but don't want to include some classes, why do you have them
>> > in
>> > that project? Or could it be that you're trying to do a jar AND a sar in
>> > the
>> > same Maven project?
>> >
>> > /Anders
>> >
>> > On Thu, Mar 4, 2010 at 17:06, WriteJava  wrote:
>> >
>> >>
>> >> Hi,
>> >>
>> >> I am trying to generate a sar file using 'jboss-packaging-maven-plugin'
>> >> plugin and I can't exclude .class files from my sar. It is including all
>> >> classes to sar. Can you please help? Here is my code snippet:
>> >>
>> >>            
>> >>                org.codehaus.mojo
>> >>                jboss-packaging-maven-plugin
>> >>                2.1.1
>> >>                true
>> >>                
>> >>                        
>> >>                                **/*.class
>> >>                        
>> >>                
>> >>                
>> >>                    
>> >>                        sar123
>> >>                        
>> >>                            sar
>> >>                        
>> >>                        package
>> >>                        
>> >>                            my-service
>> >>
>> >>
>> >>
>> ${basedir}/conf/mysarMETA-INF/jboss-service.xml
>> >>                            false
>> >>                        
>> >>                    
>> >>                
>> >>            
>> >>
>> >> Thanks
>> >> --
>> >> View this message in context:
>> >>
>> http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27782829.html
>> >> Sent from the Maven - Users mailing list archive at Nabble.com.
>> >>
>> >>
>> >> -
>> >> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
>> >> For additional commands, e-mail: users-h...@maven.apache.org
>> >>
>> >>
>> >
>> >
>>
>> --
>> View this message in context:
>> http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27791501.html
>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
>> For additional commands, e-mail: users-h...@maven.apache.org
>>
>>
>



-- 
Thomas Sundberg
M. Sc. in Computer Science

Mobile: +46 70 767 33 15
Blog: http://thomassundberg.wordpress.com/

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



Re: Unable to exclude .class files

2010-03-05 Thread Anders Hammar
No, you should have two separate projects. That's the Maven way - do
yourself a favor and don't fight it!

/Anders

On Fri, Mar 5, 2010 at 10:11, WriteJava  wrote:

>
> Thanks for your reply Anders, yes I am trying to build both jar and sar
> within same maven project and I've some java classes which i need to add to
> sar and exclude others and add them to jar. Is this possible?
>
> Thanks
>
> Anders Hammar wrote:
> >
> > The exclude tag is for specifying artifactId:groupId as stated in the
> > docs.
> >
> > I don't understand why you don't want to include the classes? If you have
> > a
> > sar project but don't want to include some classes, why do you have them
> > in
> > that project? Or could it be that you're trying to do a jar AND a sar in
> > the
> > same Maven project?
> >
> > /Anders
> >
> > On Thu, Mar 4, 2010 at 17:06, WriteJava  wrote:
> >
> >>
> >> Hi,
> >>
> >> I am trying to generate a sar file using 'jboss-packaging-maven-plugin'
> >> plugin and I can't exclude .class files from my sar. It is including all
> >> classes to sar. Can you please help? Here is my code snippet:
> >>
> >>
> >>org.codehaus.mojo
> >>jboss-packaging-maven-plugin
> >>2.1.1
> >>true
> >>
> >>
> >>**/*.class
> >>
> >>
> >>
> >>
> >>sar123
> >>
> >>sar
> >>
> >>package
> >>
> >>my-service
> >>
> >>
> >>
> ${basedir}/conf/mysarMETA-INF/jboss-service.xml
> >>false
> >>
> >>
> >>
> >>
> >>
> >> Thanks
> >> --
> >> View this message in context:
> >>
> http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27782829.html
> >> Sent from the Maven - Users mailing list archive at Nabble.com.
> >>
> >>
> >> -
> >> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> >> For additional commands, e-mail: users-h...@maven.apache.org
> >>
> >>
> >
> >
>
> --
> View this message in context:
> http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27791501.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>
>


Re: Unable to exclude .class files

2010-03-05 Thread WriteJava

Thanks for your reply Anders, yes I am trying to build both jar and sar
within same maven project and I've some java classes which i need to add to
sar and exclude others and add them to jar. Is this possible?

Thanks

Anders Hammar wrote:
> 
> The exclude tag is for specifying artifactId:groupId as stated in the
> docs.
> 
> I don't understand why you don't want to include the classes? If you have
> a
> sar project but don't want to include some classes, why do you have them
> in
> that project? Or could it be that you're trying to do a jar AND a sar in
> the
> same Maven project?
> 
> /Anders
> 
> On Thu, Mar 4, 2010 at 17:06, WriteJava  wrote:
> 
>>
>> Hi,
>>
>> I am trying to generate a sar file using 'jboss-packaging-maven-plugin'
>> plugin and I can't exclude .class files from my sar. It is including all
>> classes to sar. Can you please help? Here is my code snippet:
>>
>>
>>org.codehaus.mojo
>>jboss-packaging-maven-plugin
>>2.1.1
>>true
>>
>>
>>**/*.class
>>
>>
>>
>>
>>sar123
>>
>>sar
>>
>>package
>>
>>my-service
>>
>>
>> ${basedir}/conf/mysarMETA-INF/jboss-service.xml
>>false
>>
>>
>>
>>
>>
>> Thanks
>> --
>> View this message in context:
>> http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27782829.html
>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
>> For additional commands, e-mail: users-h...@maven.apache.org
>>
>>
> 
> 

-- 
View this message in context: 
http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27791501.html
Sent from the Maven - Users mailing list archive at Nabble.com.


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



Re: Unable to exclude .class files

2010-03-04 Thread Anders Hammar
The exclude tag is for specifying artifactId:groupId as stated in the docs.

I don't understand why you don't want to include the classes? If you have a
sar project but don't want to include some classes, why do you have them in
that project? Or could it be that you're trying to do a jar AND a sar in the
same Maven project?

/Anders

On Thu, Mar 4, 2010 at 17:06, WriteJava  wrote:

>
> Hi,
>
> I am trying to generate a sar file using 'jboss-packaging-maven-plugin'
> plugin and I can't exclude .class files from my sar. It is including all
> classes to sar. Can you please help? Here is my code snippet:
>
>
>org.codehaus.mojo
>jboss-packaging-maven-plugin
>2.1.1
>true
>
>
>**/*.class
>
>
>
>
>sar123
>
>sar
>
>package
>
>my-service
>
>
> ${basedir}/conf/mysarMETA-INF/jboss-service.xml
>false
>
>
>
>
>
> Thanks
> --
> View this message in context:
> http://old.nabble.com/Unable-to-exclude-.class-files-tp27782829p27782829.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>
>