hot questions tagged maven - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T17:54:47Z http://stackoverflow.com/feeds/tag?tagnames=maven&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1935137/glassfish-v3-and-glassfish-maven-plugin-mac 2 GlassFish v3 and glassfish-maven-plugin (Mac) sticksnleaves 2009-12-20T07:34:24Z 2009-12-21T19:28:02Z <p>I'm trying to use the glassfish-maven-plugin (<a href="https://maven-glassfish-plugin.dev.java.net/" rel="nofollow">https://maven-glassfish-plugin.dev.java.net/</a>) with GlassFish v3 (I'm on a Mac and using Eclipse) and I can't seem to get my web app to deploy. I keep running into:</p> <blockquote> <p>The Master Password is required to start the domain. No console, no prompting possible. You should either create the domain with --savemasterpassword=true or provide a password file with the --passwordfile option.</p> </blockquote> <p>Here is the relevant portion of my POM file.</p> <pre><code>&lt;profiles&gt; &lt;profile&gt; &lt;id&gt;development&lt;/id&gt; &lt;activation&gt; &lt;property&gt; &lt;name&gt;phase&lt;/name&gt; &lt;value&gt;development&lt;/value&gt; &lt;/property&gt; &lt;/activation&gt; &lt;build&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.glassfish.maven.plugin&lt;/groupId&gt; &lt;artifactId&gt;maven-glassfish-plugin&lt;/artifactId&gt; &lt;version&gt;2.2-SNAPSHOT&lt;/version&gt; &lt;configuration&gt; &lt;glassfishDirectory&gt;${glassfish.directory}&lt;/glassfishDirectory&gt; &lt;user&gt;${glassfish.user}&lt;/user&gt; &lt;passFile&gt;${glassfish.directory}/domains/${project.artifactId}/config/domain-passwords&lt;/passFile&gt; &lt;domain&gt; &lt;name&gt;${project.artifactId}&lt;/name&gt; &lt;/domain&gt; &lt;components&gt; &lt;component&gt; &lt;name&gt;${project.artifactId}&lt;/name&gt; &lt;artifact&gt;${project.build.directory}/artifacts/${project.artifactId}.war&lt;/artifact&gt; &lt;/component&gt; &lt;/components&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; &lt;pluginRepositories&gt; &lt;pluginRepository&gt; &lt;id&gt;ocean&lt;/id&gt; &lt;url&gt;http://maven.ocean.net.au/snapshot&lt;/url&gt; &lt;releases&gt; &lt;enabled&gt;false&lt;/enabled&gt; &lt;updatePolicy&gt;never&lt;/updatePolicy&gt; &lt;/releases&gt; &lt;snapshots&gt; &lt;enabled&gt;true&lt;/enabled&gt; &lt;updatePolicy&gt;always&lt;/updatePolicy&gt; &lt;/snapshots&gt; &lt;/pluginRepository&gt; &lt;/pluginRepositories&gt; &lt;/profile&gt; &lt;/profiles&gt; </code></pre> <p>Here is the start-domain command Maven is executing.</p> <blockquote> <p>asadmin --host localhost --port 4848 --user admin --passwordfile /var/folders/sk/skcc8rAVGSynOBBaOwWN3U+++TI/-Tmp-/mgfp5377058868244877698.tmp --interactive=false --echo=true --terse=true start-domain --debug=false --domaindir /Applications/GlassFish/v3/glassfish/domains --help=false --upgrade=false --verbose=false mvnrepo</p> </blockquote> <p>The --passwordfile is using a temp file so I'm guessing that is the problem. For some reason the passFile parameter isn't working.</p> <p>Any ideas? I'm I wrong with my assumption?</p> http://stackoverflow.com/questions/1927470/javafx-with-maven 0 JavaFX with Maven Alotor 2009-12-18T10:42:35Z 2009-12-22T22:57:21Z <p>Hi,</p> <p>I recently started a JavaFX project, and I'd like to use Maven as my compiler/deployment tool.</p> <p>Is there a good tutorial or plugin to integrate JavaFX and Maven?</p> http://stackoverflow.com/questions/1912867/upload-jar-to-respository 0 upload jar to respository cometta 2009-12-16T07:09:10Z 2009-12-18T03:46:06Z <p>I have a jar files that cannot be found on maven2 repository. i interested to add the jar so i can just include extra tag in my pom.xml file and other developer can use the jar. what is the steps needed to upload the jar to http webserver webfolder? what file should i uploaded beside custom.jar ? what other files need to exist on the webfolder side by side with custom.jar</p> http://stackoverflow.com/questions/1918699/install-maven2-on-karmic 1 Install Maven2 on Karmic magneticMonster 2009-12-17T00:14:08Z 2009-12-17T01:23:03Z <p>Is there a .deb for Maven2 on Karmic Koala? I see maven2, but it has 100+MB of dependencies (!). Is there a package that is only mvn and none of those dependencies?</p> http://stackoverflow.com/questions/1893469/could-free-pascal-benefit-of-something-like-apache-maven 1 Could Free Pascal benefit of something like Apache Maven? mjustin 2009-12-12T13:41:51Z 2009-12-15T18:49:38Z <p><a href="http://maven.apache.org/" rel="nofollow">Apache Maven</a> is a very popular build and dependency management tool in the Java open source ecosphere. I did some tests to find out if it can handle compiled Free Pascal / Delphi units and found it easy to implement. So it would be possible to </p> <ul> <li>release open source libraries precompiled for Free Pascal (or Delphi) in a public Maven repository</li> <li>include metadata in this repository which contains dependency information</li> <li>use Maven on the command line to download the open source library from the public repository, and automatically resolve all dependencies</li> <li>local repositories, working as proxies, could be used to cache frequently used binaries</li> <li>automatic checksum generation and verification (provided by Maven) would reduce the risk of downloading corrupted binaries</li> <li>source code and even documentation files could be provided with the binaries</li> <li>binaries can be provided with or without debug information</li> <li>continuous integration servers like <a href="http://hudson-ci.org/" rel="nofollow">Hudson</a>, TeamCity or CruiseControl can be used to build projects whenever changes have been submitted to the source control system and notify developers about build errors</li> </ul> <p>This way of dependency management could be very beneficial for open source projects which use many third party libraries with complex dependencies. It would avoid typical conflicts caused by using wrong versions.</p> <p>For the developer, the workflow for editing and building a project would be reduced to a minimum: </p> <ul> <li>checkout the project source from internal version control system</li> <li>edit source file(s)</li> <li>run <code>mvn package</code> to automatically download all required third party libraries (precompiled units) if they are not yet in the workstation's local repository</li> <li>compile and run</li> </ul> <p>The only additional file for Apache Maven which is required in the project folder is the POM.XML file containing the project information.</p> <p>Edit: while Maven is usable for some of the required tasks, implementing a solution like Maven in native Free Pascal would have some advantages: no Java SDK required, support for all development platforms where Free Pascal is available, maintenance and plugin development in Pascal. </p> <p>Usage of a Maven-like tool would not be helpful for open source projects only - commercial projects could access and use the artifacts in public Maven repositories in the same way as well.</p> <p>Maven features are listed at <a href="http://maven.apache.org/maven-features.html" rel="nofollow">http://maven.apache.org/maven-features.html</a></p> <p><hr></p> <p><strong>Update:</strong></p> <p>one use case could be the build of Lazarus, where Maven would download all required libraries and invoke the compiler with the necessary build path arguments. Changes in the dependencies on lower levels would be propagated automatically up to the parent build. </p> <p>Possible benefits:</p> <ul> <li>less time needed to set up a new work station, no manual installation of third party libraries required</li> <li>less errors caused by wrong library versions, detection of version conflicts (for example if two libraries depend on different versions of a third library)</li> <li>artifacts which are created inhouse can be added to the local maven repository and shared between developers and project, central storage of all artifacts with metadata</li> <li>builds are reproducible, just by using the same source and project metadata file (pom.xml)</li> <li>can reduce development time and increase project stability</li> </ul> <p><strong>Update #2: FPMake</strong></p> <p>the <a href="http://wiki.freepascal.org/FPMake" rel="nofollow">FPMake</a> build system for Free Pascal seems to be a tool with much potential, in many details it is quite similar to Maven:</p> <ul> <li>FPMake is a pascal based build system developed for and distributed with FPC</li> <li>FPMake standardizes the building by defining some limits like standard directories</li> <li>the command <code>fppkg &lt;packagename&gt;</code> will look in a database for the package, extract it, and then compile fpmake.pp and run it</li> <li>it has standard build targets (clean, build, install, ...)</li> <li>it can create a 'manifest' file suitable for import into a repository (like <code>mvn deploy</code> or <code>mvn install</code>), the manifest is an XML file which looks very similar to a pom.xml in Maven:</li> </ul> <p><strong>FPMake manifest file:</strong></p> <pre><code> &lt;packages&gt; &lt;package name="my-package"&gt; &lt;version major="0" minor="7" micro="6" build="1"/&gt; &lt;filename&gt;my-package-0.7.6-1.zip&lt;/filename&gt; &lt;author&gt;my name&lt;/author&gt; &lt;license&gt;GPL&lt;/license&gt; &lt;homepageurl&gt;http://www.freepascal.org/&lt;/homepageurl&gt; &lt;email&gt;myname@freepascal.org&lt;/email&gt; &lt;description&gt;this is the package description&lt;/description&gt; &lt;dependencies&gt; &lt;dependency&gt; &lt;package packagename="rtl"/&gt; &lt;/dependency&gt; &lt;/dependencies&gt; &lt;/package&gt; &lt;/packages&gt; </code></pre> http://stackoverflow.com/questions/1923938/warning-no-pom-file-was-found-assuming-default-settings -1 Warning : No pom file was found, assuming default settings! unknown (google) 2009-12-17T19:16:17Z 2009-12-17T19:18:39Z <p>Hi,</p> <p>I installed Maven 1, following the doc here <a href="http://maven.apache.org/maven-1.x/start/install.html" rel="nofollow">http://maven.apache.org/maven-1.x/start/install.html</a> </p> <p>Installation was successful, then I typed in "maven site" as shown in the doc here maven.apache.org/maven-1.x/start/quick-start.html</p> <p>I get the error "Warning : No pom file was found, assuming default settings!"</p> <p>From what I understand, maven 1 does not have pom file. Why is it prompting to me that the pom file was not found? </p> <p>Thanks</p> http://stackoverflow.com/questions/1900234/maven-java-source-code-generation-for-hibernate 2 Maven Java Source Code Generation for Hibernate Adam 2009-12-14T11:01:57Z 2009-12-15T02:23:12Z <p>Hi,</p> <p>I´m busy converting an existing project from an Ant build to one using Maven. Part of this build includes using the hibernate hbm2java tool to convert a collection of .hbm.xml files into Java. Here's a snippet of the Ant script used to do this:</p> <blockquote> <p><code>&lt;target name="dbcodegen" depends="cleangen" description="Generate Java source from Hibernate XML"&gt; &lt;hibernatetool destdir="${src.generated}"&gt; &lt;configuration&gt;<br> &lt;fileset dir="${src.config}"&gt; &lt;include name="**/*.hbm.xml"/&gt; &lt;/fileset&gt; &lt;/configuration&gt;<br> &lt;hbm2java jdk5="true"/&gt; &lt;/hibernatetool&gt;<br> &lt;/target&gt; </code></p> </blockquote> <p>I've had a look around on the internet and some people seem to do this (I think) using Ant within Maven and others with the Maven plugin. I'd prefer to avoid mixing Ant and Maven. Can anyone suggest a way to do this so that all of the .hbm.xml files are picked up and the code generation takes place as part of the Maven code generation build phase?</p> <p>Thanks!</p> <p>Adam.</p> http://stackoverflow.com/questions/1899177/debug-maven-project-in-eclipse-with-third-party-sources 0 Debug Maven project in Eclipse with third party sources savanna 2009-12-14T06:08:33Z 2009-12-16T19:18:30Z <p>I am currently developing a maven project in eclipse. The m2eclipse plugin works beautifully. It even works out of the box with debugging. </p> <p>But when I am debugging open source third party libarries. It seems maven could automatically pull the source code down, but the eclipse debugger cannot resolve the currently execution point to the correct source file location. </p> <p>I am sure the source code is downloaded because I can look at it and set break point. And the break point works.</p> <p>But eclipse shows the source code and the currently execution point in too different windows. An example would be "TransformerImpl.class" tab window shows the source code, but the current execution point in shown in another tab window with header "Transformer.transform(Source,boolean)Line:642". This windows shows no source code. </p> <p>I am felling there is some simple configuration that I am missing that could make this work. Then it will be really beautiful. </p> http://stackoverflow.com/questions/1878742/maven-archetype-question 0 Maven Archetype Question darkman x 2009-12-10T05:09:33Z 2009-12-10T23:55:50Z <p>I'm trying to create an archtype for a simple project, this project contains some ssl certs that i'd like to includes as resources in the archtype so when the project gets created those certs will be part of the project. My problem is that maven is trying to do a property replacement on those certs when creating a project with the archetype. Is there anyway to tell maven not to do the property replacement? I've already tried the following:</p> <pre><code> &lt;resources&gt; &lt;resource&gt; &lt;directory&gt;src/main/resources&lt;/directory&gt; &lt;filtering&gt;true&lt;/filtering&gt; &lt;includes&gt; &lt;include&gt;**/*.xml&lt;/include&gt; &lt;/includes&gt; &lt;/resource&gt; &lt;resource&gt; &lt;directory&gt;src/main/resources&lt;/directory&gt; &lt;filtering&gt;false&lt;/filtering&gt; &lt;excludes&gt; &lt;exclude&gt;**/*.xml&lt;/exclude&gt; &lt;/excludes&gt; &lt;/resource&gt; </code></pre> <p>in my prototype POM.xml. Any ideas?</p> http://stackoverflow.com/questions/1878846/testing-java-code-generated-during-another-test 0 testing Java code generated during another test Ran Biron 2009-12-10T05:43:41Z 2009-12-10T08:31:33Z <p>I want to build a "toJavaCode()" on my model that would generated the required Java source code to generate that model (never mind the reasons or if it should or shouldn't be done, nor the compatibility issues that may occur).</p> <p>I'm at a loss at how to test this. I'm using maven, but generate-sources won't really work for me since my server needs to be up for proper, bulk testing. I do get the server up during the "test" goal, but generate-sources is just too early.</p> <p>On the other hand, while I can use the built in compiler (from tools.jar in the JDK) to do this, I don't know how I can pack it into the jar for testing (or load that jar).</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1889714/maven-how-to-get-all-transitive-dependencies-programatically-in-a-mojo 1 Maven: How to get all transitive dependencies programatically in a MOJO [closed] javamonkey79 2009-12-11T17:45:53Z 2009-12-11T18:47:23Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1492000/how-to-get-access-to-mavens-dependency-hierarchy-within-a-plugin">How to get access to Maven&rsquo;s dependency hierarchy within a plugin.</a> </p> </blockquote> <p>The dependency:tree plugin:goal has an option 'verbose' which displays all conflicts &amp; duplicates in the dependency tree. I am trying to reuse that information in my own mojo to generate reports, however - I can't seem to figure out exactly how that plugin is gathering all transitive dependencies\artifacts. </p> <p>I've tried:</p> <pre><code>ArtifactResolutionResult result = _artifactCollector.collect( _project.getDependencyArtifacts(), _project.getArtifact(), _project.getManagedVersionMap(), _localRepository, _project.getRemoteArtifactRepositories(), _artifactMetadataSource, null, Collections.EMPTY_LIST ); </code></pre> <p>As far as I can tell this is how the tree goal is doing it with the exception of the listener. </p> <p>Does anyone out there know how to do what I am asking?</p> <p>UPDATE: I didn't search well enough apparently, my question is a duplicate of: <a href="http://stackoverflow.com/questions/1492000/how-to-get-access-to-mavens-dependency-hierarchy-within-a-plugin">this</a>. Please vote to close as I have already done, thanks.</p> http://stackoverflow.com/questions/1899021/building-cocoa-project-with-maven 0 building cocoa project with maven Vyacheslav Karpukhin 2009-12-14T05:06:55Z 2009-12-14T05:06:55Z <p>i have a cocoa project and i'd like to build it with maven. is there any maven plugin for building objective-c code?</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/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>