RE: Dealing with a generated project

2017-08-26 Thread Sander Verhagen
Apparently no one had ideas about this. That hurts :) Just circling back with what ended up being my approach. So we generate a Maven project using Swagger Codegen Maven Plugin. I now generate it somewhere below the "target/" folder of the POM project that has this configuration. Then use the

RE: 1;34mINFO[m] formatting on console output

2017-08-26 Thread Friedman, Jacob
Hi Herve, A little background about myself. I am a Scrum Master on a team that does not have a QA resource for the product I'm working on. I undertook regression testing manually and decided to teach myself how to code Automated Selenium Regression Tests in Java. I'm VERY new to this, so

Re: Excluding certain files from compilation or checking

2017-08-26 Thread Benson Margulies
You have excluded it from the checkstyle plugin, but it's the Java compiler which is discontented. You need to configure the compiler plugin, as well. On Sat, Aug 26, 2017 at 12:03 PM, Seth Goldstein wrote: > I would have expected that too, however: > > >

Re: Excluding certain files from compilation or checking

2017-08-26 Thread Seth Goldstein
I would have expected that too, however: org.apache.maven.plugins maven-checkstyle-plugin 2.17 validate validate check config/checkstyle.xml

Re: How to up date a property in a POM to a specific value

2017-08-26 Thread John Patrick
If your talking about the codehaus version plugin which is now hosted at mojohaus, it's a different mailing list i think... http://www.mojohaus.org/versions-maven-plugin/mail-lists.html On 23 August 2017 at 21:07, Sandra Parsick wrote: > Thanks for your answers. > > Passing

Re: How to create a repository snapshot pruner mojo?

2017-08-26 Thread Robert Scholte
Hi Steinar, as you have discovered, a remote repository must be managed. IIRC the first version of Maven Central had a setup comparable to yours. Nowadays that is just not suitable anymore. please read the following pages:

How to create a repository snapshot pruner mojo?

2017-08-26 Thread Steinar Bang
I'm deploying maven snapshots from travis CI-builds, to a "low-cost" (in terms of server resources) repository, consisting of an ftp server, and served out with nginx. I would like to clean up the snapshots, so that only the most recent snapshot of each artifact is kept. I'm thinking that the

Re: Excluding certain files from compilation or checking

2017-08-26 Thread Robert Scholte
I would expect it to be **/.* **/ means zero or more directories .* any file with a dot followed by anything Robert ps. repeating the same element within configuration like you did with means the last one will win. On Fri, 25 Aug 2017 23:26:58 +0200, Seth Goldstein wrote: I

Excluding certain files from compilation or checking

2017-08-26 Thread Seth Goldstein
I am trying to exclude all files that begin with '.,' from being checked or compiled. Is there a quick and easy way to do this? The following does NOT work: org.apache.maven.plugins maven-checkstyle-plugin 2.17 validate