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: [email protected] [mailto:[email protected]] 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 <[email protected]> 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 <[email protected]> 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 <[email protected]> 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:
>> >>
>> >>            <plugin>
>> >>                <groupId>org.codehaus.mojo</groupId>
>> >>                <artifactId>jboss-packaging-maven-plugin</artifactId>
>> >>                <version>2.1.1</version>
>> >>                <extensions>true</extensions>
>> >>                <configuration>
>> >>                        <excludes>
>> >>                                <exclude>**/*.class</exclude>
>> >>                        </excludes>
>> >>                </configuration>
>> >>                <executions>
>> >>                    <execution>
>> >>                        <id>sar123</id>
>> >>                        <goals>
>> >>                            <goal>sar</goal>
>> >>                        </goals>
>> >>                        <phase>package</phase>
>> >>                        <configuration>
>> >>                            <archiveName>my-service</archiveName>
>> >>
>> >>
>> >>
>> <deploymentDescriptorFile>${basedir}/conf/mysarMETA-INF/jboss-service.xml</deploymentDescriptorFile>
>> >>                            <primaryArtifact>false</primaryArtifact>
>> >>                        </configuration>
>> >>                    </execution>
>> >>                </executions>
>> >>            </plugin>
>> >>
>> >> 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: [email protected]
>> >> For additional commands, e-mail: [email protected]
>> >>
>> >>
>> >
>> >
>>
>> --
>> 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: [email protected]
>> For additional commands, e-mail: [email protected]
>>
>>
>



-- 
Thomas Sundberg
M. Sc. in Computer Science

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

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