configuring one plugin from another

2008-08-13 Thread Kallin Nagelberg
Hey, I'm trying to run the maven-clover-plugin to generate a code coverage report. It instruments my sources, and copies them to target/clover/src and target/clover/generated-sources. A problem arises when the plugin invokes the compiler:compile plugin. Output looks like: [INFO]

Re: configuring one plugin from another

2008-08-13 Thread Kallin Nagelberg
] -- end configuration -- [INFO] [compiler:compile] [DEBUG] Using compiler 'javac'. [DEBUG] Source directories: [D:\myartifact\target\clover\src D:\myartifact\target\clover\generated-sources\groovy-stubs\main D:\myartifact\src\main\java] On Wed, Aug 13, 2008 at 11:48 AM, Kallin Nagelberg [EMAIL

gmaven plugin vs. script classloading

2008-07-23 Thread Kallin Nagelberg
I wrote a groovy plugin a while back, and am now trying to convert it to a simple script as it is only used by one artifact and it makes more sense to keep it with the artifact in question rather than as a separate artifact. The artifact that uses the script, artifact A, depends on some classes

Re: gmaven plugin vs. script classloading

2008-07-23 Thread Kallin Nagelberg
:/C:/mavenrepo_artifactory/org/apache/maven/doxia/doxia-module-xhtml/1.0-alpha-10/doxia-module-xhtml-1.0-alpha-10.jar] Quite peculiar ! On Wed, Jul 23, 2008 at 11:35 AM, Kallin Nagelberg [EMAIL PROTECTED] wrote: I wrote a groovy plugin a while back, and am now trying to convert

release:prepare performs source generation

2008-07-21 Thread Kallin Nagelberg
I've noticed that when i execute release:prepare on one my projects that generates sources it performs the generation. I don't see why it would do this, as it does it again during release:perform. The plugin config in that artifact's POM looks like the following. Is there a way to prevent

Re: prevent javadoc during release

2008-07-15 Thread Kallin Nagelberg
OK thanks. I imagine to make this automatic I could put a release configuration in the relevant POM. On Tue, Jul 15, 2008 at 2:41 AM, Magne Nordtveit [EMAIL PROTECTED] wrote: On Mon, 2008-07-14 at 16:38 -0400, Kallin Nagelberg wrote: Is there a way to prevent javadoc from occuring during

java.lang.InternalError: Stubbed method

2008-07-15 Thread Kallin Nagelberg
One my artifacts is using the gmaven plugin for both main and test sources. It was all working fine until recently the test phase began throwing the exception java.lang.InternalError: Stubbed method I have no idea what changed. It seems to be using the compiled stubs instead of the real groovy

Re: java.lang.InternalError: Stubbed method

2008-07-15 Thread Kallin Nagelberg
? On Tue, Jul 15, 2008 at 11:49 AM, Kallin Nagelberg [EMAIL PROTECTED] wrote: One my artifacts is using the gmaven plugin for both main and test sources. It was all working fine until recently the test phase began throwing the exception java.lang.InternalError: Stubbed method I have no idea

release plugin duplication

2008-07-14 Thread Kallin Nagelberg
One of my artifacts takes a long time to generate sources (around 5 minutes). I've noticed that when I use the release plugin to release this artifact it performs that generation at least 3 times. I am using the maven-source-plugin across all my projects. Maybe i'll disable that.. Any other

release plugin duplication

2008-07-14 Thread Kallin Nagelberg
One of my artifacts takes a long time to generate sources (around 5 minutes). I've noticed that when I use the release plugin to release this artifact it performs that generation at least 3 times. I am using the maven-source-plugin across all my projects. Maybe i'll disable that.. Any other

prevent javadoc during release

2008-07-14 Thread Kallin Nagelberg
Is there a way to prevent javadoc from occuring during release? I would also like to prevent production of source JAR. Any ideas?

Re: release plugin duplication

2008-07-14 Thread Kallin Nagelberg
Yes I appear to be plagued with duplication. On Mon, Jul 14, 2008 at 5:35 PM, Michael McCallum [EMAIL PROTECTED] wrote: On Tue, 15 Jul 2008 07:05:52 Kallin Nagelberg wrote: thats hilarious did anyone else get three copies of that email ;-) -- Michael McCallum Enterprise Engineer mailto

Accessing artifact Final name in assembly plugin.

2008-07-10 Thread Kallin Nagelberg
Hi, I'm using a dependency set in an assembly of mine using the following config: dependencySets dependencySet useProjectArtifactfalse/useProjectArtifact outputDirectory//outputDirectory includes

Re: assembly plugin includes duplicates

2008-07-09 Thread Kallin Nagelberg
to make the same rules apply to dependencies? On Tue, Jul 8, 2008 at 5:58 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: I have an assembly descriptor that looks like the following code. There are duplicate libraries in 'target/dependencies' and 'target/core-bl-template/unpack/lib'. This results

gmaven classloading issues

2008-07-08 Thread Kallin Nagelberg
I'm encountering some really strange classloading issues with the gmaven plugin. I am executing it to generate some sources for a project of mine, and the script I wrote calls some classes in a dependency. I get all sorts of exceptions saying classnotfound. I debugged it, and found that the

release plugin without SCM

2008-07-08 Thread Kallin Nagelberg
Is there a way to use the release plugin without invoking the SCM activities? (I'm using SVN) The release plugin doesn't seem to be compatible with my project's branching strategy for a number of reasons: 1) It seems to always want to release from the trunk. Sometimes we need to release from

Re: release plugin without SCM

2008-07-08 Thread Kallin Nagelberg
go about releasing nonmodule1 off my branch? On Tue, Jul 8, 2008 at 11:57 AM, Kallin Nagelberg [EMAIL PROTECTED] wrote: Is there a way to use the release plugin without invoking the SCM activities? (I'm using SVN) The release plugin doesn't seem to be compatible with my project's branching

a simple zip assembly

2008-07-08 Thread Kallin Nagelberg
Hi, I'm trying to build a simple distribution with the following layout: + |---bin |---libs There are some scripts in the bin folder that build a classpath using the lib folder. It should be distributed as a ZIP. One caveat: Initially it is built as a template. That is, there is a core

multiple WAR overlays

2008-07-08 Thread Kallin Nagelberg
I have an artifact which uses 2 wars as an overlay. I wonder if there's a way to choose which web.xml to use, or in general, which one should take priority in the case of conflicts.

Re: multiple WAR overlays

2008-07-08 Thread Kallin Nagelberg
It seems like this should do the trick: http://maven.apache.org/plugins/maven-war-plugin/overlays.html On Tue, Jul 8, 2008 at 3:39 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: I have an artifact which uses 2 wars as an overlay. I wonder if there's a way to choose which web.xml to use

Re: a simple zip assembly

2008-07-08 Thread Kallin Nagelberg
it as an overlay the same way WARs work, but that doesn't seem like an option here so I'm using the dependency plugin. It only grabs the JAR from the template though, not the assembled ZIP. Any ideas? On Tue, Jul 8, 2008 at 2:57 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: Hi, I'm trying

assembly plugin includes duplicates

2008-07-08 Thread Kallin Nagelberg
I have an assembly descriptor that looks like the following code. There are duplicate libraries in 'target/dependencies' and 'target/core-bl-template/unpack/lib'. This results in duplicate JARs being zipped up at xxx.zip/lib . Is there a way to prevent this? assembly idbin/id formats

ignore missing web.xml war plugin

2008-07-07 Thread Kallin Nagelberg
I'm trying to build a template WAR (overlay I guess) to be used in other projects. Every other project will supply it's own web.xml, so I don't need one in the template. Is there a way to configure the war plugin so that id doesn't error out on a missing web.xml?

Re: maintaining versions across multi-module project

2008-07-07 Thread Kallin Nagelberg
2, 2008 at 5:16 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: So what do you use for the version label in the root pom and the 'parent' tags of all the modules? For inter-module dependencies ${project.version} seems to work.. On Wed, Jul 2, 2008 at 2:52 AM, Martin Höller [EMAIL PROTECTED

Re: maintaining versions across multi-module project

2008-07-02 Thread Kallin Nagelberg
So what do you use for the version label in the root pom and the 'parent' tags of all the modules? For inter-module dependencies ${project.version} seems to work.. On Wed, Jul 2, 2008 at 2:52 AM, Martin Höller [EMAIL PROTECTED] wrote: On Monday 30 June 2008 Kallin Nagelberg wrote: Can anyone

configuring a plugin while preventing its execution

2008-07-02 Thread Kallin Nagelberg
I'm trying to create a multi-module project that uses the same plugin for source generation. To make it as simple as possible I have a parent POM that contains the configuration of the plugin in a build plugins plugin tag. My problem is that the plugin is being executed when

obtaining modules as dependencies

2008-07-02 Thread Kallin Nagelberg
I have a multi module project with superpom of type 'pom'. I was wondering how I can obtain all the modules as dependencies in another project. I thought I could just declare a dependency on the superpom, but that doesn't work.

Re: configuring a plugin while preventing its execution

2008-07-02 Thread Kallin Nagelberg
, but don't execute them. [1] http://maven.apache.org/ref/current/maven-model/maven.html#class_pluginManagement Kallin Nagelberg wrote: I'm trying to create a multi-module project that uses the same plugin for source generation. To make it as simple as possible I have a parent POM that contains

Re: configuring a plugin while preventing its execution

2008-07-02 Thread Kallin Nagelberg
I've noticed that using the pluginmanagment the plugin is not associated to lifecycle events by default in the children. Is there a way to make this happen so that I don't have to declare the plugin in every child? On Wed, Jul 2, 2008 at 3:22 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: great

maintaining versions across multi-module project

2008-06-30 Thread Kallin Nagelberg
Can anyone tell me what is the best/simplest way to maintain a version number across all the poms in a multi-module project? They are all to be deployed with the same version every time. Ideally, the version could be declared in one place (the superpom), and all children would know to use it.

deploy uploading with SCP freezes

2008-04-28 Thread Kallin Nagelberg
I'm finding it impossible to upload files to a remote repository using the deploy plugin. I've setup a tunnel to the server and have all authentication setup properly. I can ssh/scp through the tunnel with no problems, and the maven deploy plugin will go so far as to create the directories

Re: deploy uploading with SCP freezes

2008-04-28 Thread Kallin Nagelberg
Originally I was trying this on cygwin, with scp and ssh. I switched to a windows command prompt, with plink and pscp, and it works! Magic! On Mon, Apr 28, 2008 at 11:42 AM, Kallin Nagelberg [EMAIL PROTECTED] wrote: I'm finding it impossible to upload files to a remote repository using

Re: deploy uploading with SCP freezes

2008-04-28 Thread Kallin Nagelberg
, Apr 28, 2008 at 1:17 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: Originally I was trying this on cygwin, with scp and ssh. I switched to a windows command prompt, with plink and pscp, and it works! Magic! On Mon, Apr 28, 2008 at 11:42 AM, Kallin Nagelberg [EMAIL PROTECTED] wrote: I'm

Re: 答复: deployment through tunnel

2008-03-17 Thread Kallin Nagelberg
人: Kallin Nagelberg [mailto:[EMAIL PROTECTED] 发送时间: 2008年3月17日 3:47 收件人: Maven Users List 主题: Re: deployment through tunnel I should also note that I can successfully SSH with ssh -p 9000 [EMAIL PROTECTED] So I can ssh and scp manually just fine. On Sun, Mar 16, 2008 at 3:37 PM, Kallin

Re: deployment through tunnel

2008-03-17 Thread Kallin Nagelberg
Cool Thanks, I'll try that. I don't know how to use ssh-add yet, but I'm sure i can find something online. On Mon, Mar 17, 2008 at 7:33 AM, Jan Torben Heuer [EMAIL PROTECTED] wrote: Uploading: scpexe://localhost:9006/home/cm/maven/dev/..etcetc [INFO]

deployment through tunnel

2008-03-16 Thread Kallin Nagelberg
I've been struggling forever trying to use the deploy plugin through a tunnel into my office. There is a repository, call it maven.int.office.com. I have a tunnel, from localhost:9000 to maven.int.office.com:22. Using the following command I can SCP files to it at will: scp -P9000 somefile.txt

Re: deployment through tunnel

2008-03-16 Thread Kallin Nagelberg
I should also note that I can successfully SSH with ssh -p 9000 [EMAIL PROTECTED] So I can ssh and scp manually just fine. On Sun, Mar 16, 2008 at 3:37 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: I've been struggling forever trying to use the deploy plugin through a tunnel into my office

Re: deployment through tunnel

2008-03-16 Thread Kallin Nagelberg
(?). Wayne On 3/16/08, Kallin Nagelberg [EMAIL PROTECTED] wrote: I should also note that I can successfully SSH with ssh -p 9000 [EMAIL PROTECTED] So I can ssh and scp manually just fine. On Sun, Mar 16, 2008 at 3:37 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: I've been

details missing in stack trace

2008-03-01 Thread Kallin Nagelberg
I'm using the maven ant task in groovy to try and create a dependency fileset. Something like: mvn.dependencies(filesetId: 'myfileset') { myArtifacts.each { dependency(groupId: it.groupId, artifactId: it.artifactId, version: it.version) } } It works when all the artifacts

Re: including content into apt files

2008-02-04 Thread Kallin Nagelberg
-beta-6). -Lukas Kallin Nagelberg wrote: Thanks Lukas, You know I tried that, but I keep getting the error that 'url' is a required parameters :S On Feb 4, 2008 5:32 AM, Lukas Theussl [EMAIL PROTECTED] wrote: Use the file parameter instead of url, eg: %{snippet|id=myid

Re: including content into apt files

2008-02-04 Thread Kallin Nagelberg
a small test project to jira (http://jira.codehaus.org/browse/DOXIA), it works for me. Just to be sure: the macro line is not indented in your apt source, right? (that would explain why the line is interpreted as an anchor). -Lukas Kallin Nagelberg wrote: Ok, so I added a dependency to site

Re: including content into apt files

2008-02-04 Thread Kallin Nagelberg
Kallin Nagelberg wrote: Hi Everyone, I've been tasked with creating some .apt documentation for a new maven built project. Ideally, I'd like to have a lot of the site documentation come from files in my src/main/resources directory. I've read about using the snippet macro, but I

Re: including content into apt files

2008-02-04 Thread Kallin Nagelberg
Ok thanks for all the help. So, currently, it's impossible to have multiple includes throughout an apt file? On Feb 4, 2008 10:27 AM, Lukas Theussl [EMAIL PROTECTED] wrote: Kallin Nagelberg wrote: I found out that configuring the dependency wasn't enough. I had to explicitly indicate

Re: including content into apt files

2008-02-04 Thread Kallin Nagelberg
/src/site/apt/book/index.apt?revision=574085view=markup HTH, -Lukas Kallin Nagelberg wrote: Ok thanks for all the help. So, currently, it's impossible to have multiple includes throughout an apt file? On Feb 4, 2008 10:27 AM, Lukas Theussl [EMAIL PROTECTED] wrote: Kallin

including content into apt files

2008-02-03 Thread Kallin Nagelberg
Hi Everyone, I've been tasked with creating some .apt documentation for a new maven built project. Ideally, I'd like to have a lot of the site documentation come from files in my src/main/resources directory. I've read about using the snippet macro, but I can't get it to access the artifacts

Re: unable to add custom ant tasks to scripts

2008-01-08 Thread Kallin Nagelberg
Anyone? On Jan 5, 2008 6:44 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: Im trying to use the groovy-maven-plugin to execute some groovy scripts that make use of the antbuilder. I need to be able to use the maven-ant-tasks within this script, which I've tried to do as follows: def mvn

Re: Add source folder

2008-01-07 Thread Kallin Nagelberg
I was using this plugin for a bit to add an additional source directory, but intellij IDEA does not recognize the additional source. I ended up having to create a new artifact for the second set of sources. On Jan 7, 2008 7:50 AM, Tom Huybrechts [EMAIL PROTECTED] wrote:

Re: Add source folder

2008-01-07 Thread Kallin Nagelberg
, Jan Torben Heuer [EMAIL PROTECTED] wrote: Kallin Nagelberg wrote: I was using this plugin for a bit to add an additional source directory, but intellij IDEA does not recognize the additional source. I ended up having to create a new artifact for the second set of sources. eclipse

unable to add custom ant tasks to scripts

2008-01-05 Thread Kallin Nagelberg
Im trying to use the groovy-maven-plugin to execute some groovy scripts that make use of the antbuilder. I need to be able to use the maven-ant-tasks within this script, which I've tried to do as follows: def mvn = NamespaceBuilder.newInstance(ant, 'antlib: org.apache.maven.artifact.ant')

Re: Plugins within plugins: best practices

2007-12-30 Thread Kallin Nagelberg
What about creating a mojo instance manually from within another plugin.. Has anyone tried this? On Dec 29, 2007 11:37 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: I need to run the unpack and copy goals repeatedly, with given group:artifact:version and different target directories for each

Plugins within plugins: best practices

2007-12-29 Thread Kallin Nagelberg
Hello everyone, I've created a standalone plugin in which I'm doing some unpacking/copying of artifacts in addition to a few other things. I would like to defer the unpacking/copying operations to the maven dependency plugin for obvious reasons. Has anyone tried creating and configuring a plugin

Re: Plugins within plugins: best practices

2007-12-29 Thread Kallin Nagelberg
is mostly delegated to the maven-archiver component. -Original Message- From: Kallin Nagelberg [mailto:[EMAIL PROTECTED] Sent: Saturday, December 29, 2007 4:03 PM To: Maven Users List Subject: Plugins within plugins: best practices Hello everyone, I've created a standalone plugin

Maven Documentation

2007-12-27 Thread Kallin Nagelberg
/resources#BBWM If anyone knows of any other highly useful sources of maven documentation it would be great to have it on this thread. Who knows, it may even end up reduce the number of total threads on this list :) Kallin Nagelberg Consulting Architect

plugin annotations

2007-12-27 Thread Kallin Nagelberg
not survive compilation, meaning that my subclasses do not generate the necessary stubs. If it's not available now, does anyone know if there are plans to implement it? Thanks, Kallin Nagelberg Consulting Architect

Re: Project Version

2007-12-27 Thread Kallin Nagelberg
I believe what is happening here has to do with my plugin haviing the '@requiresProject false' attribute set. On Dec 27, 2007 4:01 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: I'm trying to write a plugin in which I need to access the version of the plugin while it's running. I've tried using

Project Version

2007-12-27 Thread Kallin Nagelberg
I'm trying to write a plugin in which I need to access the version of the plugin while it's running. I've tried using ${project.version} within my plugin, but it always resolves to '2.0', as if it is obtaining the maven version. Does anyone know a way to obtain the version of the plugin?

Re: Project Version

2007-12-27 Thread Kallin Nagelberg
That worked. Thanks! On Dec 27, 2007 4:24 PM, Tom Huybrechts [EMAIL PROTECTED] wrote: Try ${plugin.version}. Not sure if it works, but it doesn't hurt to try. On Dec 27, 2007 10:06 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: I believe what is happening here has to do with my plugin

transitive dependencies

2007-12-22 Thread Kallin Nagelberg
I'm trying to write a plugin that builds a WAR using a variety of different artifacts. I have a 'pom' artifact that manages all my third party dependencies, and I would like to be able to use the 'maven-dependency-plugin' to unpack them all. Unfortunately, it seems that plugin only transitively

current directory from module

2007-12-21 Thread Kallin Nagelberg
I've written a plugin that is being used by an artifact of mine to create some files in my project structure (outside maven, like ../../somedir...). It all works great when I run it from the directory housing the artifact i'm interested in, but when I attempt to make this artifact a module of

Re: current directory from module

2007-12-21 Thread Kallin Nagelberg
I figured out how to do this by passing the ${basedir} property from the pom into my plugin. Problem solved! On Dec 21, 2007 12:11 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: I've written a plugin that is being used by an artifact of mine to create some files in my project structure (outside

plugins within plugins

2007-12-21 Thread Kallin Nagelberg
I've got a situation on my hands in which I need to convert a maven assembly system that was built to be only linux compatible to something cross platform. Among it's quirks, it generates pom files dynamically so that it can call plugins against it. The first windows hitch I've come across is the

Re: generated sources convention

2007-12-20 Thread Kallin Nagelberg
Thanks guys. I've already got it working with the build helper plugin, but was hoping there was some convention i could use to avoid it. Hopefully the maven guys move to add one eventually. On Dec 20, 2007 8:15 AM, Rémy Sanlaville [EMAIL PROTECTED] wrote: Hi, Use the *build* *helper* *plugin*

generated sources convention

2007-12-19 Thread Kallin Nagelberg
I'm working on adapting some source generation code into the maven lifecycle. I've written a plugin that is generating the sources (albeit at random places) and bound it to the generate sources phase. I've read in a couple places that the standard location is target/generated-sources/plugin-id.

Re: Assembly plugin - help include all subdirectories

2007-12-11 Thread Kallin Nagelberg
Your ant-path matching needs to change I believe. '*' means all files in present directory. '**/*' is what you want I believe. That would mean any file in any subdirectory (present directory included). Easier yet, get rid of the includes tag altogether. If you don't specify any excludes or

Re: Assembly plugin - help include all subdirectories

2007-12-11 Thread Kallin Nagelberg
Also, what's with the filesets? This looks more like an ant file than a maven pom... On Dec 11, 2007 9:39 AM, tadamski [EMAIL PROTECTED] wrote: Hello all, I am attempting to pull all the contents out of a directory, into a specified output directory. The problem I'm running into is that I

Re: JDK 1.5 java.lang.Enum Buid Failure using Maven 2.0.8

2007-12-11 Thread Kallin Nagelberg
To verify this you should try switching Eclipse to use your installed JDK compiler instead of the built in one. William also mentioned that ANT was producing successful builds as well, so unless ANT also uses it's own compiler it might be another issue.. On Dec 11, 2007 11:29 AM, Wayne Fay

Game archetype

2007-12-11 Thread Kallin Nagelberg
As much 'fun' as developing enterprise java applications with Maven is, I would like to think that developing games with Maven would be even better :) I'm hoping to convince the jMonkeyEngine project to let me mavenize their project, and in the process create a game archetype supporting 3d

Re: Game archetype

2007-12-11 Thread Kallin Nagelberg
Hehe, yeah I meant the gaming tutorials. And the tutorials are well written, but getting an environment up and running with the right native libraries etc. doesn't always work as expected, so hopefully maven can bring some order. On Dec 11, 2007 5:51 PM, Nick Stolwijk [EMAIL PROTECTED] wrote:

Re: Ant to Maven

2007-12-10 Thread Kallin Nagelberg
You may wish to start by using the maven-antrun-plugin, breaking up the ant into smaller files that you put alongside each pom of your multi-module project. This way you can avoid writing all the plugins/complex poms that, while ideal, would take more time initially. That is the approach my

Re: Ant to Maven

2007-12-10 Thread Kallin Nagelberg
-structured. We thought that we could incorporate some advantages from maven, such as repositories and work in a more high-level way. But nothing is too simple and wonderful like those Hello world examples. On Dec 10, 2007 11:20 AM, Kallin Nagelberg [EMAIL PROTECTED] wrote: You may wish to start

generating-sources missing resources

2007-12-08 Thread Kallin Nagelberg
I'm trying to convert the source-generation of a legacy system into a mavenized project. Basically I need to run a couple of java classes from an already existing dependency (during the generate-sources phase I assume) which should populate my source directories. The problem I'm having is that it

Re: generating-sources missing resources

2007-12-08 Thread Kallin Nagelberg
. 2007/12/8, Kallin Nagelberg [EMAIL PROTECTED]: I'm trying to convert the source-generation of a legacy system into a mavenized project. Basically I need to run a couple of java classes from an already existing dependency (during the generate-sources phase I assume) which should populate

Re: generating-sources missing resources

2007-12-08 Thread Kallin Nagelberg
declared dependencies BUT not to the project classes/ressources. (this may be a valuale enhancement to the plugin). Nico. 2007/12/8, Kallin Nagelberg [EMAIL PROTECTED]: Thanks for the prompt reply. My code-generator (the java classes anyways) have been packaged as a regular jar

Re: dependencies / is there a smart way to declare it?

2007-12-05 Thread Kallin Nagelberg
! Kallin Nagelberg Consulting Architect On Dec 5, 2007 4:02 PM, Michael McCallum [EMAIL PROTECTED] wrote: refactoring, composition, encasulation, aggregation standard techniques for making complex systems easier to understand... On Thu, 06 Dec 2007 09:42:49 Marco Mistroni wrote: hi all

Re: Maven and Ant

2007-12-05 Thread Kallin Nagelberg
I may be totally off on this but I'm pretty sure that when using the maven-antrun-plugin maven uses ant artifacts from the maven repo. IE some of these guys: http://www.mvnrepository.com/artifact/org.apache.ant On Dec 5, 2007 11:41 AM, [EMAIL PROTECTED] wrote: Newbie here .. .pretty much ...

antLib not producing same classpath as Mvn

2007-11-20 Thread Kallin Nagelberg
by this pom in my ant script it still shows the 1.0 version on the classpath. It seems that the maven antLib is not taking the parent's dependency management section into account. I've heard that the maven antlib does not always function as maven should. Is this true? Regards, Kallin Nagelberg