active questions tagged maven - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:21:57Z http://stackoverflow.com/feeds/tag/maven http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1805274/eclipse-wont-believe-i-have-maven-2-2-1 0 Eclipse won't believe I have Maven 2.2.1 Andrew Clegg 2009-11-26T19:17:24Z 2009-11-26T22:35:48Z <p>I have a project (built from an AppFuse template) that requires Maven 2.2.1. So I upgraded to this (from 2.1.0) and set my path and my <code>M2_HOME</code> and <code>MAVEN_HOME</code> env variables.</p> <p>Then I ran <code>mvn eclipse:eclipse </code>and imported the project into Eclipse (Galileo).</p> <p>However, in the problems list for the project (and at the top of the pom.xml GUI editor) it says:</p> <blockquote> <p>Unable to build project '/export/people/clegg/data/GanymedeWorkspace/funcserve/pom.xml; it requires Maven version 2.2.1</p> </blockquote> <p>This persists whether I set Eclipse to use its Embedded Maven implementation, or the external 2.2.1 installation, in the Preferences -> Maven -> Installations dialog.</p> <p>I've tried closing and reopening the project, reindexing the repository, cleaning the project, restarting the IDE, logging out and back in again, everything I can think of! But Eclipse still won't believe I have Maven 2.2.1.</p> <p>I just did a plugin update so I have the latest version of Maven Integration for Eclipse -- 0.9.8.200905041414.</p> <p>Does anyone know how to convince Eclipse I <strong>really do</strong> have the right version of Maven? It's like it's recorded the previous version somewhere else and won't pay any attention to my changes :-(</p> <p>Many thanks!</p> <p>Andrew.</p> http://stackoverflow.com/questions/1804215/what-are-solid-nmaven-or-build-server-for-net-alternatives 0 What are solid NMaven or build server for .NET alternatives? Abel 2009-11-26T15:10:14Z 2009-11-26T17:22:10Z <p><a href="http://maven.apache.org/" rel="nofollow">Maven</a> had a long history and is well supported in the Java world. <a href="http://www.codeplex.com/nmaven" rel="nofollow">NMaven</a> has received a less successful start and has never became as popular in the C#/.NET world as its larger cousin was in the Java world. The project seems close to dead(ish), but maybe I'm wrong.</p> <p>Are there alternatives that, preferably using <a href="http://nant.sourceforge.net/" rel="nofollow">NAnt</a>, are commonly used in favor of NMaven and have similar properties as Maven? What I'm looking for is a good open source automatic build server for .NET, if any exists. Or should I continue using NMaven?</p> http://stackoverflow.com/questions/1796036/maven-repo-spring-security-rc 0 maven repo spring-security RC sab 2009-11-25T10:30:53Z 2009-11-26T01:04:53Z <p>hi! can't find it anywhere:</p> <pre><code>&lt;dependency&gt; &lt;groupId&gt;org.springframework.security&lt;/groupId&gt; &lt;artifactId&gt;spring-security-core&lt;/artifactId&gt; &lt;version&gt;3.0.0.RC2&lt;/version&gt; &lt;/dependency&gt; </code></pre> <p>same with RC1. Does anyone now where to get it? thanks</p> http://stackoverflow.com/questions/1790000/exclude-dependency-in-a-profile 2 Exclude dependency in a profile Thomas Lötzer 2009-11-24T13:17:56Z 2009-11-25T15:35:22Z <p>I have a maven module which has some dependencies. In a certain profile, I want to exclude some of those dependencies (to be exact, all dependencies with a certain group id). They however need to be present in all other profiles. Is there a way to specify exclusions from the dependencies for a profile?</p> http://stackoverflow.com/questions/1795918/maven-surefire-reports-show-multiple-class-entries-rather-than-a-suite 0 Maven Surefire reports show multiple class entries rather than a suite. Coding Monkey 2009-11-25T10:10:46Z 2009-11-25T13:12:38Z <p>Hello,</p> <p>I've been asked to configure Maven's surefire report generator to include one entry for the test suite which in turn tests classes A,B and C but instead of seeing this: A B C MySuite I see this A B C A B C</p> <p>So there's two problems really: 1) How do I stop the tests running twice. 2) How do I get the report to show me one entry per class or suite.</p> <p>You might ask why is this so important, the answer is the Architect wants to see one test which encompases the whole 'component' and shows one entry in the report for it and I don't want tests to run twice, (or even more) times.</p> <p>Thanks and regards,</p> <p>CM</p> http://stackoverflow.com/questions/1598595/sourceforge-org-property-for-ivy-and-nexus 0 Sourceforge org property for Ivy and Nexus Brandon 2009-10-21T03:32:10Z 2009-11-24T19:19:38Z <p>When trying to use the following settings:</p> <pre><code>&lt;dependency org="net.sourceforge.artifact" name="artifact" rev="2.0"/&gt; </code></pre> <p>and:</p> <pre><code>&lt;artifact pattern="http://localhost/nexus/content/repositories/releases/[module]/[artifact]/[revision]/[artifact]-[revision].[ext]" /&gt; </code></pre> <p>Nexus expects</p> <pre><code>http:// ... net/sourceforge/artifact/artifact/revision/artifact.ext </code></pre> <p>but net and sourceforge are being completely dropped like so:</p> <pre><code>http:// ... artifact/artifact/revision/artifact.ext </code></pre> http://stackoverflow.com/questions/1784132/intellij-community-cant-use-http-proxy-for-maven 1 Intellij Community can't use http proxy for Maven MikeHoss 2009-11-23T16:07:36Z 2009-11-24T10:22:29Z <p>I have Intellij IDEA Community installed on a Linux box that needs to use an authenticated proxy to get to the Internet. I have a system-wide proxy on the box that works, and I have the proxy configured in ~/.m2/settings.xml. Maven correctly uses the proxy when I run try it from the command-line. </p> <p>I have the same proxy configured within Intellij and it gives me the plugins listing correctly. But when I try to sync with the Maven repository withing Intellij I keep getting this:</p> <pre><code>[WARNING] Unable to get resource 'org.codehaus.mojo:hibernate3-maven-plugin:pom:2.2' from repository restlet (http://maven.restlet.org): Authorization failed: Not authorized by proxy. </code></pre> <p>I went to Settings->Maven and put in the proxy info as properties and that didn't work. I can see by looking at those settings that Intellij is reading my ~./m2/settings.xml fine because it knows where my local repo is (it's in a non-standard place).</p> <p>Anyone know how I can get this working?</p> http://stackoverflow.com/questions/1775710/starting-a-new-maven-project-what-landmines-to-avoid 3 Starting a new Maven project, what landmines to avoid? Dean J 2009-11-21T15:03:46Z 2009-11-23T17:35:51Z <p>I'm starting a new project. I intend to use Maven for the first time. From reading previous threads, the folks who like Maven have me convinced... but the folks who <em>hate</em> Maven seem to have stepped on landmines, and I'd love to have more details.</p> <p>It seems like I'll be bound into following Maven's conventions. Is that an understatement? Is there something else?</p> <p>*This will be a medium-size, medium complexity project; my ballpark would be 10k lines of code, growing to no more than 100k in it's lifetime. (I'd consider <em>big</em> to be >500k, and small to be &lt;10k, FWIW).*</p> <p><em>Yes, I'm using Maven. If the pitfall is "Maven", without any other details, you're wasting bandwidth on the reply.</em></p> http://stackoverflow.com/questions/1782352/filtering-maven-files-into-web-inf 2 Filtering Maven files into WEB-INF Xetius 2009-11-23T10:48:21Z 2009-11-23T12:10:05Z <p>I am trying to add some filtering to the application context file, which resides in the WEB-INF directory. </p> <p>I have the file which is to be filtered (xmlgateway-context.xml) in the folder /src/main/resources. </p> <p>I have the properties files (config-e05.properties) in the folder src/main/filters</p> <p>And I have the POM set up as follows:</p> <pre><code>&lt;!-- environment profiles --&gt; &lt;profiles&gt; &lt;profile&gt; &lt;id&gt;e04&lt;/id&gt; &lt;properties&gt; &lt;targetenv&gt;e04&lt;/targetenv&gt; &lt;/properties&gt; &lt;/profile&gt; &lt;profile&gt; &lt;id&gt;e05&lt;/id&gt; &lt;properties&gt; &lt;targetenv&gt;e05&lt;/targetenv&gt; &lt;/properties&gt; &lt;/profile&gt; &lt;/profiles&gt; &lt;!-- build settings (filtering) --&gt; &lt;build&gt; &lt;filters&gt; &lt;filter&gt;src/main/filters/config-${targetenv}.properties&lt;/filter&gt; &lt;/filters&gt; &lt;resources&gt; &lt;resource&gt; &lt;targetPath&gt;WEB-INF&lt;/targetPath&gt; &lt;filtering&gt;true&lt;/filtering&gt; &lt;directory&gt;src/main/resources&lt;/directory&gt; &lt;/resource&gt; &lt;/resources&gt; &lt;/build&gt; </code></pre> <p>This will mvn install correctly, but when I open the output war file, I was expecting the file xmlgateway-context.xml to be in the /WEB-INF directory, but it ends up in the folder /WEB-INF/classes/WEB-INF.</p> <p>How can I get this file into the right place.</p> <p>Alternatively, can I put the application context into a different location and have it referenced there.</p> http://stackoverflow.com/questions/1769245/anonymize-pom-xml-on-release 2 Anonymize pom.xml on release mhaller 2009-11-20T09:12:17Z 2009-11-21T06:43:30Z <p>I've got artefacts which are built and released using Maven. The artefact's original pom.xml contains the usual project information (artifactId, name, etc.) and the dependencies. That's fine. But the pom.xml also includes private information such as the SCM URLs, the names of the developers or a parent-artefact.</p> <p>Is there any way to tell Maven to generate a pom.xml which is sanitized, so the artefact can be released to public, without destroying the technical relevant information such as the dependencies?</p> <p>Neither the SCM URLs, nor the list of developers nor the existence of a parent-pom (which is only used for DepMgmt definitions and other meta-stuff) is imho relevant for users of the artefact, so I assume i could be removed from a released pom.xml</p> <p>The pom.xml both in an repository manager such as Archiva and packaged within the artefact's jar file contain those informations. I assume Maven is just copying the whole thing.</p> <p>To summarize:</p> <p>I have:</p> <pre><code>&lt;project&gt; &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt; &lt;groupId&gt;org.example&lt;/groupId&gt; &lt;artifactId&gt;my-artifact&lt;/artifactId&gt; &lt;scm&gt; &lt;connection&gt;scm:svn:http://buildmachine/org.example/my-artifact/trunk&lt;/connection&gt; &lt;developerConnection&gt;scm:svn:http://buildmachine/org.example/my-artifact/trunk&lt;/developerConnection&gt; &lt;url&gt;http://buildmachine/org.example/my-artifact/trunk&lt;/url&gt; &lt;/scm&gt; &lt;dependencies&gt; &lt;dependency&gt; ... &lt;/dependency&gt; &lt;/dependencies&gt; </code></pre> <p>I want:</p> <pre><code>&lt;project&gt; &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt; &lt;groupId&gt;org.example&lt;/groupId&gt; &lt;artifactId&gt;my-artifact&lt;/artifactId&gt; &lt;dependencies&gt; &lt;dependency&gt; ... &lt;/dependency&gt; &lt;/dependencies&gt; </code></pre> http://stackoverflow.com/questions/1772169/deleting-repositories-in-archiva 0 deleting repositories in Archiva Jeff Storey 2009-11-20T17:47:42Z 2009-11-20T17:47:42Z <p>I deleted a repository from archiva but I only deleted the configuration and not the contents. When I'm ready to delete the contents, what's the best way to do so?</p> <p>thanks, Jeff</p> http://stackoverflow.com/questions/1728722/maven-webstart-plugin-not-finding-dependencies 0 Maven webstart plugin not finding dependencies Seth 2009-11-13T11:39:54Z 2009-11-19T18:21:48Z <p>Hoping someone can help me with this strange one. I’m trying to run the webstart plugin but it doesn’t seem to be able to find the main class within the jar being produce. The pom is as simple as it can get, and the class Test exists, and is being compiled and placed in the jar. Can someone please point me in the right direction?</p> <p></p> <p>4.0.0</p> <p>Desktop Components</p> <p>com.test</p> <p>test</p> <p>1.0</p> <p>jar</p> <p></p> <pre><code>&lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.codehaus.mojo.webstart&lt;/groupId&gt; &lt;artifactId&gt;webstart-maven-plugin&lt;/artifactId&gt; &lt;executions&gt; &lt;execution&gt; &lt;phase&gt;process-resources&lt;/phase&gt; &lt;goals&gt; &lt;goal&gt;jnlp-download-servlet&lt;/goal&gt; &lt;/goals&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;configuration&gt; &lt;jnlpFiles&gt; &lt;jnlpFile&gt; &lt;jarResources&gt; &lt;jarResource&gt; &lt;groupId&gt;com.test&lt;/groupId&gt; &lt;artifactId&gt;test&lt;/artifactId&gt; &lt;version&gt;1.0&lt;/version&gt; &lt;mainClass&gt;Test&lt;/mainClass&gt; &lt;/jarResource&gt; &lt;/jarResources&gt; &lt;/jnlpFile&gt; &lt;/jnlpFiles&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;/plugins&gt; </code></pre> <p></p> <p></p> <p>C:\TEMP\webstart-test>mvn webstart:jnlp –e</p> <ul> <li>Error stacktraces are turned on.</li> </ul> <p>[INFO] Scanning for projects...</p> <p>[INFO] ------------------------------------------------------------------------</p> <p>[INFO] Building Desktop Components</p> <p>[INFO] task-segment: [webstart:jnlp] (aggregator-style)</p> <p>[INFO] ------------------------------------------------------------------------</p> <p>[INFO] Preparing webstart:jnlp</p> <p>[INFO] ------------------------------------------------------------------------</p> <p>[INFO] Building Desktop Components</p> <p>[INFO] ------------------------------------------------------------------------</p> <p>[INFO] [resources:resources {execution: default-resources}]</p> <p>[WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources,</p> <p>i.e. build is platform dependent!</p> <p>[INFO] skip non existing resourceDirectory C:\TEMP\webstart-test\src\main\resour</p> <p>ces</p> <p>[INFO] [webstart:jnlp-download-servlet {execution: default}]</p> <p>[INFO] No templateFilename found for launch2.jnlp. Will use the default template</p> <p>.</p> <p>[INFO] No resources found in C:\TEMP\webstart-test\src\main\jnlp\resources</p> <p>Downloading: <a href="http://repo1.maven.org/maven2/com/test/test/1.0/test-1.0.pom" rel="nofollow">http://repo1.maven.org/maven2/com/test/test/1.0/test-1.0.pom</a></p> <p>[INFO] Unable to find resource 'com.test:test:pom:1.0' in repository central (ht</p> <p>tp://repo1.maven.org/maven2)</p> <p>No template specified Using default one.</p> <p><strong>*</strong> Webstart JAR URL: jar:file:/C:/apache-maven-2.2.1/repo/org/codehaus/mojo/w</p> <p>ebstart/webstart-maven-plugin/1.0-alpha-2/webstart-maven-plugin-1.0-alpha-2.jar!</p> <p>/</p> <p>[INFO] [compiler:compile {execution: default-compile}]</p> <p>[INFO] Nothing to compile - all classes are up to date</p> <p>[INFO] [resources:testResources {execution: default-testResources}]</p> <p>[WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources,</p> <p>i.e. build is platform dependent!</p> <p>[INFO] skip non existing resourceDirectory C:\TEMP\webstart-test\src\test\resour</p> <p>ces</p> <p>[INFO] [compiler:testCompile {execution: default-testCompile}]</p> <p>[INFO] No sources to compile</p> <p>[INFO] [surefire:test {execution: default-test}]</p> <p>[INFO] No tests to run.</p> <p>[INFO] [jar:jar {execution: default-jar}]</p> <p>[INFO] Building jar: C:\TEMP\webstart-test\target\test-1.0.jar</p> <p>[INFO] [webstart:jnlp {execution: default-cli}]</p> <p>[INFO] No resources found in C:\TEMP\webstart-test\src\main\jnlp\resources</p> <p>[INFO] ------------------------------------------------------------------------</p> <p>[ERROR] BUILD ERROR</p> <p>[INFO] ------------------------------------------------------------------------</p> <p>[INFO] Failure to run the plugin:</p> <p>[INFO] ------------------------------------------------------------------------</p> <p>[INFO] Trace</p> <p>org.apache.maven.lifecycle.LifecycleExecutionException: Failure to run the plugi</p> <p>n:</p> <pre><code> at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(Defa </code></pre> <p>ultLifecycleExecutor.java:719)</p> <pre><code> at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandalone </code></pre> <p>Goal(DefaultLifecycleExecutor.java:569)</p> <pre><code> at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(Defau </code></pre> <p>ltLifecycleExecutor.java:539)</p> <pre><code> at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHan </code></pre> <p>dleFailures(DefaultLifecycleExecutor.java:387)</p> <pre><code> at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegmen </code></pre> <p>ts(DefaultLifecycleExecutor.java:284)</p> <pre><code> at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLi </code></pre> <p>fecycleExecutor.java:180)</p> <pre><code> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:328) at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138) at org.apache.maven.cli.MavenCli.main(MavenCli.java:362) at org.apache.maven.cli.compat.CompatibleMain.main(CompatibleMain.java:6 </code></pre> <p>0)</p> <pre><code> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl. </code></pre> <p>java:39)</p> <pre><code> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces </code></pre> <p>sorImpl.java:25)</p> <pre><code> at java.lang.reflect.Method.invoke(Method.java:592) at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315) at org.codehaus.classworlds.Launcher.launch(Launcher.java:255) at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430) at org.codehaus.classworlds.Launcher.main(Launcher.java:375) </code></pre> <p>Caused by: org.apache.maven.plugin.MojoExecutionException: Failure to run the pl</p> <p>ugin:</p> <pre><code> at org.codehaus.mojo.webstart.AbstractJnlpMojo.execute(AbstractJnlpMojo. </code></pre> <p>java:289)</p> <pre><code> at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPlugi </code></pre> <p>nManager.java:490)</p> <pre><code> at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(Defa </code></pre> <p>ultLifecycleExecutor.java:694)</p> <pre><code> ... 17 more </code></pre> <p>Caused by: java.lang.NullPointerException</p> <pre><code> at org.codehaus.mojo.webstart.AbstractJnlpMojo.execute(AbstractJnlpMojo. </code></pre> <p>java:214)</p> <pre><code> ... 19 more </code></pre> <p>[INFO] ------------------------------------------------------------------------</p> <p>[INFO] Total time: 9 seconds</p> <p>[INFO] Finished at: Fri Nov 13 11:16:54 GMT 2009</p> <p>[INFO] Final Memory: 12M/22M</p> <p>[INFO] ------------------------------------------------------------------------</p> http://stackoverflow.com/questions/1749731/how-to-determine-at-runtime-the-path-to-a-mavenized-eclipse-project-directory 0 How to determine at runtime the path to a Mavenized Eclipse project directory David Moles 2009-11-17T15:40:28Z 2009-11-19T08:16:37Z <p>Total Maven newbie, trying (along with the rest of a sizeable team) to convert a monstrous pile of legacy code from ant over to Maven. It's working reasonably well, but I'm having the following problem.</p> <p>I have a project, let's call it Core, that at runtime needs to load some files checked in under some different projects, let's call them Resources A and B. The Core code is started in a certain working directory, let's call it <em>core/runtime</em>, and there's a properties file it reads in order to determine what to load from Resources A and B, complete with the relative path to the resources in question, e.g.</p> <pre><code> resource.ham=../../resources-a/files/ham.rsrc resource.eggs=../../resources-b/files/eggs.rsrc </code></pre> <p>(Yes, I'm aware this is sick and wrong and we should be loading resources <em>as resources</em>, from a JAR via a classloader and maybe some sort of container or dependency injector or whatever. Not my idea, not my current problem, not on the table to be fixed now.)</p> <p>(Seriously, <b>please</b> don't bother suggesting we fix the underlying problem. We <i>know</i> we need to fix the underlying problem. We knew we needed to fix the underlying problem <i>before</i> we switched to Maven, and before we switched to Maven the stupid hack <i>actually worked.</i> I know it makes you feel good, but it's <b>not helpful</b>. This is a ten-year-old codebase with tens of thousands of classes and believe me, there are plenty of more important things wrong with it.)</p> <p>This relative-path hack is only an issue in Eclipse, during development; in the actual deployed application the files live somewhere completely different and are loaded in a somewhat more sensible way.</p> <p>Anyhow, this all worked fine when these were vanilla Eclipse projects, so the directories in question had paths like:</p> <pre><code> c:\workspace\core\runtime c:\workspace\resources-a\files c:\workspace\resources-b\files </code></pre> <p>However, now that these are checked out as Maven projects, the directories are now something like:</p> <pre><code> c:\workspace\core\runtime # Inexplicably unchanged c:\workspace\maven.8675309\resources-a\files c:\workspace\maven.6345789\resources-b\files </code></pre> <p>Questions:</p> <ul> <li>Can I make these <code>maven.7762323</code> directories go away?</li> <li>If not, is there some way in Eclipse to get the path to a project directory, and then pass that as a system property in a launch configuration, or something like that?</li> </ul> <p>Any solution has to be one I can check into SVN so the other developers on my team can use it out of the box.</p> <h3>Update</h3> <p>Okay, I figured out where the <code>maven.[number]</code> directories come from: When you select a parent directory in the SVN repository and say "Check out as Maven project", you get a <code>maven.[number]</code> directory corresponding to the parent, with all the actual projects as subdirectories. It would be very convenient, if only the code was actually all in the same parent directory, or even in the same SVN repository.</p> http://stackoverflow.com/questions/1713681/is-there-a-way-to-just-copy-resources-when-using-a-maven-archetype-no-velocity 0 Is there a way to just copy resources when using a Maven archetype (no Velocity)? Peter Becker 2009-11-11T07:48:34Z 2009-11-12T02:45:30Z <p>We are using a Maven archetype to create an initial setup for projects using our framework, which relies heavily on Freemarker. As a consequence we need to copy a few Freemarker templates when the archetype is used to generate a new project.</p> <p>The problem we ran into is that Maven seems to run Velocity on all of the files listed as resources. Velocity tries to interpret our Freemarker code and fails, so we need to use escapes in many places.</p> <p>Is there a way to tell Maven to just copy the files? We don't want the Velocity engine to run at all for our files.</p> http://stackoverflow.com/questions/1711424/publish-cruisecontrol-latest-build-artifacts-to-a-static-url 1 Publish CruiseControl LATEST build artifacts to a static URL Dougnukem 2009-11-10T21:40:52Z 2009-11-10T21:40:52Z <p>I have a Java multi-module maven project that I want to build a mvn site and javadocs and have CruiseControl publish the latest daily builds to a configured static location.</p> <p>The trouble is the CruiseControl <a href="http://cruisecontrol.sourceforge.net/main/configxml.html#artifactspublisher" rel="nofollow">artifactPublisher</a> allows you to specify a dest directory but it is timestamped with the latest time of the last build. I want to be able to publish to a location that gets overridden on each build, such as:</p> <ul> <li><a href="http://cc-buildserver/cruisecontrol/artifacts/gameplatform-documentation/" rel="nofollow">http://cc-buildserver/cruisecontrol/artifacts/gameplatform-documentation/</a> </li> </ul> <p><strong><a href="http://cruisecontrol.sourceforge.net/main/configxml.html#artifactspublisher" rel="nofollow">artifactPublisher documentation</a>:</strong></p> <blockquote> <p>dir - will copy all files from this directory</p> <p>dest - parent directory of actual destination directory; actual destination directory name will be the build timestamp. </p> <p>subdirectory - subdirectory under the unique (timestamp) directory to contain artifacts</p> </blockquote> <p>For example if I have a CruiseControl project called gameplatform-documentation and I configure my artifactPublisher as such:</p> <pre><code>&lt;project name="gameplatform-documentation" forceOnly="true" requireModification="false" forceBuildNewProject="false" buildafterfailed="false"&gt; ... &lt;schedule&gt; &lt;composite time="2300"&gt; &lt;maven2 mvnhome="${mvn.home}" pomfile="${dev.root}/gameplatform-parent/pom.xml" goal="site" /&gt; &lt;/composite&gt; &lt;/schedule&gt; &lt;publishers&gt; &lt;artifactspublisher dir="${dev.root}/gameplatform-parent/target/site" dest="artifacts/gameplatform-documentation" /&gt; &lt;/publishers&gt; &lt;/project&gt; </code></pre> <p>I end up with my Maven generated site and javadocs in a different directory each build:</p> <ul> <li><a href="http://cc-buildserver/cruisecontrol/cruisecontrol/artifacts/gameplatform-documentation/20091110130202/" rel="nofollow">http://cc-buildserver/cruisecontrol/cruisecontrol/artifacts/gameplatform-documentation/20091110130202/</a></li> </ul> <p>Maybe I need to use a custom AntPublisher or FTPPublisher and create another webserver to host the published docs. I could also use CC source control tools and checkin the documentation into our SVN server and use that to serve the documentation (does anyone have any good tutorials for checking in mvn site into SVN?)</p> http://stackoverflow.com/questions/1689227/maven-is-it-a-good-common-practice-to-use-it-only-for-dependency-mgmt-and-the 1 maven - is it a good / common practice to use it only for dependency mgmt and then let the ant do everything else..? rjk2008 2009-11-06T17:51:22Z 2009-11-09T21:17:46Z <p>I am newbie with maven. </p> <p>Other than its use for managing dependencies, I am finding little use for it. </p> <p>It was getting so hard to write up a pom.xml, that I generated a ant build.xml from one of maven's tasks (which is a nice handy task...) I had to tweak the build.xml that was generated by maven. And now all my compiling, testing, etc., is being done with this build.xml..</p> <p>Is such a combination common? I am thinking of making it permanent in my project.</p> http://stackoverflow.com/questions/1683159/maven-snapshot-repositories 0 maven snapshot repositories Jeff Storey 2009-11-05T20:01:44Z 2009-11-05T20:32:36Z <p>My project depends on a 3rd party library that only has snapshots in its maven repository (no releases, which seems strange, but that's how it is). Every time I do a full build (and clean my local .m2 repository) maven will obviously go and grab the latest build.</p> <p>My repository proxies the one with the snapshots in it, is there anyway to tell my repository to stop pulling new versions and basically just keep the current version? I really don't want to be pulling a new build every night.</p> <p>The only thought I had is to manually label the current versions, but there quite a few dependencies and they are all dependent on the SNAPSHOT versions. Is there an easier way to do this?</p> <p>thanks,</p> <p>Jeff</p> http://stackoverflow.com/questions/1677473/maven-doesnt-recognize-sibling-modules-when-running-mvn-dependencytree 1 Maven doesn't recognize sibling modules when running mvn dependency:tree Steven Schlansker 2009-11-04T23:47:18Z 2009-11-05T07:01:42Z <p>I'm trying to set up a multi-module Maven project, and the inter-module dependencies are apparently not being set up correctly.</p> <p>I have:</p> <pre><code>&lt;modules&gt; &lt;module&gt;commons&lt;/module&gt; &lt;module&gt;storage&lt;/module&gt; &lt;/modules&gt; </code></pre> <p>in the parent POM (which has a packaging-type pom) and then subdirectories commons/ and storage/ which define JAR poms with the same name.</p> <p>Storage depends on Commons.</p> <p>In the main (master) directory, I run mvn dependency:tree and see:</p> <pre><code>[INFO] Building system [INFO] task-segment: [dependency:tree] [INFO] ------------------------------------------------------------------------ [INFO] [dependency:tree {execution: default-cli}] [INFO] domain:system:pom:1.0-SNAPSHOT [INFO] \- junit:junit:jar:3.8.1:test [INFO] ------------------------------------------------------------------------ [INFO] Building commons [INFO] task-segment: [dependency:tree] [INFO] ------------------------------------------------------------------------ [INFO] [dependency:tree {execution: default-cli}] ...correct tree... [INFO] ------------------------------------------------------------------------ [INFO] Building storage [INFO] task-segment: [dependency:tree] [INFO] ------------------------------------------------------------------------ Downloading: http://my.repo/artifactory/repo/domain/commons/1.0-SNAPSHOT/commons-1.0-SNAPSHOT.jar [INFO] Unable to find resource 'domain:commons:jar:1.0-SNAPSHOT' in repository my.repo (http://my.repo/artifactory/repo) [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] Failed to resolve artifact. Missing: ---------- 1) domain:commons:jar:1.0-SNAPSHOT </code></pre> <p>Why does the dependency on "commons" fail, even though the reactor has obviously seen it because it successfully processes its dependency tree? It should definitely not be going to the 'net to find it as it's right there...</p> <p>The pom for storage:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&gt; &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt; &lt;packaging&gt;jar&lt;/packaging&gt; &lt;parent&gt; &lt;artifactId&gt;system&lt;/artifactId&gt; &lt;groupId&gt;domain&lt;/groupId&gt; &lt;version&gt;1.0-SNAPSHOT&lt;/version&gt; &lt;/parent&gt; &lt;groupId&gt;domain&lt;/groupId&gt; &lt;artifactId&gt;storage&lt;/artifactId&gt; &lt;name&gt;storage&lt;/name&gt; &lt;url&gt;http://maven.apache.org&lt;/url&gt; &lt;dependencies&gt; &lt;!-- module dependencies --&gt; &lt;dependency&gt; &lt;groupId&gt;domain&lt;/groupId&gt; &lt;artifactId&gt;commons&lt;/artifactId&gt; &lt;version&gt;1.0-SNAPSHOT&lt;/version&gt; &lt;/dependency&gt; &lt;!-- other dependencies --&gt; &lt;dependency&gt; &lt;groupId&gt;junit&lt;/groupId&gt; &lt;artifactId&gt;junit&lt;/artifactId&gt; &lt;version&gt;3.8.1&lt;/version&gt; &lt;scope&gt;test&lt;/scope&gt; &lt;/dependency&gt; &lt;/dependencies&gt; &lt;/project&gt; </code></pre> <p>Thanks for any suggestions!</p> <p>(Edit)</p> <p>To clarify, what I am looking for here is this: I don't want to have to install module X to build module Y which depends on X, given that both are modules referenced from the same parent POM. This makes intuitive sense to me that if I have two things in the same source tree, I shouldn't have to install intermediate products to continue the build. Hopefully my thinking makes some sense here...</p> http://stackoverflow.com/questions/1671580/maven-assembly-plugin-with-maven-jar-plugin 0 Maven assembly Plugin with Maven Jar Plugin Klaus 2009-11-04T03:48:40Z 2009-11-04T19:19:40Z <p>Hi,</p> <p>I'm trying to use the maven assembly plugin for the first time. Essentially, I want to combine the output of the maven assembly plugin with that of the maven jar plugin into the target/classes directory so I can still run the app within Eclipse. </p> <p>I couldn't find a way to tell the maven jar plugin to collect the output of the maven assembly plugin. Similarly, I found no way to tell assembly plugin to put its output into target/classes.</p> <p>The closes i cam to a solution was to tell assembly plugin to output its result into classes.dir directory. The suffix 'dir' is the format used while 'classes' is the finalName define in the plugin configuration. </p> <p>I was hoping that directory-single would force assembly plugin to ignore the format and hence, output in the classes directory. This doesn't work for me; am i misinterpreting the description of this goal?</p> <p>How would you guys solve this issue? Below is my assembly plugin declaration in the pom as well as my descriptor:</p> <pre><code> &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt; &lt;version&gt;2.2-beta-1&lt;/version&gt; &lt;executions&gt; &lt;execution&gt; &lt;id&gt;package&lt;/id&gt; &lt;goals&gt; &lt;goal&gt;directory-single&lt;/goal&gt; &lt;/goals&gt; &lt;phase&gt;package&lt;/phase&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;configuration&gt; &lt;appendAssemblyId&gt;false&lt;/appendAssemblyId&gt; &lt;finalName&gt;classes&lt;/finalName&gt; &lt;descriptors&gt; &lt;descriptor&gt;descriptor.xml&lt;/descriptor&gt; &lt;/descriptors&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;assembly&gt; &lt;files&gt; &lt;file&gt; &lt;source&gt;${repository-path}&lt;/source&gt; &lt;outputDirectory&gt;/&lt;/outputDirectory&gt; &lt;filtered&gt;true&lt;/filtered&gt; &lt;destName&gt;repository.xml&lt;/destName&gt; &lt;/file&gt; &lt;/files&gt; &lt;fileSets&gt; &lt;fileSet&gt; &lt;directory&gt;src/main/resources&lt;/directory&gt; &lt;outputDirectory&gt;/&lt;/outputDirectory&gt; &lt;/fileSet&gt; &lt;fileSet&gt; &lt;directory&gt;${project.build.directory}&lt;/directory&gt; &lt;/fileSet&gt; &lt;/fileSets&gt; &lt;/assembly&gt; </code></pre> http://stackoverflow.com/questions/1624307/how-to-check-licence-of-third-party-jars 1 How to check licence of third-party jars GraemeL 2009-10-26T11:31:13Z 2009-10-29T23:15:49Z <p>We distribute a number of third-party jars with our product. </p> <p>Is there any way I can analyse or perform a lookup on each jar in order to determine its license - e.g. CDDL v1.0, Apache License Version 2.0?</p> <p>I thought maven might provide an answer, but a quick search of the repositories shows that many projects do not provide their license information (e.g. ant, lucene).</p> <p>How do others ensure they comply with the various licenses of third-party jars they distribute?</p> http://stackoverflow.com/questions/1582671/new-maven-snapshots-for-already-released-artifacts 1 New Maven snapshots for already released artifacts Max Spring 2009-10-17T17:01:58Z 2009-10-17T22:34:54Z <p>Is there a good reason to continue deploying newer snapshots, if there's already a released artifact of the same version?</p> <p>Concretely: There's already xyz-1.0<br> There's projects continuing to have xyz-1.0-SNAPSHOT dependencies.</p> <p>It appears wrong to me, but maybe there is some reason behind this?</p>