RE: [MavenBook] Using a public/private key scheme for site deployment

2005-08-16 Thread Aleksandr Shneyderman
Agreed, SSH stuff is probably the creepiest stuff to set up. Once figured out works pretty well though. The problem I think is that instructions are pretty much dependent on the exact combination of server/client ssh stuff you run. Here is what worked for me with pointers where your actions might

RE: jcoverage.ser file: purpose & clean impact?

2005-06-02 Thread Aleksandr Shneyderman
I do not know what the purpose of jcoverage.ser file but you can tell maven to instruct jcoverage to place it in your target by using maven.jcoverage.merge.outputDir property, so when you do clean it will remove the jcoverage.ser file too. Alex. > -Original Message- > From: Jeff Jensen [m

RE: how update local repo?

2005-04-19 Thread Aleksandr Shneyderman
I usually run maven console and quit. > -Original Message- > From: Alexander Rupsch [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 19, 2005 3:30 PM > To: Maven Users List > Subject: how update local repo? > > > Hi, > > is there a goal I can use to let maven update an artifact in > t

RE: Disable certain goal dependencies?

2005-02-22 Thread Aleksandr Shneyderman
Set maven.test.skip=true somewhere or if it is temprary provide it as -D option > -Original Message- > From: Guy Davis [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 22, 2005 4:58 PM > To: Maven Users List > Subject: Disable certain goal dependencies? > > > Hi there, > > We rec

Jar:deploy and directory group ownership

2005-02-15 Thread Aleksandr Shneyderman
I am trying to deploy my jars and while the group ownership is set allright the directories that are created to place the jar file into are not well group owned. They are basically set group not writable, which prevents anyone trying to deploy artifact after me into the same directory. Any ideas

RE: Creating a hibernate archive (HAR)

2004-12-15 Thread Aleksandr Shneyderman
LOL, What the heck is HAR? for renaming use ant:copy > I'm relatively new to Maven, and I'm trying to use some of > the built in > utilities to build a HAR (hibernate archive). My problem > stems from a > lack of knowledge of maven in general. I am having > difficulties getting > a conf

RE: Repository http://www.ibiblio.org/maven/

2004-12-15 Thread Aleksandr Shneyderman
Denmark, but the link is not working for me at least. > -Original Message- > From: dan tran [mailto:[EMAIL PROTECTED] > Sent: Wednesday, December 15, 2004 12:19 PM > To: Maven Users List > Subject: Re: Repository http://www.ibiblio.org/maven/ > > > where is 'dk'? US? > > -D > > > On

More of multiproject questions

2004-12-15 Thread Aleksandr Shneyderman
I started to think in terms of multiprojects lately and can not think of a good way to handle the following situation: I have business tier (BT) that relies on spring, that in turn relies on hibernate to do my ORM stuff. So BT declares the dependency on hibernate. Then I have a web presentati

RE: Multiproject --> not from top directory?

2004-12-15 Thread Aleksandr Shneyderman
Dan, thanks! > > First, make sure to add maven.multiproject.type to all > submodules If a a module depends on another module, add the > dependetn module to its list (ie, the finaly module, should > have the dependencies list to include all other modules) > > > Then from root, call maven mult

Multiproject --> not from top directory?

2004-12-14 Thread Aleksandr Shneyderman
I have a project that consists of multiple submodules All of the modules are on the same level. One module is the one that assembles the final app. How do I tell multiproject to look for dependent modules in ${basedir}/../dep-mod-A, ${basedir}/../dep-mod-B and so on? Thanks, Alex.

RE: German translation

2004-11-11 Thread Aleksandr Shneyderman
Try altavista they are the language translation experts, but thye only have limited selection of languages to translate to. I guess German is one of the languages on the list -Original Message- From: Daniel Frey [mailto:[EMAIL PROTECTED] Sent: Thursday, November 11, 2004 6:23 PM To: 'Mave

RE: automated eclipse projects

2004-08-27 Thread Aleksandr Shneyderman
Use Multiproject import plugin. So you would run "maven -Dgoal=eclipse multiproject:goal" This will create .classpath and .project files Then use mutiproject plugin to import projects in bulk. Here is the link to the plugin: http://eclipse-plugins.2y.net/eclipse/plugin_details.jsp?id=599 Alex.

RE: Building Webapps

2004-08-12 Thread Aleksandr Shneyderman
Write appropriate filter not to include tons of stuff **/* is just one example which obviously is not what you need. -Original Message- From: David Erickson [mailto:[EMAIL PROTECTED] Sent: Thursday, August 12, 2004 3:47 PM To: Maven Users List; [EMAIL PROTECTED] Subject: Re: Building

RE: IntelliJ (or any IDE) classpath

2004-05-08 Thread Aleksandr Shneyderman
I am not sure how IntelliJ does it but in Eclipse I configure a variable to point to my local maven Repository and mount relevant jars for the project Using the variable. All of my prjects use realtively Small amount of jars, so it is feasible in my case. Also, make sure to run maven for the firs

Building optinal plugins - problem

2004-03-25 Thread Aleksandr Shneyderman
I checked out CVS sources of optional plugins and was trying to build them. It builds the first few and then chokes on appserver plugin; at this point maven kick me out, saying build failed. I append the output of a sample run. Couple of questions though. If appserver is the first offending plu

Re: XDoclet plugin strange behavior

2004-01-04 Thread Aleksandr Shneyderman
Konstantin Priblouda wrote: Well, if yoyu use gourpid, you have to call your xjavadoc xdoclet-xjavadoc.whatever.jar According to the documentation the files are located according to the following pattern: ${repo}/${groupId}/${type}s/${artifactId}-${version}.${type} So if my dependency looks som

XDoclet plugin strange behavior

2004-01-03 Thread Aleksandr Shneyderman
As you have probably noticed for the last couple of days I was struggling with XDoclet plugin. What I did is I downloaded their 1.2 version, created xdoclet/jars directory in my local repository, copied over the jars that come with the xdoclet. I then copied xdoclet's maven-plugin jar to my plug

Re: Maven Xdoclet problem

2004-01-02 Thread Aleksandr Shneyderman
depend on version 3.0 of B pacakge. It seems a bit awkward to chase the dependencies. I was wondering how would I depend on package rather than jar files? Thanks, Alex. Aleksandr Shneyderman wrote: xdoclet-hibernate-module xdoclet 1.2b4 jar I have

Re: Maven Xdoclet problem

2004-01-02 Thread Aleksandr Shneyderman
xdoclet-hibernate-module xdoclet 1.2b4 jar I have: xdoclet+hibernate-module 1.2 I am not quite sure what this means exactly, but I snaged it from some other script and thought it would do the trick. I tried

Maven Xdoclet problem

2004-01-02 Thread Aleksandr Shneyderman
Hello, everyone! I am trying to get xdoclet working with maven. So I built maven from CVS and downloaded XDoclet 1.2 from sf.net I created xdoclet/jars directory in my local repository and copied maven-xdoclet plugin over to the plugins directory. When I run maven xdoclet:hibernatedoclet I am ge