RE: Problems with the maven-failsafe-plugin and loading of resources from (test-)jars

2022-01-28 Thread Christofer Dutz
that weren't doing anything now anyway, made the switch actually do it's job. Now our build is back to normal and we're all happy :-) Chris -Original Message- From: Christofer Dutz Sent: Freitag, 28. Januar 2022 09:31 To: Maven Users List Subject: RE: Problems with the maven-failsafe-plugin

RE: Problems with the maven-failsafe-plugin and loading of resources from (test-)jars

2022-01-28 Thread Christofer Dutz
Hi Falko, Unfortunately, I've tried disabling the modulePath ... that didn't seem to disable this behavior and it continues to use the module path. Also tried all sorts of classloaders, that I knew ... none of them worked. So, I even started adding module-info.java to my src/test/java to open

RE: Problems with the maven-failsafe-plugin and loading of resources from (test-)jars

2022-01-27 Thread Christofer Dutz
().getClassLoader().getUnnamedModule().getResourceAsStream(testsuiteDocument); I think this is probably just a workaround and I am not quite sure about the implications. So, it this the way to go, or is there a prettier way to fix this? Chris -Original Message- From: Christofer Dutz Sent

RE: Problems with the maven-failsafe-plugin and loading of resources from (test-)jars

2022-01-27 Thread Christofer Dutz
Sorry for the double posting ... guess my mailserver had hickups and now I know why I had to write it twice  I think this version might be the better one .. Chris -Original Message- From: Christofer Dutz Sent: Donnerstag, 27. Januar 2022 22:57 To: Maven Users List (users

Problems with the maven-failsafe-plugin and loading of resources from (test-)jars

2022-01-27 Thread Christofer Dutz
Hi, in the Apache PLC4X build we recently noticed that surefire and failsafe 2.22.2 were missing to pickup some of our tests, which we use with @TestFactory annotation. It turns out that when switching to 3.0.0-M5 this problem is resolved. However, a new problem is now causing problems. In

Problems loading resources in maven-failsafe-plugin 3.0.0-M5 integration tests

2022-01-27 Thread Christofer Dutz
Hi, in the Apache PLC4X project we've got some tests that use @TestFactory and we've seen failsafe 2.22.2 and surefire 2.22.2 sometimes skip finding these. So we recently updated to 3.0.0-M5 and noticed that now all tests are correctly found. However we now have a different problem: In these

Re: Maven plugin to replace text in file

2020-11-09 Thread Christofer Dutz
I recently tend to use the groovy plugin to do stuff like at in a portable way. Chris Von: Oliver B. Fischer Gesendet: Montag, 9. November 2020 22:42 An: Maven Users List ; Arnaud bourree Betreff: Re: Maven plugin to replace text in file IMHO not very

Using antlr4-maven-plugin in reproducible builds?

2020-06-03 Thread Christofer Dutz
Hi all, I am currently trying to adjust the build configuration of the projects I’m involved in to be able to generate reproducible builds. One of the things I read are important for this, is to fix the line.separator so I added that to the “apache-release” profile. This seems to work

"Failed to determine Java version for profile" during "mvn site" build ...

2020-05-24 Thread Christofer Dutz
Hi folks, ... I'm having some trouble with a profile-activation based on java versions ... in the PLC4X project we added a self-activating profile that changes the surefire and failsafe configuration with Java 9 and above ... everything is working nicely ... almost. Our Site-Build however is

Re: Maven Dependencies Pop Quiz

2020-03-26 Thread Christofer Dutz
Hi, I got my score via Twitter ;-) But till then I didn't know how I performed. Chris Am 26.03.20, 19:08 schrieb "Andres Almiray" : That's strange, you should get the number of correct answers at the end of the quiz although I don't know if it actually shows you which answers were

Anyone tried out maven-profiledep-extension?

2019-04-26 Thread Christofer Dutz
Hi, in the PLC4X project we are more and more facing the challenge of having non-java modules in our build. The build itself is working nicely and seems to be working like a charm on Mac, Linux and Windows. In order to not overload the casual user with too much build time, setting up etc. we

Re: Using maven-dependency-plugin:unpack in "mvn compile" build

2019-03-24 Thread Christofer Dutz
in a reactor build, then tell them you rule/assumption, and let them come in with the workaround ;-) In your specific case though, maybe you should do the unpacking at a later stage, e.g. prepare-package ? On Sun, Mar 24, 2019 at 11:51 AM Christofer Dutz wrote:

Re: Using maven-dependency-plugin:unpack in "mvn compile" build

2019-03-24 Thread Christofer Dutz
22.03.19, 15:02 schrieb "Maxim Solodovnik" : Hello Chris, Maybe true of maven-war-plugin can help? On Fri, 22 Mar 2019 at 20:12, Christofer Dutz wrote: > Hi, > > we are currently having a little problem with our build. > A u

Using maven-dependency-plugin:unpack in "mvn compile" build

2019-03-22 Thread Christofer Dutz
Hi, we are currently having a little problem with our build. A user complained about not being able to build with a “mvn compile”. The reason is that we have one module that builds a web-client (bundled as war) and a server module to which the client is copied. We are using the

Re: Supporting custom "Scopes" and Maven support for "Non-Java" languages (WAS: Re: Any update on "polyglot" Maven?)

2019-01-14 Thread Christofer Dutz
quirements instead of trying to explain generic mechanisms, can you provide some concrete C++ examples, please? Regards, Hervé Le lundi 7 janvier 2019, 14:23:48 CET Christofer Dutz a écrit : > Hi Hervé, > > thanks for that info ... I adjusted the t

Supporting custom "Scopes" and Maven support for "Non-Java" languages (WAS: Re: Any update on "polyglot" Maven?)

2019-01-07 Thread Christofer Dutz
heir way. But I never got too much in details on how finely they managed dependencies: I know there were both static and dynamic libraries, and multi-platform support, then 2 key topics for C/C++ than Java does not require Regards, Hervé [1] http:/

Any update on "polyglot" Maven?

2019-01-04 Thread Christofer Dutz
Hi all, after leaving the Flex project I sort of lost the need for supporting alternate dependency strategies. Now in PLC4X we’re currently starting to work on the C and C++ versions of our PLC drivers. This brings the old problem up again that not all programming languages have the same

Re: Can I remove comment in XML using resource filtering

2018-03-07 Thread Christofer Dutz
You could use the xml-maven-plugin to do an XSLT ... there you should be able to remove the comments. Chris Am 07.03.18, 17:09 schrieb "Hoa Phan" : I have some resources filtering to fill in var in XML template, however I also want to remove the comments in the XML

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

2018-03-05 Thread Christofer Dutz
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-maven-plugin and the maven-invoker-plugin to get a dedicated local maven repo that is filled with all artifacts pulled in during the

Re: Skip deploy of test-jars?

2018-02-01 Thread Christofer Dutz
thanks, Robert On Tue, 30 Jan 2018 09:12:01 +0100, Christofer Dutz <christofer.d...@c-ware.de> wrote: > Regarding the number of kittens being hurt in both ways ... which one > would you guys see the one with more happy kittens? > &

Re: Skip deploy of test-jars?

2018-01-30 Thread Christofer Dutz
rt On Sun, 28 Jan 2018 12:52:14 +0100, Christofer Dutz <christofer.d...@c-ware.de> wrote: > Hi all, > > in the Apache Edgent (incubating) project we are producing java 8 and > java 7 compatible jars by using th

Re: Skip deploy of test-jars?

2018-01-29 Thread Christofer Dutz
ontent from target/classes + target/test-classes? With a Maven plugin is it quite simple to access this as part of the reactor. thanks, Robert On Sun, 28 Jan 2018 12:52:14 +0100, Christofer Dutz <christofer.d...@c-ware.de> wrote: > Hi al

Skip deploy of test-jars?

2018-01-28 Thread Christofer Dutz
Hi all, in the Apache Edgent (incubating) project we are producing java 8 and java 7 compatible jars by using the retrolambda-maven-plugin. The Java 7 versions are just a convenience byproduct for us. In order to do this, we create the jar as well as the test-jars for each module and hava

Re: Follow up: Building projects for multiple platforms

2017-06-17 Thread Christofer Dutz
… again the code was the best documentation ;-) Now I have to get the toolchain thingy to work … Chris Am 17.06.17, 18:20 schrieb "Christofer Dutz" <christofer.d...@c-ware.de>: Hi Karl Heinz, I’m already working on this. Now I’m simply setting up a set of “pure-pom”

Re: Follow up: Building projects for multiple platforms

2017-06-17 Thread Christofer Dutz
… I have gotten really far with this approach … thank you for that … and I think this will cause far less problems when releasing. Chris Am 17.06.17, 16:48 schrieb "Karl Heinz Marbaise" <khmarba...@gmx.de>: Hi, On 17/06/17 16:23, Christofer Dutz wrote:

Re: Follow up: Building projects for multiple platforms

2017-06-17 Thread Christofer Dutz
pipeline with the same version. > > You can use properties in the version if you use Maven 3.5 with some other tricks, there was a recent thread on the list about it > > http://www.mail-archive.com/users@maven.apache.org/msg139475.html > > >>

Follow up: Building projects for multiple platforms

2017-06-16 Thread Christofer Dutz
Hi, A short follow up question regarding my last one. In the Edgent maven build, which I am working on, we need to produce java8, java7 and android versions of jars. This is done by running the retrolambda-maven-plugin on the classes when building the java7 version. To make the dependency

Re: Producing java8 and java7 versions

2017-06-12 Thread Christofer Dutz
Hi Laurent, I love bleeding edge stuff, but I don’t like SM stuff … guess java 9 multi-jars sound more SM than bleeding edge for me. Guess it would not be good to base the build of an Apache project on that ;-) Chris Am 10.06.17, 09:31 schrieb "Laurent Perez" : On a

Re: Producing java8 and java7 versions

2017-06-09 Thread Christofer Dutz
Hi Jörg, We have been discussing this option on the Edgent list and I guess this is the way it’s gonna be. Thanks for your feedback. Chris Am 08.06.17, 20:06 schrieb "Jörg Schaible" <joerg.schai...@gmx.de>: Hi Chistopher, Christofer Dutz wrote: >

Re: Producing java8 and java7 versions

2017-06-08 Thread Christofer Dutz
Perhaps not adding any suffix to the version for the java8 version would be ok and to add “java7” to the version for the legacy builds would be a good compromise. Chris Am 08.06.17, 11:11 schrieb "Christofer Dutz" <christofer.d...@c-ware.de>: So, they are adding

Re: Producing java8 and java7 versions

2017-06-08 Thread Christofer Dutz
s, Here is one example: https://repo1.maven.org/maven2/org/postgresql/postgresql/ WBR, Maxim (from mobile, sorry for the typos) On Jun 8, 2017 10:44, "Christofer Dutz" <christofer.d...@c-ware.de> wrote: > Hi, > > Currently the

Naming apache artifacts

2017-06-08 Thread Christofer Dutz
Hi, Another question that came up while at my Maven migration task in the Edgent project. Justin suggested to prefix all artifactIds with “apache-edgent-“. Having a look at the Apache Repo it feels like 80% prefix the artifacts with the “{projectname}-“ , about 10% with “apache-{projectname}”

Producing java8 and java7 versions

2017-06-08 Thread Christofer Dutz
Hi, Currently the Edgent project produces two tar.gz files … one for java7 and one for java8. Now they would like to produce artifacts for Maven-Central. I’m currently trying to help them with their build by migrating this to maven. I think that there currently is no clean way to provide both

Re: Maven-Site-Plugin: Generated content?

2016-11-04 Thread Christofer Dutz
Hi Gerrit, I am also heavily using the site-plugin to generate the site of the flex project. I didn’t have to provide the generatedSiteDirectory config option at all ... As soon as I run: mvn site It generates the „target/site“ directory with all of the site content. Eventually you could

AW: API for annotation scanning in a mojo?

2016-07-15 Thread Christofer Dutz
Hi Paul, Have you thought about writing a Java annotation processor and hooking that up in the compiler plugin? I think this is exactly what I would use if I want to do something like that.

AW: Dealing with .jars that have overlapping .classes

2016-04-23 Thread Christofer Dutz
We use the Tattletale Maven Plugin to scan our applications to finde such overlaps: http://docs.jboss.org/tattletale/userguide/1.2/en-US/html/maven.html Chris Von: ctrueden.w...@gmail.com im Auftrag von Curtis Rueden

AW: Dealing with .jars that have overlapping .classes

2016-04-23 Thread Christofer Dutz
Here I could re-phrase my request to extend the dependencyManagement with the ability to add "includes". Cause when dealing with these uber-jars I always have to add a set of excludes and would like to have some replacement includes ... sort of: dependencyManagement dependency-x

AW: Apache Maven PMD Plugin - Language XML

2016-04-11 Thread Christofer Dutz
Hi Jeremie, quite a while ago I helped implement the modular language support for PMD. Before that the languages were hard-coded into PMD, but with those changes you can extend PMD with any Language you like (and you are willing to implement). I did this because I didn't want to continue to

AW: Plugin dependencies to artifacts of the same build?

2016-04-01 Thread Christofer Dutz
Von: Christofer Dutz <christofer.d...@c-ware.de> Gesendet: Dienstag, 29. März 2016 19:14 An: users@maven.apache.org Betreff: AW: Plugin dependencies to artifacts of the same build? Sorry ... that email went off unintentionally ... well to co

AW: Plugin dependencies to artifacts of the same build?

2016-03-29 Thread Christofer Dutz
-closure-library-third-party-0.0-20150902-b129bb9e.jar Can anyone here explain why? Chris Von: Christofer Dutz Gesendet: Dienstag, 29. März 2016 19:13 An: users@maven.apache.org Betreff: AW: Plugin dependencies to artifacts of the same build? So I added some

AW: Plugin dependencies to artifacts of the same build?

2016-03-29 Thread Christofer Dutz
: Christofer Dutz <christofer.d...@c-ware.de> Gesendet: Dienstag, 29. März 2016 16:14 An: users@maven.apache.org Betreff: Plugin dependencies to artifacts of the same build? Hi, I am currently trying to sort out some glitches in my Maven build. I am working on a new flexjs-maven-plugin a

Plugin dependencies to artifacts of the same build?

2016-03-29 Thread Christofer Dutz
Hi, I am currently trying to sort out some glitches in my Maven build. I am working on a new flexjs-maven-plugin as part of my efforts to migrate more and more of the Apache Flex project to Maven. In the reactor I have a a compiler, a maven-plugin providing a custom lifecycle mapping for

AW: debugging maven-deploy-plugin:deploy-file

2016-02-09 Thread Christofer Dutz
Just to add my 50ct ... I too encountered a similar problem a few days ago and am still having it. While I had a settings.xml that worked fine for ages I got the exact same Unauthorized errors. At first I thought I had a problem in my settings but I couldn't find one. I "resolved" the

AW: debugging maven-deploy-plugin:deploy-file

2016-02-09 Thread Christofer Dutz
ble for your repo manager instance and have them help you! /Anders On Tue, Feb 9, 2016 at 4:16 PM, Christofer Dutz <christofer.d...@c-ware.de> wrote: > Just to add my 50ct ... I too encountered a similar problem a few days ago > and am still having it. > > While I had a settings

AW: debugging maven-deploy-plugin:deploy-file

2016-02-09 Thread Christofer Dutz
e role/privilege that is incorrect, though that doesn't make sense, as its the same user writing tot he same repository in both cases. On Tue, Feb 9, 2016 at 10:40 AM, Christofer Dutz <christofer.d...@c-ware.de> wrote: > In my case I'm the only user and admin of the Repo Manager. >

AW: AW: AW: How to manage dependency "includes"?

2016-01-10 Thread Christofer Dutz
figure it in the parent POM and have it executed everywhere. Le sam. 9 janv. 2016 10:59, Christofer Dutz <christofer.d...@c-ware.de> a écrit : > Thanks for that detailed post, but it's still not what I asked for :-( > I just finished the transition of ALL of the projects of a large >

AW: AW: AW: How to manage dependency "includes"?

2016-01-10 Thread Christofer Dutz
. Le sam. 9 janv. 2016 10:59, Christofer Dutz <christofer.d...@c-ware.de> a écrit : > Thanks for that detailed post, but it's still not what I asked for :-( > I just finished the transition of ALL of the projects of a large > international bank from Ant to Maven. In parallell &

AW: AW: AW: AW: How to manage dependency "includes"?

2016-01-09 Thread Christofer Dutz
ot; leave away "half-apis:jms" and add "javax.jms:jms:1.1" instead. Chris Von: Karl Heinz Marbaise <khmarba...@gmx.de> Gesendet: Samstag, 9. Januar 2016 13:39 An: Maven Users List Betreff: Re: AW: AW: AW: How to manage dependency &qu

AW: AW: AW: How to manage dependency "includes"?

2016-01-09 Thread Christofer Dutz
n the module. This makes life really easy for developers - change one number in the module POM and start working. I hope that this helps. Ron On 08/01/2016 5:03 AM, Christofer Dutz wrote: > I agree, but this only woks as long as there is "THE" project manager. Here > there

AW: AW: How to manage dependency "includes"?

2016-01-08 Thread Christofer Dutz
n programmer productivity and improved project schedule stability Once you have found the source jar for the library and included it in one of your libraries, it is available for every module. Ron On 07/01/2016 9:25 AM, Christofer Dutz wrote: > Hi Ron, > > Well I guess

How to manage dependency "includes"?

2016-01-04 Thread Christofer Dutz
Hi, I am currently cleaning up in the dependencies of a quite big set of big projects. For this I am making a lot of use of dependency management. One thing I did come across quite a lot of times is this problem: Some libs reference undesired libs, mostly API libs (in most cases they

AW: Packaging Maven Core Extensions

2015-04-19 Thread Christofer Dutz
with Maven 3.1.1 and above. Chris Von: Christofer Dutz christofer.d...@c-ware.de Gesendet: Samstag, 18. April 2015 22:03 An: Maven Users List; i...@soebes.de Betreff: AW: Packaging Maven Core Extensions Hi, the code is here: https://github.com/apache/flex

AW: Packaging Maven Core Extensions

2015-04-19 Thread Christofer Dutz
. If we moved the setup of the spies into DefaultMaven this would likely work as you expected but that's not the way it works currently. On Apr 19, 2015, at 6:09 AM, Christofer Dutz christofer.d...@c-ware.de wrote: Ok ... so I invested quite some time in different ways to get the MavenSession

Packaging Maven Core Extensions

2015-04-18 Thread Christofer Dutz
Hi, I have just finished a small maven core extension containing an EventSpy. It's working nicely if I include it into my build using Maven 3.3.1 and a .mvn/extensions.xml, but I couldn't get it working by copying the jar to the MAVEN_HOME/lib/ext directory (I even tried a shaded jar). All I

AW: Packaging Maven Core Extensions

2015-04-18 Thread Christofer Dutz
:-( Chris -Ursprüngliche Nachricht- Von: Karl Heinz Marbaise [mailto:khmarba...@gmx.de] Gesendet: Samstag, 18. April 2015 18:51 An: Maven Users List Betreff: Re: Packaging Maven Core Extensions Hi, are you running from within Jenkins ? On 4/18/15 6:26 PM, Christofer Dutz wrote: Hi, I

AW: Looking for a way to visualize dependency structure of my multi-module pom project

2015-04-08 Thread Christofer Dutz
I used the maven-graph-plugin successfully too but sent the output through an XSLT to strip out stuff I didn't want. Chris Von: Dan Tran dant...@gmail.com Gesendet: Mittwoch, 8. April 2015 10:59 An: Maven Users List Betreff: Re: Looking for a way to

AW: Problems with the release plugin

2014-11-30 Thread Christofer Dutz
Hi Robert, Thanks for your reply, but I have encountered numerous situations where this restriction resulted in people not using the pulugin at all ... doing each step with alternate plugins and unfortunately leaving away some of the steps. So ususally they use the versions plugin or manually

AW: Problems with the release plugin

2014-11-30 Thread Christofer Dutz
Unfortunately the world isn't as ideal as I would like it to be. There are sometimes constraints that lie outside of the reach of the developer(s) working on the projects build. In one case the company I worked for desperately needed to release parts of a multi module build separately. I know

AW: Problems with the release plugin

2014-11-30 Thread Christofer Dutz
is not, in my view, a good plan. If you can write down a clear spec for an alternative workflow, you can study the source and make a plugin. That's what the owners of the gitflow-maven-plugin did. It's an alternative release plugin with a different workflow. On Sun, Nov 30, 2014 at 11:44 AM, Christofer

Strange Dependency problem after switching to Maven 3.1.1

2014-10-17 Thread Christofer Dutz
Hi, I'm currently working on updating the Flexmojos plugin to support newer Maven versions. Now I'm having a strange problem: Flexmojos defines Flex dependencies as type swc for flex libraries and rb.swc for resource bundles. Furthermore we have a scope rsl (runtime shared library) which

AW: Strange Dependency problem after switching to Maven 3.1.1

2014-10-17 Thread Christofer Dutz
Actually in MavenProject the resolvedArtifacts variable contains this data ... not artifacts as the runtime artifacts are stripped out by the artifactFilter. Chris Von: Christofer Dutz christofer.d...@c-ware.de Gesendet: Freitag, 17. Oktober 2014 14:20

AW: Strange Dependency problem after switching to Maven 3.1.1

2014-10-17 Thread Christofer Dutz
(assumably by appending .rb to the group Id. Chris Von: Christofer Dutz christofer.d...@c-ware.de Gesendet: Freitag, 17. Oktober 2014 14:28 An: Maven Users List Betreff: AW: Strange Dependency problem after switching to Maven 3.1.1 Actually in MavenProject

AW: AW: Strange Dependency problem after switching to Maven 3.1.1

2014-10-17 Thread Christofer Dutz
bit by Identical GAV default runtime scoping side-effect Chris Von: Christofer Dutz christofer.d...@c-ware.de Gesendet: Freitag, 17. Oktober 2014 14:28 An: Maven Users List Betreff: AW: Strange Dependency problem after switching to Maven 3.1.1

Releasing Maven Plugins

2014-09-12 Thread Christofer Dutz
Hi, I'm currently releasing a new version of Flexmojos. While I sort of found a procedure for releasing that maven plugin, it's still sort of a PITA. The main problem is that the project contains the plugin as well as some modules that use the plugin. Now in order to build, I have a minimal

AW: Releasing Maven Plugins

2014-09-12 Thread Christofer Dutz
But if I create a plugin using the official maven-plugin archetype the setup is almost the same so it can't be that off-track. Chris Von: Karl Heinz Marbaise khmarba...@gmx.de Gesendet: Freitag, 12. September 2014 14:46 An: Maven Users List Betreff: Re:

AW: Releasing Maven Plugins

2014-09-12 Thread Christofer Dutz
Unfortunately not. To me it seems as if the reactor checks if everything is available and if it's missing the build fails. The strange thing is that it only checks if something is there ... during the build the freshly built version of the plugin is used ... it's just that maven gives up before

AW: AW: Releasing Maven Plugins

2014-09-12 Thread Christofer Dutz
No I can't build with an empty local repo. I have to build the plugin first using the minimal profile. As i said in the other post, Maven gives up before starting to build. You can have a look ... the project is publicly available. Unfortunately I didn't create it ... I took over development 2

AW: AW: Releasing Maven Plugins

2014-09-12 Thread Christofer Dutz
2014 17:08 An: Maven Users List Betreff: Re: AW: Releasing Maven Plugins Are you sure it's not pulled from the local repository? To check, remove that SNAPSHOT and run 'mvn verify' and NEVER 'mvn install'. Robert Op Fri, 12 Sep 2014 16:56:05 +0200 schreef Christofer Dutz christofer.d...@c-ware.de

AW: AW: AW: Artifact with different sets of dependencies switched by profiles

2014-07-01 Thread Christofer Dutz
joerg.schai...@gmx.de Gesendet: Sonntag, 29. Juni 2014 15:16 An: users@maven.apache.org Betreff: Re: AW: AW: Artifact with different sets of dependencies switched by profiles Hi Christoper, Christofer Dutz wrote: Hi Ron, I think you got what I'm trying to do a little wrong. It's not two different

AW: AW: AW: Artifact with different sets of dependencies switched by profiles

2014-07-01 Thread Christofer Dutz
it is not supposed to... so you only get to control the variables from the parent pom and any inherited dependencies/dependencyManagement not from the transitive dependencies of your pom On 1 July 2014 10:42, Christofer Dutz christofer.d...@c-ware.de wrote: Hey ... now that looks promissing :-) I'll

AW: AW: Artifact with different sets of dependencies switched by profiles

2014-06-29 Thread Christofer Dutz
not apply to the environment that they know. Ron On 28/06/2014 6:26 PM, Christofer Dutz wrote: No worries :-) I was going through the options and I noticed this myself :-) But is there another option? I tried the pom dependency with classifier option, but that didn't work (I wasn't really

Artifact with different sets of dependencies switched by profiles

2014-06-28 Thread Christofer Dutz
Hi, I am currently working on making the Apache Flex project able to release as Maven artifacts. For that I have created a tool that mavenizes a Flex SDK by generating poms and copying and renaming the libraries it consists of. All is working nicely. In contrast to Java in Flex you can sort of

AW: Artifact with different sets of dependencies switched by profiles

2014-06-28 Thread Christofer Dutz
. The activation rules etc are *never* what they think you are once the dependency is resolved from the local repository cache. Please do no do this stupid thing just because we were stupid enough to leave it as an option. On 28 June 2014 19:24, Christofer Dutz christofer.d...@c-ware.de wrote: Hi

ApacheCon 2014 = FlexCon 2014 ;-)

2014-03-12 Thread Christofer Dutz
Hi Guys, I just wanted to remind you that this year we are planing on doing some Major Flexing on the anual ApacheCon 2014 in Denver. There will be 3 Talks on Flex and even one day of Tutorials: Talks: - Tue 8th of April 16:45 : Building Enterprise Level Applications with Apache Flex

AW: ApacheCon 2014 = FlexCon 2014 ;-)

2014-03-12 Thread Christofer Dutz
Sorry for this ... wrong user-list :-( ... but hey ... It's Maven releated (Flexmojos) and Apache too so don't be mad at me ;-) Von: Christofer Dutz christofer.d...@c-ware.de Gesendet: Mittwoch, 12. März 2014 16:59 An: Maven Users List Betreff

AW: Need advice automating a Java test suite.

2014-01-09 Thread Christofer Dutz
Hi Todd, we use a combination of the cargo, antrun and surefire plugin for this. I dumped the pom for one of our Projects in my Confluence, so feel free to have a look: https://dev.c-ware.de/confluence/display/PUBLIC/Maven+setup+for+Integrationtesting In general we use: - Cargo to

AW: Fine versioning on multi-modules project ?...

2013-12-21 Thread Christofer Dutz
Hi Benoît, Hope I'm not going to be flammed for freshing up that old discussion we had a little more than a year ago :-) I had a customer that had a similar requirement (And no ... there was no way to work around the requirement to release modules with separate versions). I actually did

AW: AW: Painless way to update a frameworks group id?

2013-12-14 Thread Christofer Dutz
-mapping ) Regards Mirko -- Sent from my mobile On Dec 13, 2013 10:13 PM, Christofer Dutz christofer.d...@c-ware.de wrote: Good Idea ... Unfortunately as we are not allowed to publish the Adobe artifacts (Flash Player / Air libs) we decided not to publish the Flex artifacts at all

AW: Multi-modules projects

2013-12-13 Thread Christofer Dutz
I have similar Projects consisting of Java, Flex and .Net artifacts. I usually configure the plugins in the root of the maven Project and use self-activating maven profiles. Flex is active if a Directory src/main/flex exists, Npanday is used if i have src/main/csharp and so on. profile

AW: Painless way to update a frameworks group id?

2013-12-13 Thread Christofer Dutz
providing means to detect them (the enforcer rule). What you could do is try this and release a beta or something and see what sort of problems people run into. Changing coordinates is always a problem. My two cents, /Anders On Thu, Dec 12, 2013 at 11:24 AM, Christofer Dutz

AW: Painless way to update a frameworks group id?

2013-12-12 Thread Christofer Dutz
/bannedDependencies.html On Wed, Dec 11, 2013 at 9:01 AM, Christofer Dutz christofer.d...@c-ware.dewrote: Hi, I am the current maintainer of the Flexmojos Maven Plugin and contributor to the Apache Flex Project. Currently I am working on a new Version of Flexmojos which is able to work

AW: Painless way to update a frameworks group id?

2013-12-12 Thread Christofer Dutz
, Christofer Dutz christofer.d...@c-ware.de wrote: What do you think about this Option? I created a tool that mavenizes a non-maven Flex SDK and genereates all sorts of maven artifacts ... one artifact that is generated is a Special pom that contains only a dependency Management section that can

Painless way to update a frameworks group id?

2013-12-11 Thread Christofer Dutz
Hi, I am the current maintainer of the Flexmojos Maven Plugin and contributor to the Apache Flex Project. Currently I am working on a new Version of Flexmojos which is able to work with Flex SDKs that have a groupId of org.apache.flex instead of the old com.adobe.flex. While building