Re: Windows Installer / MacOS dmg

2022-10-16 Thread Adam Retter
Ah nice! Jpackage looks neat as long as you don't need a customisable installer. I accidentally read 18 as 1.8 which is where some of our applications are stuck at the moment... On Sun, 16 Oct 2022, 12:17 Thomas Broyer, wrote: > Doesn't JDK 18 come with jpackage for exactly that use case? Not

Re: Windows Installer / MacOS dmg

2022-10-16 Thread Adam Retter
/TheInfiniteKind/appbundler. For Windows, I think you would need to incorporate jlink into your Maven Build process before supplying the resources to IzPack or NSIS. Kind regards. Adam. On Sun, 16 Oct 2022 at 10:27, Vivek Suraiya wrote: > > I have a Netbeans 15 JavaFX (18.0.2 / JDK 18.0.2) projec

Re: Unable To Access Jar Published To Maven Central

2020-06-09 Thread Adam Retter
s.java:[7,16] > cannot find symbol > [ERROR] symbol: class Settings > [ERROR] location: interface > com.bankshots.feature.settings.AccountSettingsBusiness > [ERROR] > /Users/dominiquejones/git/BankShots/src/main/java/com/bankshots/feature/settings/AccountSettingsBusiness.java:[1

Re: Profile not being activated by default

2020-05-13 Thread Adam Retter
I do realise that ultimately we should likely refactor this large module into a parent with lots of smaller modules, but that is a large amount of work as there are lots of file dependencies between the plugin steps. -- Adam Retter skype: adam.retter tweet: adamretter http://www.adamretter.

Re: Profile not being activated by default

2020-05-13 Thread Adam Retter
; config is being seen, seen but ignored, or ignored. No problem. Thanks for taking the time to try and help me :-) -- Adam Retter skype: adam.retter tweet: adamretter http://www.adamretter.org.uk - To unsubscribe, e-mai

Profile not being activated by default

2020-05-13 Thread Adam Retter
the profile is being ignored? -- Adam Retter skype: adam.retter tweet: adamretter http://www.adamretter.org.uk - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h

polyglot extension pom.yml fails to build parent and nested children projects from scratch

2019-05-17 Thread Adam Hardy
: parent: relativePath: ../pom.yml in the child projects' poms, and it worked. In XML poms, no relativePath is required. Thought I'd flag this one up. Regards Adam - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Not able to read jars in repo intermittently

2018-03-26 Thread Adam Hardy
I use a Jenkins server which is administered by another team. I get the following errors intermittently. The team claim the issue is "the maven repository is not multi write safe. It's possible several jobs are updating the jar files at the same time and corrupt them. If that's the case, the on

Re: per-warm the maven cache for 2 stage Docker build

2018-03-05 Thread Adam Sandor
ilds might be the future of CI environments. Adam On Mon, Mar 5, 2018 at 9:58 AM Christofer Dutz wrote: > Hi, > > When creating a maven plugin for the Edgent project, I also setup an > integration-test > That allows me to test the functionality of the plugin. I used the > mrm-ma

Re: per-warm the maven cache for 2 stage Docker build

2018-03-05 Thread Adam Sandor
l run into missing deps? So the question of the day (maybe worth another thread) is "Isn't mvn dependency:go-offline supposed to download all dependencies?" On Tue, Feb 20, 2018 at 7:37 PM Laird Nelson wrote: > On Sun, Feb 4, 2018 at 3:58 AM Adam Sandor < > adam.san...@con

Re: per-warm the maven cache for 2 stage Docker build

2018-02-20 Thread Adam Sandor
Hi Herve, Thank you very much for taking a look at this. Unfortunately running "versions:display-plugin-updates" says all plugins have a version specified. My pom file is practically empty - it's a tiny spring boot app ( https://github.com/adam-sandor/memoryhog/blob/master/pom.

Re: per-warm the maven cache for 2 stage Docker build

2018-02-19 Thread Adam Sandor
issue, but I first want to confirm I didn't miss some solution that is already available. Adam On Sun, Feb 4, 2018 at 12:57 PM, Adam Sandor wrote: > I’m trying to figure out how to create a two-stage Docker build using Maven > that would properly utilise Docker layer caching. Containing

Re: maven jobs, groovy, git and jenkins pipelines

2018-02-06 Thread Adam Sandor
Maven switch to bash scripting or something else and run that from the Jenkins pipeline step. Hope this helps somewhat :) Adam Sandor On Mon, Feb 5, 2018 at 7:41 PM ahardy42 wrote: > Hi All, > > I started working with a Jenkins pipeline and I am still building my mental > picture of ho

Re: Question regarding Maven's local repository use

2018-02-05 Thread Adam Sandor
The issue here is that the build always runs in a brand new container so at the start no artifacts are available locally. All the artifacts that are fetched by the dependency:go-offline task will be cached in a Docker image layer and reused in later builds if the pom.xml doesn’t change. This would

per-warm the maven cache for 2 stage Docker build

2018-02-04 Thread Adam Sandor
help other struggling with the same problem. Thank you! Adam Sandor from Container Solutions -- Ádám Sándor Senior Engineer / Consultant Container Solutions <http://container-solutions.com/> 0680126174 <https://twitter.com/adamsand0r> <https://www.linkedin.com/in/adamsandor/>

Handling password

2017-12-01 Thread Adam Hardy
As part of the build process, I create an nginx reverse proxy docker image using docker-maven-plugin. I run debian's apt-get package manager to install a few unix tools into the nginx docker image. However I'm working behind a corporate proxy server that demands a username:password. I have a s

Re: Auto-increment semantic version number for CD pipeline with git and docker

2017-11-17 Thread Adam Hardy
On Thursday, November 16, 2017 23:10 GMT, Stephen Connolly wrote: > Only use release versions for releases > > For any builds in between releases, always use a SNAPSHOT. If you don’t > want to commit to a version (which it sounds like you don’t) then pick > either SNAPSHOT or major-SNAPSHOT (eg 1

Re: Auto-increment semantic version number for CD pipeline with git and docker

2017-11-16 Thread Adam Hardy
On 16/11/17 20:40, Stephen Connolly wrote: I think you’ll want to keep master with a version of at least SNAPSHOT or 1-SNAPSHOT and wholesale replace it with the real build version number on the CI server and just have that version in the tag. The issue with using release versions on master is t

Re: Project dependencies vs plugin dependencies for a mojo looking at the project

2017-09-13 Thread Adam Hardy
The users of my plugin define a dependency which the mojo unpacks and extracts certain files from. You know that such a plugin already exists? maven-dependency-plugin:unpack / unpack-dependencies ? https://maven.apache.org/plugins/maven-dependency-plugin/examples/unpacking-artifacts.html

Re: Project dependencies vs plugin dependencies for a mojo looking at the project

2017-09-13 Thread Adam Hardy
On 12/09/17 18:05, Adam Hardy wrote: when I'm coding a mojo, if I call MavenProject's getArtifacts(), I can only get artifacts from the project level dependencies. How do I obtain artifacts from a plugin's dependencies? The question which comes to my mind: Why do you need t

Project dependencies vs plugin dependencies for a mojo looking at the project

2017-09-12 Thread Adam Hardy
27;key' required for project.getPlugin(key) is of the form myGroup:myPlugin:version e.g. com.megacorp:thing-plugin:1.0.2 can I get my mojo's own key programmatically in the mojo to avoid hard-coding it? Thanks Adam

Problems developing mojo tests with maven-plugin-testing-harness

2017-07-24 Thread adam . hardy
am I already at the right place https://maven.apache.org/plugin-testing/maven-plugin-testing-harness/index.html? While I'm asking, which is the best approach to setting up the mojo with the testing harness - is MojoRule the way to go, or should I be able to rely on AbstractM

RE: How can I define the classloader for maven-antrun-plugin task?

2016-05-18 Thread Adam Mitchell
. e.g. my.org.kodo kodo-jar 1 I've had success with custom tasks with the following syntax in my ant target: This should give you more succ

RE: mvn site [ERROR] Unable to determine if resource

2016-05-17 Thread Adam Mitchell
inherited from the maven super-pom, declaring your repo as mirroring * makes it use it instead of any other configured Adam | Adam Mitchell | Java Software Architect | Tel: +44 (0)207 633 3570 | Mobile: | Skype: | www.playtech.com This communication contains information which is

RE: mvn -U dependency:sources re-downloads released sources JARs

2016-05-17 Thread Adam Mitchell
ownload source code unless the metadata was corrupt/missing, it certainly has more meaning that just update snapshots. Quite possibly a bug in maven-core then. | Adam Mitchell | Java Software Architect | Tel: +44 (0)207 633 3570 | Mobile: | Skype: | www.playtech.com This communication contai

RE: mvn -U dependency:sources re-downloads released sources JARs

2016-05-17 Thread Adam Mitchell
-U is force update, it tells maven to ignore locally cached artifacts and to download them afresh, what behaviour were you expecting? | Adam Mitchell | Java Software Architect | Tel: +44 (0)207 633 3570 | Mobile: | Skype: | www.playtech.com This communication contains information which is

Re: Emotional Support Group for Typesafe Maven Users

2014-12-04 Thread Adam Retter
that resembles APL, and > reasoning about build engineering was clearly not a priority with the > designers of SBT. > > The Scala-IDE was a really great approach because it leveraged off of an > existing IDE infrastructure such as Eclipse, rather than trying to write an > IDE

Re: [DISCUSS] Adopt Mr Couché-Tard as our mascot, change the logo font to Alte Haas Grotesk, change the colour letter to "v"

2014-11-20 Thread Adam Retter
han that perhaps serious concern, I liked the mascot but not the name. -- Adam Retter skype: adam.retter tweet: adamretter http://www.adamretter.org.uk - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additio

Re: how to push .zip from assembly to repo?

2014-03-27 Thread Adam Retter
tions in the assembly > plugin and it is a bit confusing. > > J.V. -- Adam Retter skype: adam.retter tweet: adamretter http://www.adamretter.org.uk - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additi

Re: New logo?

2014-01-14 Thread Adam Retter
t; >>>> >So it would appear to me that I'm not thinking of an animal at all ! >> >>>> > >> >>>> >Kristian >> >>>> > >> >>>> > >> >>>> > >> >>>> > >> >>

Re: New logo?

2014-01-13 Thread Adam Retter
t; > > > Thanks > > John > > > > > - > To unsubscribe, e-mail: users-unsubscr...@maven.apache.org > For additional commands, e-mail: users-h...@maven.apache.org > -- Adam Retter skype: adam.retter tweet: adamretter http://www.adamretter.org.uk

Re: Maven Central Opinion

2014-01-06 Thread Adam Retter
contact should they have a problem. I consider that a small investment. -- Adam Retter skype: adam.retter tweet: adamretter http://www.adamretter.org.uk - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For addition

Re: Maven Central Opinion

2014-01-05 Thread Adam Retter
ir binaries for easy access by others. I’m wondering > if I’m alone in this view or if there are others who agree with me ? > > Tommy Svensson > > > - > To unsubscribe, e-mail: users-unsubscr...@maven.apache.o

Re: New site content

2014-01-03 Thread Adam Retter
ing icons because I want to have subsequent pages give more detail >> and use the iconography to enable people to see what is being discussed >> more easily >> -- Adam Retter skype: adam.retter tweet: adamretter http://www.adamretter.org.uk -

Re: New logo?

2014-01-02 Thread Adam Retter
-logo-example2.png Thanks On 2 January 2014 17:52, Stephen Connolly wrote: > So what... you cannot do worse than > http://people.apache.org/~stephenc/maven-logo-contest/maven.png > > > On 2 January 2014 16:55, Adam Retter wrote: > >> I would love to, but I posses absolu

Re: New logo?

2014-01-02 Thread Adam Retter
I would love to, but I posses absolutely zero artistic skill. On 2 January 2014 16:28, Stephen Connolly wrote: > how about you try sketching out what you mean! > > > On 2 January 2014 16:18, Adam Retter wrote: > >> I like that one best personally. How about something like

Re: New logo?

2014-01-02 Thread Adam Retter
o with the raven >> >>>> >> >>>> http://www.prweb.com/releases/2012/3/prweb9334175.htm >> >>>> >> >>>> Given that a different non-competing user of the name is using a raven >> >>>> in their logo >> >>>> >> >>>> On Friday, 20 December 2013, Manfred Mos

Re: Excluding maven pom.xml from generated jar as a security precaution?

2013-11-19 Thread Adam Retter
; Same here. >> >> Just wondering if it's common practice for close sourced products to remove >> maven manifest info from jars... something we cannot search in open source >> codes! :-) >> >> I am hoping to get an authoritative reference that says it'

Re: Excluding maven pom.xml from generated jar as a security precaution?

2013-11-18 Thread Adam Retter
s"? > > I find it useful to leave it there for troubleshooting purpose, thinking > that there is not much security concerns but my peers are thinking > otherwise. > > I would like to seek some advise/opinions on this topic. > > Cheers! -- Adam Retter skype: adam.retter

Re: passing the deployed artifact URL to another system

2013-10-22 Thread Adam Downer
Hi Russ, Can you specify individual timestamped snapshots in a GAV based request? Anders, I will look into the nexus pro/plugin | Artifactory route, thanks. Regards Adam D On 22/10/2013 13:13, "Russell Gold" wrote: >HI Adam, > >I'd think this would be easier to ha

Re: passing the deployed artifact URL to another system

2013-10-22 Thread Adam Downer
tive way to achieve this I am open to any suggestions. For instance maybe I should write a script which runs from the nexus box and fires off constructed URLs to a rest endpoint as the file system changes. But this doesn't seem as elegant a solution as a maven based one. Regards Adam

Re: passing the deployed artifact URL to another system

2013-10-21 Thread Adam Downer
in to take that info and send it to my apps rest endpoint. Thanks in advance. Adam D From: Adam Downer mailto:adam.dow...@gamesys.co.uk>> Date: Monday, 21 October 2013 11:00 To: "users@maven.apache.org<mailto:users@maven.apache.org>" mailto:users@maven.apache.org>> S

Re: passing the deployed artifact URL to another system

2013-10-21 Thread Adam Downer
RL is not the same as the download URL, so the >best >you can do is query the attached artifact to determine the timestamp that >was used (for -SNAPSHOT deployment) and then construct the URL based off >the configured download URL that you expect to be downstream from where >you >

passing the deployed artifact URL to another system

2013-10-21 Thread Adam Downer
nstructing the url myself as the pattern is formulaic, but it involves timestamps, which if I generate again will be different to the real ones. If anyone knows a way to achieve this or can share examples of a way it has been done. I would be most appreciative. Regards Adam D

Re: Can mvn install packages globally (e.g. command line tools like nutch)?

2013-08-15 Thread Adam Beres
>> I'd like to install some Java command line tools, without having to >> configure PATH manually. Can mvn do this? Package managers from other >> programming languages often offer this ability, like RubyGems and NPM. I am compiling for ARM and use different compilers, so I am installing in the

Checkstyle crashes with NullPointerException in DefaultCheckstyleRssGenerator.generateRSS in Maven 3

2013-06-19 Thread Adam Crume
... 20 more Adam

Maven Ant Tasks : settingsFile doesn't work correctly in non-user directories?

2012-11-06 Thread Adam Mitchell
ing is located seems to prevent this working. Calling: Will fail If I move the file to my .m2/ folder however and use: With everything the same, it succeeds. Anyone else experience this? Thanks Adam

Required goal not found

2012-01-12 Thread Adam Dyga
Hello, I have some problems with "goals not found". When I execute: mvn help:describe -DgroupId=org.apache.maven.plugins -DartifactId=maven-dependency-plugin among many goals I get: ... dependency:get Description: Downloads a single artifact transitively from the specified remote repos

Re: Determine what depends on artifact?

2011-08-31 Thread Adam Retter
If you open your project in NetBeans, you can right click on the dependecy and view the details, part of this includes a visual dependency graph On Aug 31, 2011 1:28 PM, "Brown, Alex" wrote: > Hello, > I am a Maven 3 user and I am looking for a tool that allows me to easily see the dependencies th

Re: Looking for feedback and tryout for hibenate3-maven-plugin 3.0-SNAPSHOT

2011-08-30 Thread Adam Retter
Schema and it took a lot of work, including needing a custom ReverseEnginneringStrategy. I think real world practical examples are the key here... On 31 August 2011 00:12, Dan Tran wrote: > Hi Adam, > > Do you have a list of doc suggestion you have in mind? > > -Dan > > On T

Re: Looking for feedback and tryout for hibenate3-maven-plugin 3.0-SNAPSHOT

2011-08-30 Thread Adam Retter
an > > PS. Special thanks Johann Reyes for all the hard work for this much > friendlier version and lots of tests. > > - > To unsubscribe, e-mail: users-unsubscr...@maven.apache.org > For additional commands, e-

Re: Best practices for multi-projects in Maven 3? (version less parent)

2011-06-28 Thread Adam Gibbons
if you added a "shared pom" to all your projects you can specify the parent version as a variable in the shared pom, then you only need to change it in one place. Not the answer you were looking for I know, just thought it might help... On 28 June 2011 12:21, Lucas Persson wrote: > > Hi > Sorry

Could you add our project to the 'Powered by' page

2011-05-23 Thread Adam Walczak
Hello, I would like to kindly ask Maven maintainers if we could add the qcadoo project (www.qcadoo.com) to the list: http://maven.apache.org/powered-by-m2.html We use maven heavily in our plugin system. -- Adam Walczak Community Manager Mobile: +48.604.188.992 | e-mail: adam.walc

Re: breaking backwards compatibility

2011-04-13 Thread Adam Gibbons
ilding, but it is IMHO the > responsibility of any version resolving. > > Tom > > > > On 13-4-2011 15:15, Adam Gibbons wrote: > >> It's not possible to know that at build time though. The incompatabilities >> might be created programatically at runtime. This r

Re: breaking backwards compatibility

2011-04-13 Thread Adam Gibbons
x27;d gone wrong, but that isn't the job of a build tool. On 13 April 2011 13:50, Tom Eugelink wrote: > Correct, what I am looking for is Maven to tell me there is a version > conflict. > > > > On 13-4-2011 14:22, Benson Margulies wrote: > >> Adam, it might not be

Re: breaking backwards compatibility

2011-04-13 Thread Adam Gibbons
crazy idea, but why don't you just refactor the code that only works with v1.0 to work with v2.0? it might be better anyway... On 13 April 2011 13:15, Benson Margulies wrote: > Jörg, > > The question is, "Are there interesting cases in which the author of > the package knows that 2.0 is absolu

Re: [eclipse-plugin] Dependency to workspace projects

2011-04-09 Thread adam . saltiel
I always thing 'resolve workspace dependencies' is a bad idea. Better install in local repo. But surely should work for single project. Then you would pick everything up from project/lib. Can see why may want to do this --Original Message-- From: Ludwig Magnusson To: users@maven.apache.o

Re: The maven-assembly-plugin and a large complex project.

2011-04-07 Thread Adam Gibbons
Alex, that's perfect! Exactly the kind of thing I'm trying to do myself. Would you mind posting your reactor, war, jar and parent poms please? I'd really like to see a working example of this in action. Cheers, Adam On 7 April 2011 09:51, Alex Lopez wrote: > Here we have a

Re: The maven-assembly-plugin and a large complex project.

2011-04-06 Thread Adam Gibbons
nd when to jars get compiled/deployed and what do you need to do to achieve this? Thanks for all the help so far! Adam On 6 April 2011 15:51, Karl Heinz Marbaise wrote: > Hi Adam, > > > Adam Gibbons wrote: > > > > That is effectively what I have so far. Except there are

Re: The maven-assembly-plugin and a large complex project.

2011-04-06 Thread Adam Gibbons
les to build the war. or have i got that wrong and it is actually doing as i though? is there an easy way to call the deploy plugin every time you do a package? Cheers, Adam On 6 April 2011 15:44, Wendy Smoak wrote: > On Wed, Apr 6, 2011 at 10:37 AM, Adam Gibbons > wrote: > > &g

Re: The maven-assembly-plugin and a large complex project.

2011-04-06 Thread Adam Gibbons
Also I refer you to: http://maven.apache.org/plugins/maven-assembly-plugin/which states that it can create distributions in the war format. On 6 April 2011 15:27, Karl Heinz Marbaise wrote: > Hi Adam, > > > What I would like is a top level pom which upon doing mvn package it will &g

Re: The maven-assembly-plugin and a large complex project.

2011-04-06 Thread Adam Gibbons
be greatly appreciated! Regards, Adam On 6 April 2011 15:27, Karl Heinz Marbaise wrote: > Hi Adam, > > > What I would like is a top level pom which upon doing mvn package it will > > produce my 4 WAR files by compiling all child modules AND jars. > > Each WAR file is comprised of a

The maven-assembly-plugin and a large complex project.

2011-04-06 Thread Adam Gibbons
ing examples of this kind of thing in action I could look at? Kind regards! Adam

how do i compile an external ant project with maven?

2011-03-28 Thread Adam Gibbons
27;t allow it). I've done much searching but so far I can't find any documentation to achieve this. Could someone point me in the right direction please? Thanks in advance!! Kind regards, Adam

Re: Generating Config Files for multi-module project

2011-03-27 Thread Adam Retter
each product scenario, you could >> copy the plugin to each module with a separate element for >> the file selection used by that specific product. >> >> Or you could put the assembly plugin in a parent build one time, but have it >> rely on elements in the child bu

Generating Config Files for multi-module project

2011-03-26 Thread Adam Retter
. Thanks Adam. -- Adam Retter skype: adam.retter tweet: adamretter http://www.adamretter.org.uk - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: Failing tests on bad performance

2011-03-24 Thread Adam Hardy
g as well. Regards Adam - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Failing tests on bad performance

2011-03-22 Thread Adam Hardy
e indexing, or the OpenJPA configuration, or the entity beans even which have potential problems in the toString(), hashCode() methods. Thanks. Adam - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional c

Re: downloading resources

2011-01-19 Thread Adam Crain
What phase should I be doing this in to insure that they make it into the bundle? On Wed, Jan 19, 2011 at 9:52 PM, Wayne Fay wrote: > >> 3) Uncompress it to my projects src/main/resources folder > > Oh and btw you should probably not be uncompressing to > src/main/resources but rather to /target

downloading resources

2011-01-19 Thread Adam Crain
/main/resources folder (I'm distributing shared libraries this way because it's an OSGi bundle that uses JNI libraries) Any advice on combinations of plugins to use? -Adam

dynamic properties and lifecycle question

2010-12-22 Thread Adam Crain
initialize properties ART_GROUP_ID ART_ID 0.9.2 ${platform.id} thanks! Adam

Re: Head start with relatively simple EAR/WAR project?

2010-11-19 Thread adam . saltiel
That is your answer. But you manage the dependency so that you only need compile the War for changes in development. Then package when you need to (re)deploy. Ie in dev not every change requires this. What depends on other things Sent using BlackBerry® from Orange -Original Message- Fr

Using Emma Plugin as part of install build

2010-11-01 Thread Adam Krieg
I'm trying to integrate emma into a build. I would like to switch emma instrumentation on, run the "install" build, make the jars and have a report generated at the end. I know I can run emma:emma and have it compile/test/run the report, but I want to build and install the jars, like I would i

RE: Problem with uniqueVersion=false in 3.0 beta1

2010-08-06 Thread Adam Krieg
mailto:bri...@infinity.nu] Sent: Friday, August 06, 2010 11:42 AM To: Maven Users List Subject: Re: Problem with uniqueVersion=false in 3.0 beta1 No, but with a repo manager, it's pretty quick to wipe the local and refetch everything cleanly from the local network. On Fri, Aug 6, 2010 at 10:31 AM, Ad

RE: Problem with uniqueVersion=false in 3.0 beta1

2010-08-06 Thread Adam Krieg
or more info. > > /Anders > > On Thu, Jul 15, 2010 at 21:24, Adam Krieg > wrote: > > > I'm trying to configure Maven to not create unique snapshots. > > > > When using the following settings in Maven 2.2.1, this works: > > > > > >

Problem with uniqueVersion=false in 3.0 beta1

2010-07-15 Thread Adam Krieg
I'm trying to configure Maven to not create unique snapshots. When using the following settings in Maven 2.2.1, this works: false However when I run with Maven 3.0 beta 1, I get autogenerated numbers appended, as if uniqueVersion was true. Is anyone else seeing this

RE: Maven ant tasks resolving properties referencing properties

2010-07-14 Thread Adam Krieg
10 at 6:27 PM, Adam Krieg wrote: > Forgive me, I meant Maven ant tasks. I'm trying to reference information > defined in the pom from my build.xml. > > -Original Message- > From: Shan Syed [mailto:shan...@gmail.com] > Sent: Wednesday, July 14, 2010 6:23 PM >

RE: Maven ant tasks resolving properties referencing properties

2010-07-14 Thread Adam Krieg
rties referencing properties just to clarify, are you using the antrun plugin for maven or the maven tasks for ant? On Wed, Jul 14, 2010 at 6:06 PM, Adam Krieg wrote: > I'm trying to access the project.build.directory property which is defined in > my pom as > > >

antrun plugin resolving properties referencing properties

2010-07-14 Thread Adam Krieg
I'm trying to access the project.build.directory property which is defined in my pom as ${project.basedir}/target In ant I have this setup: However when I run my ant build, outputdir is being set to the literal value "${project.basedir}/target" rather than antrun expanding the va

Re: New packaging type HOWTO?

2010-06-14 Thread Adam Leggett
This should provide you with the info you need: http://www.sonatype.com/people/2009/08/create-a-customized-build-process-in-maven/ On Mon, 2010-06-14 at 09:06 -0400, Laird Nelson wrote: > Hello; I'd like to add a new packaging type for our builds. > > Strictly speaking, I could just pack up the

Re: basic maven lifecycle - howto always last?

2010-06-11 Thread Adam Hardy
Hi, thanks for the info - I think I might try the custom lifecycle approach if I continue suffering from the ill effects of not remembering where the profile is coming from (I think it must be my short term memory is going) Rgds Adam Anders Hammar on 10/06/10 11:48, wrote: Nope, not

Re: basic maven lifecycle - howto always last?

2010-06-10 Thread Adam Hardy
or install. Or can I bind it to multiple phases? Adam Hardy on 07/06/10 14:35, wrote: I want help:active-profiles to be executed once at the start of any run I do, so I have put this in my superpom: org.apache.maven.plugins maven-help-plugin

probably basic maven lifecycle question

2010-06-07 Thread Adam Hardy
-profiles but sometimes it appears twice, e.g. with mvn install. Is that expected? Other times, e.g. mvn compile, is fine. I also want it to execute first, so I figured the validate phase is the one to go for. Is that correct? Thanks Adam

RE: eXist native XML database

2010-06-01 Thread Adam Retter
: Martin Gainty [mailto:mgai...@hotmail.com] Sent: 28 May 2010 15:50 To: users@maven.apache.org Subject: RE: eXist native XML database Good Afternoon Adam before you take long holiday could you offer any information on which "MVC framework" eXist 1.4 will be supporting

RE: eXist native XML database

2010-06-01 Thread Adam Retter
Hi Wes, That is very kind, thanks. Yes we have a development mailing list at - exist-developm...@lists.sourceforge.net You may need to check the SourceForge page to get subscribed - http://sourceforge.net/projects/exist/support Cheers Adam. -Original Message- From: Wes Wannemacher

RE: eXist native XML database

2010-06-01 Thread Adam Retter
Sure, but should we not also include a list of dependencies in the pom for our Artifcat? -Original Message- From: Wayne Fay [mailto:wayne...@gmail.com] Sent: 28 May 2010 13:54 To: Maven Users List Subject: Re: eXist native XML database > I myself am a big fan of Maven, and would love to

RE: eXist native XML database

2010-05-28 Thread Adam Retter
r the time being the solution is really to place eXist and its dependencies into your own artifact repository (either local or server e.g. Artifactory et al.) Thanks Adam. -Original Message- From: Wayne Fay [mailto:wayne...@gmail.com] Sent: 09 May 2010 19:00 To: Maven Users List Subjec

Re: buildnumber-maven-plugin, git

2010-05-26 Thread Adam Monsen
On Thu, May 13, 2010 at 4:17 PM, Adam Monsen wrote: > Some awesome folks have created a patch to the > buildnumber-maven-plugin that supports Git. Apparently it works, but > the integration tests do not pass. Is anyone interested in helping > make the tests pass? If not, perhaps s

buildnumber-maven-plugin, git

2010-05-13 Thread Adam Monsen
? Justin(?) said, on May 11th: > Ah yes I also got that. I disabled the "itest" > section of the pom. > > I'll send it to you soon. > > Regards > Justin -- Forwarded message -- From: Antony Stubbs Date: Tue, May 11, 2010 at 12:53 PM Subject: Re: bu

Re: [ANN] New repository search site - srchmvn.com

2010-04-08 Thread Adam Leggett
Nice one. Can never have too many web-based Maven repository search apps :). Are you just searching the central repo? If not, a brief google-esque summary attached to each search result item indicating where the artefact is located would be handy. Regards Adam On Thu, 2010-04-08 at 08:44 -0400

RE: Maven and Hudson

2010-04-07 Thread Adam Purkiss
They are two different products that work well together rather then competing products. Why are you testing them? Hudson put simply is a CI server that you provide Maven/Ant/Shell scripts etc to and it does builds and you can generate reports about, Maven is a project comprehension tool th

RE: Fully automated building from Source Control

2010-04-02 Thread Adam Purkiss
You could use Hudson which is free and setup a job that checks out your repo and does a build. You could use Archiva which is a free repo for a repository or you could do something like have an ant build file which checks out your code and executes maven on it. If it was me though I would u

How to download resources for WebApp build

2010-03-25 Thread Adam Retter
configure the JAXB Maven plugin to pick up the Schemas from that location. Is there a plugin that could achieve this for me? otherwise what is the best way to achieve this? Thanks Adam. -- Adam Retter Landmark Information Group 01392 68 5403 http://www.landmark.co.uk Registered Office: 7 Abbey

Re: File name filtering in maven-archetype plugin

2010-02-19 Thread Adam Leggett (UPCO)
I blogged about how to do this here: http://blogs.mikeci.com/2010/01/14/working-with-custom-maven-archetypes-part-1/ See step four - filtering a file name. Cheers Adam On Fri, 2010-02-19 at 17:27 +0400, Aleksey Didik wrote: > Hello all, > I have some properties files in my maven archety

Class inheritance and maven parameters

2010-02-08 Thread Adam Flinton
); naturally fails as aceDir is null. So If I have a class which extends AbstractMojo in one package and jar, and I add it to the dependencies & then I extend thathow come the parameters are being set but then appear to be null? Again...the exact same class in the same jar (b

Re: skip run of a plugin in a phase without changing pom.xml

2010-01-27 Thread Adam Leggett (UPCO)
If its skipping execution of your task that's required, I expect you could wrap an antcontrib task around it. You'd probably need to add the antcontrib dependency to the antrun plugin so it can find the task too. Adam On Wed, 2010-01-27 at 13:32 +0200, Maruf Aytekin wrote: > H

failsafe-maven-plugin and test resources

2010-01-25 Thread Adam Retter
C-3.1/element-tree.correct: ASCII text, with CRLF line terminators So I assume the resources plugin is executed after my failsafe plugin, can I some how change this? Or do I have a configuration error somewhere? -- Adam Retter skype :adam.retter http://www.adamretter.o

Re: failsafe-maven-plugin configuration issues

2010-01-25 Thread Adam Retter
> > 2010/1/25 Adam Retter >> >> Just wondering how they compile when I change the inclusion to >> "*/*.java" for the failsafe plugin? >> >> Is there some better way of doing this whilst keeping the Unit Tests >> and Integration Tests in separate fo

Re: failsafe-maven-plugin configuration issues

2010-01-25 Thread Adam Retter
gration tests you'd need a > second execution of compiler:testCompile > > 2010/1/25 Adam Retter >> >> I have both Unit tests and Integration tests in my project and was >> attempting to manage this with the Surefire plugin in this way - >> htt

failsafe-maven-plugin configuration issues

2010-01-25 Thread Adam Retter
. So what am I doing wrong here? -- Adam Retter skype :adam.retter http://www.adamretter.org.uk - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

  1   2   3   4   5   6   >