Re: Publishing to Maven Central and non-OSS plugin dependencies

2024-02-29 Thread Manfred Moser
The documentation for publishing to Central is very comprehensive. I suggest you take a closer look. Specifically https://central.sonatype.org/register/central-portal/ https://central.sonatype.org/publish/producer-terms/ https://repo1.maven.org/terms.html And maybe contact a lawyer and

Re: Browsing Maven central buggy?

2024-01-24 Thread Manfred Moser
/a/0dLOAfWxyxTg6zgcYSDX6FQwm ;) T On Wed, Jan 24, 2024 at 6:13 PM Manfred Moser wrote: I suggest to use the maintained search and browse frontend from Sonatype instead. https://search.maven.org/ .. same as https://central.sonatype.com/ And browse at https://central.sonatype.com/search It sits

Re: Browsing Maven central buggy?

2024-01-24 Thread Manfred Moser
I suggest to use the maintained search and browse frontend from Sonatype instead. https://search.maven.org/ .. same as https://central.sonatype.com/ And browse at https://central.sonatype.com/search It sits on top of the same data and is very nice indeed .. props to Brian Fox and team btw!

Re: [ANN] Apache Maven Wrapper 3.1.1 Released

2022-05-17 Thread Manfred Moser
Awesome work everyone. I am glad this made it to the users from Apache now. Manfred Hervé Boutemy wrote on 2022-05-14 07:06 (GMT -07:00): > The Apache Maven team is pleased to announce the release of the Apache Maven > Wrapper, version 3.1.1. > > The Maven Wrapper is an easy way to ensure a

Re: Question for Maven Plugin developers/maintainers

2022-01-31 Thread Manfred Moser
ys to solve the same > problem before yielding and resorting to Beanshell inside a POM. > > -- > Alexander Kriegisch > https://scrum-master.de > > > Manfred Moser schrieb am 01.02.2022 05:12 (GMT +07:00): > >> I think beanshell is long dead. Any plugin that uses it w

Re: Question for Maven Plugin developers/maintainers

2022-01-31 Thread Manfred Moser
I think beanshell is long dead. Any plugin that uses it would be for a very old Maven version and would need a lot of work when upgrading. So we should be okay to deprecate And in terms of ANT .. if there are any out there.. similar things will apply and

Re: Maven Book recommendation

2022-01-27 Thread Manfred Moser
Just keep in mind that we have stopped maintenance on these books a long time ago and things like plugin versions and such are outdated. The general concepts and so however all still apply. manfred Thad Humphries wrote on 2022-01-27 16:29 (GMT -08:00): > I started with "Maven by Example"

Re: Using Maven/Aether resolver programmatically outside Maven environment

2021-05-07 Thread Manfred Moser
I wrote (and kind of still maintain) the maven repository tools .. it does that. Just have a look at the code. https://github.com/simpligility/maven-repository-tools Manfred Shahim Essaid wrote on 2021-05-06 22:08 (GMT -07:00): > Hi all, > > I'm getting familiar with using the Maven/Aether

Re: Advice or examples on using aether

2020-08-21 Thread Manfred Moser
- Use Maven resolver .. not aether .. aether is deprecated and replaced by resolver - Check out my project https://github.com/simpligility/maven-repository-tools Farid Zakaria wrote on 2020-08-19 16:32 (GMT -07:00): > Hello! > > I'm seeking to use aether (not through Maven plugin) to collect

Re: Maven Artifact Resolver Ant Tasks - Transitive Dependency Versions

2020-02-27 Thread Manfred Moser
As long as you are comparing the maven artifact resolver task using same version as whatever Maven and dependency plugin you are using .. the results will be the same. Resolution changed over time so older Maven versions and older Maven plugin have these difference. Maven Ant Tasks is VERY

Re: repo.maven.apache.org returning 403 forbidden when running maven

2019-12-31 Thread Manfred Moser
HTTP has bee†n deprecated a while ago .. just use HTTPS. See https://central.sonatype.org/articles/2019/Nov/01/announcement-insecurerepo1mavenorg/ https://central.sonatype.org/articles/2019/Apr/30/http-access-to-repo1mavenorg-and-repomavenapacheorg-is-being-deprecated/ Manfred

Re: Configure default execution phase

2019-12-24 Thread Manfred Moser
and can be bound to a default phase in the code of the plugin. Manfred Stanimir Stamenkov wrote on 2019-12-24 08:47 (GMT -08:00): > Tue, 24 Dec 2019 17:27:18 +0100 (CET), /Manfred Moser/: > >> Typically a separate invocation like needing to update the data schema >> involves mo

Re: Configure default execution phase

2019-12-24 Thread Manfred Moser
. If you truly want to invoke only the one plugin, it wont matter. But in practice .. most of time it will be more than one plugin at a time. Stanimir Stamenkov wrote on 2019-12-24 05:09 (GMT -08:00): > Mon, 23 Dec 2019 21:43:36 +0100 (CET), /Manfred Moser/: > >> well... with using

Re: Configure default execution phase

2019-12-23 Thread Manfred Moser
well... with using the profile you can add more plugins and all sorts of other stuff and the command will stay that long Manfre Stanimir Stamenkov wrote on 2019-12-23 09:50 (GMT -08:00): > Mon, 23 Dec 2019 18:16:13 +0100 (CET), /Manfred Moser/: > >> Just make a profile an

Re: Configure default execution phase

2019-12-23 Thread Manfred Moser
Just make a profile and add it all in there. Stanimir Stamenkov wrote on 2019-12-22 09:04 (GMT -08:00): > I'm having a POM like: > > > > > > org.liquibase > liquibase-maven-plugin > 3.8.3 >

Re: Publishing Maven site as an docker image

2019-12-23 Thread Manfred Moser
Maven sites are just static HTML. Why would you publish that as a Docker image? You can of course ... just run nginx or apache httpd and put the files in the root web server folder.. Manfred Nick Stolwijk wrote on 2019-12-23 00:58 (GMT -08:00): > Hi folks, > > Has anyone tried to publish

New Maven wrapper release

2019-12-04 Thread Manfred Moser
I just release a new version which now default to use Maven 3.6.3. Update your projects with mvn -N io.takari:maven:0.7.7:wrapper and enjoy. More info at https://github.com/takari/maven-wrapper Manfred - To unsubscribe,

Re: Regression: Maven 3.6.2 breaks Tycho pomless builds

2019-09-09 Thread Manfred Moser
Yes .. we seem to be having a similar problem with polyglot-maven.. https://github.com/takari/polyglot-maven/issues/200 I have not had a chance to look at all yet, and probably wont be for a while either. Manfred Jörg Schaible wrote on 2019-09-09 05:55: > Hi, > > Maven 3.6.2 breaks builds

Kotlin pom

2019-06-07 Thread Manfred Moser
Shipped 0.4.1 of polyglot-maven with more kotlin goodness ;-) https://www.simpligility.com/2019/06/kotlin-improvements-for-polyglot-maven/ Enjoy Manfred - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For

Re: Would it make sense to publish a WAR to maven central?

2019-06-02 Thread Manfred Moser
Yes.. publishing war files, executable jar files or install/distribution archives of your app and so on is all within the scope of publishing to Central Manfred Matthieu BROUILLARD wrote on 2019-05-30 23:09: > Why couldn't you publish as a war? > AFAIK Central is not restricted to be a jar

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

2019-05-20 Thread Manfred Moser
Thats a known issue with the polyglot support. Not sure if it still exists with the latest release ..please test and if yes file a bug and send a PR with a fix. https://github.com/takari/polyglot-maven manfred Adam Hardy wrote on 2019-05-17 04:24: > Hi Listers > > I just converted a project

Re: [VOTE] Retired Maven Artifact Resolution API (Maven2)

2019-05-08 Thread Manfred Moser
+1 Robert Scholte wrote on 2019-05-08 11:25: > Hi, > > The Apache Maven project consist of about 100 (sub)projects. Due to the small > number of volunteers and the huge amount of code to maintain we're missing > enough space to make real progress on all these projects, including > our 

Re: [VOTE] Retire Maven Repository Plugin

2019-04-23 Thread Manfred Moser
+1 Robert Scholte wrote on 2019-04-23 12:43: > Hi, > > The Apache Maven project consist of about 100 (sub)projects. Due to the small > number of volunteers and the huge amount of code to maintain we're missing > enough space to make real progress on all these projects, including > our ambitious

Maven Wrapper updated to Apache Maven Version 3.6.1

2019-04-16 Thread Manfred Moser
I just cut a new release of maven wrapper and the plugin for installing it. It now defaults to the shiny new 3.6.1 Enjoy manfred Karl Heinz Marbaise wrote on 2019-04-13 03:03: > The Apache Maven team is pleased to announce the release of the Apache > Maven 3.6.1. > > Apache Maven is a

Re: Kotlin for your pom

2019-04-03 Thread Manfred Moser
around, I would love to update the docs with a PR from you ;-) Manfred Oliver B. Fischer wrote on 2019-03-30 08:59: > Hi Manfred, > > do you know far Polyglot Maven is already supported by the various IDE? > > Bye, > > Oliver > > Am 30.03.19 um 05:50 schri

Maven Repository Provisioner 1.4.0

2019-04-03 Thread Manfred Moser
Just a quick heads up for those of you interested in targeted artifact and dependency migration between repositories and repository managers. I cut a new release for the Maven Repository Provisioner with some new features and dependency updates and blogged about it on my site..

Kotlin for your pom

2019-03-29 Thread Manfred Moser
Hi all, Just a quick heads up that the new polyglot-maven release I cut recently features a MUCH improved support for Kotlin. So with the help of polyglot-maven you can write your pom in yaml, ruby, scala, kotlin and a bunch of other formats now. Check it out and send us any feedback ...

Update to the new Maven wrapper

2019-03-26 Thread Manfred Moser
Hi all, Just wanted to give you a heads up about the recent Maven wrapper and plugin releases. https://www.simpligility.com/2019/03/recent-maven-wrapper-updates/ Some pretty nice features worth checking out imho. Go update your projects to this latest version! Manfred

Re: Repository and Dependency

2018-11-15 Thread Manfred Moser
Best practice is to do it with a repository manager. Or settings.xml Or worst case .. pom.xml Manfred Eng. Bilal Ghayad wrote on 2018-11-15 17:11: > Hello All; > > > > I need to add a class file that is required to be able to add combobox in > vaadin grid and it is mentioned the

Re: How do I skip site-generation for modules?

2018-11-08 Thread Manfred Moser
You can use the skip parameter in the individual modules.. https://maven.apache.org/plugins/maven-site-plugin/site-mojo.html#skip That said ... I think since you want some resources from the you are better off NOT skipping but instead just making it work for the multi module setup. You just

Re: Differenz between mvn clean install and mvn clean install deploy

2018-09-17 Thread Manfred Moser
The difference is that the first invocation is just simply wrong. When you call a mvn lifecycle phase it will run through all prior phases. If you specify 2 lifecycle phase from the same lifecycle (the default cycle) .. you run through things twice.. E.g. mvn install runs initialize, ..

Re: Maven assembly Plugin - ignore pom packaging

2018-05-23 Thread Manfred Moser
You should NOT have a plugin execution defined in a pom packaging project if it works as an aggregator. Instead just define it in pluginManagement and add it where you want the exection to be happening. Manfred Rahamim, Ben wrote on 2018-05-23 02:03: > Hi all, > > TL;DR – why isn’t a flag in

Re: Maven JAVA_HOME

2018-03-20 Thread Manfred Moser
You probably want to make sure the operating system JDK is the same. Depending on OS that is different .. Manfred Preston, Dale wrote on 2018-03-20 11:13: > On my server, I have JAVA_HOME set to jdk1.8.0_161.0. When I execute echo > $JAVA_HOME, it shows the right path to my jdk1.8.0_161.0.

Polyglot Maven 0.3.0 released

2018-03-07 Thread Manfred Moser
Hi all, Just a quick heads up that a new version of Polyglot Maven has been released with various fixes and the experimental addition of a Java dialect. With polyglot Maven you can use Groovy, Scala, Ruby, YML, XML, Java, Atom and Clojure to write your POM file. Find out more on our site.

Re: Is it poor practice to use Maven repo (ie: Nexus) to store non maven artifacts?

2017-11-26 Thread Manfred Moser
I think it is a common and good practice. Specifically if you take advantage of using a good structure in terms of the use GAV coordinates and release versioning. And also with regards to potentially restricting access based on that.. manfred Eric B wrote on 2017-11-26 11:36: > I have a

Re: Maven-Indexer 6.0 Release

2017-11-24 Thread Manfred Moser
+1 .. imho before the release .. Manfred Tamás Cservenák wrote on 2017-11-24 06:54: > Hi, > > All merged, but there is one more thing: > > I'd like to fully reformat indexer codebase to maven codestyle before > release: > https://github.com/apache/maven-indexer/pull/23 > (not much to see,

Re: Maven Docker Images

2017-10-18 Thread Manfred Moser
No. As you can see from the github URL this is NOT an apache URL. https://github.com/carlossg/docker-maven Mike Drob wrote on 2017-10-18 16:32: > Hello, > > Are the images at https://hub.docker.com/r/_/maven/ considered to be official > maven docker images and blessed/published by the PMC? >

Re: Version Information needed.

2017-09-19 Thread Manfred Moser
The version for the cobertur and any other non-core plugin is set in the pom of your project (or a parent of it). You can see the version in the log output of an invocation of it (typically your normal build log) manfred jayant sable wrote on 2017-09-19 05:06: > Hey folks, > > I'm using

Re: If anyone ever wanted to download a bunch of deps specified in a Maven POM for an Ant build

2017-06-12 Thread Manfred Moser
Why not use the Maven Resolver (formerly Eclipse Aether) Ant Tasks? https://maven.apache.org/resolver-archives/resolver-ant-tasks-LATEST/ Paul Hammant wrote on 2017-06-11 11:53: > If your 'current directory' is a Maven checkout, I have a Python script > that will download the dependencies into

Takari Maven Wrapper and Plugin

2017-04-21 Thread Manfred Moser
Hello all, We are pleased to announce a new release of the Maven Wrapper (0.2.1) and the Takari Maven Plugin (0.4.1) with the helping wrapper goal to install the Maven Wrapper in your project. The new release brings numerous changes that bring the wrapper up to using Maven 3.5.0, add support

Re: Maven Shell

2017-04-21 Thread Manfred Moser
jline3 integration is in the works right now. https://github.com/jdillon/gshell/pull/8 manfred Paul King wrote on 2017-04-20 16:08: > OK, cool. Is the jline3 integration likely before the final? > > Cheers, Paul. > > On Fri, Apr 21, 2017 at 8:05 AM, Manfred Moser <manf..

Re: Maven Shell

2017-04-20 Thread Manfred Moser
This is a snapshot (=development) build - so no. Manfred Paul King wrote on 2017-04-20 14:30: > Nice Jason. Is it available via sdkman? > > Cheers, Paul. > > On Thu, Apr 20, 2017 at 4:08 PM, Jason Dillon wrote: >> Folks, just a quick not that I’ve updated Maven Shell for

Re: Maven Shell

2017-04-20 Thread Manfred Moser
Thanks Jason. This is great. For those that don't know mvnsh is a shell environment that has a JVM with Maven constantly running so you will get nice performance and usability improvments on the command line. This new version is using Maven 3.5.0. Installation is easy - extract the archive

Re: Maven 3.5.0 and the versions plugin

2017-04-13 Thread Manfred Moser
Yeah. Provided you have tested this with the latest version of the versions plugin and it still shows that problem... Mark Eggers wrote on 2017-04-13 14:00: > Folks, > > I'm working on upgrading an environment to maven 3.5.0. With > prerequisites in pom.xml, I get the expected message: > >

Re: Maven central and indexing

2017-03-10 Thread Manfred Moser
Laird Nelson wrote on 2017-03-10 13:03: > On Fri, Mar 10, 2017 at 12:23 PM Bernd Eckenfels > wrote: > >> Hello, >> Related: >> http://blog.sonatype.com/2008/12/central-repository-downloading-the-nexus-index/ >> And especially the news of a public available dataset (by

Re: Download an artifact and its dependencies without a pom.xml

2017-03-02 Thread Manfred Moser
I have a similar tool that can be used to provision from and to a repository. https://github.com/simpligility/maven-repository-tools/tree/master/maven-repository-provisioner hth Manfred Curtis Rueden wrote on 2017-03-02 14:29: > Hi everyone, > >> My use case is that I want to run a class

Re: Plugin specific command line options?

2017-01-27 Thread Manfred Moser
No ... all plugins pick up all user properties. If two plugins use the same name then both will pick it up and react however implemented. Thats why you should establish plugin specific parameter names for user properties in your specific plugin. So if you have a plugin called foo with the goal

Re: Takari Maven Lifecycle

2017-01-06 Thread Manfred Moser
Hilco Wijbenga wrote on 2016-12-23 09:42: > On 23 December 2016 at 08:58, Manfred Moser <manf...@simpligility.com> wrote: >> From what I remember this is mostly a PoC feature and by default it doesnt >> complain or break things. > > Indeed, you have to explicitly en

Re: Takari Maven Lifecycle

2016-12-23 Thread Manfred Moser
>From what I remember this is mostly a PoC feature and by default it doesnt >complain or break things. The docs are here http://takari.io/book/40-lifecycle.html#enforcing-dependency-usage-during-compilation But I think it will be more helpful to watch the demo from Igor. He showed it at one

Re: Maven PMD, Checkstyle multimodel configuration.

2016-10-26 Thread Manfred Moser
I dont know about the instructions but an example config for checkstyle with a build tools config in a multi module project can be found here https://github.com/simpligility/ksoap2-android hth Manfred simpligility.com Artem Barger wrote on 2016-10-26 08:16: > Hi all, > > I'm trying to

Re: Comparing specifying repositories in pom vs. settings.xml?

2016-10-17 Thread Manfred Moser
many new & inexperienced developers > if they try to import the project into their favorite IDE and it fails to > build. > > Regards, > Curtis > > -- > Curtis Rueden > LOCI software architect - http://loci.wisc.edu/software > ImageJ2 lead, Fiji maintainer - http:/

Re: Comparing specifying repositories in pom vs. settings.xml?

2016-10-17 Thread Manfred Moser
in a specific settings.xml as part of the project... or even multiple ones for different build scenarios.. Manfred KARR, DAVID wrote on 2016-10-17 14:42: >> -Original Message- >> From: Manfred Moser [mailto:manf...@simpligility.com] >> Sent: Monday, October 17, 2016 1:

Re: Comparing specifying repositories in pom vs. settings.xml?

2016-10-17 Thread Manfred Moser
http://blog.sonatype.com/2009/02/why-putting-repositories-in-your-poms-is-a-bad-idea/ KARR, DAVID wrote on 2016-10-17 13:03: > One thing I run into when jumping between different projects is different > expectations for what maven repos I need to be using. In the past, I had to > have multiple

Re: Jenkins and Maven

2016-10-13 Thread Manfred Moser
I agree with Stephen .. avoid the Maven job type. In fact I would install Daniel's https://github.com/daniel-beck/hide-maven-plugin\ I have spent many hours trying to fix broken builds with the Maven job type only to switch to Freestyle jobs and they just work. There is a reason why Eclipse

Re: Use cache Squid proxy with maven

2016-10-06 Thread Manfred Moser
I would suggest to use a proper repository manager as a caching proxy instead. There are over 110.000 installations of Sonatype Nexus Repository Manager doing exactly that and its free. Get version 2.14 from https://www.sonatype.com/download-oss-sonatype It will save you a lot of hazzle

Re: [EXTERNAL] Re: help with version range

2016-09-23 Thread Manfred Moser
n range resolution > without a valid use case for why Maven should consider pre-released versions > as > within the "not including 2.0" version range semantics. > > > -Original Message- > From: Manfred Moser [mailto:manf...@simpligility.com] > Sent: Fr

Re: [EXTERNAL] Re: help with version range

2016-09-23 Thread Manfred Moser
What you are misunderstanding is how snapshots are meant to be used. 2.0-SNAPSHOT means that it is a development version working towards the release of 2.0 and as such the version 2.0-SNAPSHOT is smaller than 2.0. If you mislike this you can change how you work with your own projects at least.

Re: Packaging a directory in Maven

2016-09-07 Thread Manfred Moser
Use the Maven Assembly plugin and run the build whereever.. locally or on a CI server... Upload will happen automatically as part of your deploy runs. Magnanao, Hector wrote on 2016-09-07 14:32: > I need to have Maven package a directory in Bitbucket that will eventually be > uploaded to

New Releases - Android Maven Plugin and Android NDK Maven Plugin

2016-07-19 Thread Manfred Moser
Hi all, Just a quick heads up that we cut two new releases of the Android-related Maven plugins. Android NDK Maven Plugin 1.1.2 - see http://www.simpligility.com/2016/07/android-ndk-maven-plugin-1-1-2-released/ Android Maven Plugin 4.4.3 - see

Re: How does maven choose which plugin version to use?

2016-07-04 Thread Manfred Moser
And you can use some open source organization pom from Apache or Maven itself http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.apache%22%20AND%20a%3A%22apache%22 http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.apache.maven%22%20AND%20a%3A%22maven-parent%22 or a more complete one

Re: deployment to local repository

2016-05-25 Thread Manfred Moser
Do not use install-file and package like that. Just run mvn install that will package the jar and install the jar and pom into the local repo. That way the dependency info in the pom will not get lost. manfred Philipp Kraus wrote on 2016-05-25 13:14: > Hello, > > I’m working on my first

Re: Create own Maven repository

2016-05-25 Thread Manfred Moser
I totally agree with that. If you run into any problems with that please reach out to me and I can help in detail as I wrote most of the linked docs and also created a video series with tips and just recently did a fully automated setup with Atlassian Pipelines for example.

Re: Problem With Maven Compiler Plugin

2016-05-12 Thread Manfred Moser
Just to confirm though.. latest versions of M2e need Java 1.8... Anders Hammar wrote on 2016-05-12 09:25: > As Mark pointed out, m2e requires a JDK. Initially you were using a JRE and > it will then not work. Now you changed to a JDK and it works. It has > nothing to do with the Java version. >

Maven Repository Provisioner 1.1.1

2016-04-29 Thread Manfred Moser
Hi all, I just thought I let you know that my Maven Repository Provisioner tool recently got a few updates and is not at version 1.1.1. It allows you to provision a Maven repository from the filesystem into a repo manager or one or number of artifacts (specified by GAV coordinates) including

Re: Publishing to Central

2016-04-28 Thread Manfred Moser
ike the videos are "members only" and you need a community access > code to view them. Is that intended? The blog post is a nice pointer to the > videos, but it's kinda useless without the videos themselves. > > On Wed, Apr 27, 2016 at 2:49 PM Manfred Moser <manf...@simpligilit

Publishing to Central

2016-04-27 Thread Manfred Moser
Hi all, I recently recorded some videos that explain some of the rules and steps around publishing to Central. Now I finally got around to writing a blog post. Check it out here http://www.simpligility.com/2016/04/easy-publishing-to-the-central-repository/ And as usual find the rest of the

Re: "conditional" parent POM?

2016-03-10 Thread Manfred Moser
How so? The flatten plugin just flattens the poms right. If they point to an internal repo manager .. its still wrong.. Manfred Robert Patrick wrote on 2016-03-10 14:43: > Take a look at the flatten plugin...this is a much simpler way to solve that > problem! > > Robert Patrick > Sent from

Re: "conditional" parent POM?

2016-03-10 Thread Manfred Moser
You should not use different rool poms. The whole upstream parents for your open source project should be open source as well. And if you want to deploy to a different repo manager you can make the URLs configurable as a property that you set in the pom and e.g. override in your internal

Re: plugin and executable jar

2016-03-01 Thread Manfred Moser
And Learn about multi module projects .. this is essential Maven knowledge. http://books.sonatype.com/mvnex-book/reference/multimodule.html Manfred - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional

Re: plugin and executable jar

2016-03-01 Thread Manfred Moser
do NOT use profiles.. therin lies madness youssef boujallab wrote on 2016-03-01 14:06: > You can't do it with a standard approach. > You should use two distinct Maven projects or use profiles with two > differents configurations ( one for executable jar and other for your > mojo) > Le 1 mars

Re: plugin and executable jar

2016-03-01 Thread Manfred Moser
Just do this 1 jar project with the functionality 1 maven-plugin project that uses the jar and wraps it in a maven plugin 1 jar project that has the main() method wrapper and command line parser= or whatever for the executable 1 pom that acts as parent and aggregator to tie it all together

Android Maven Plugins released

2016-02-15 Thread Manfred Moser
The Android Maven Plugin team is pleased to announce the releases of Android Maven Plugin 4.4.1 - http://www.simpligility.com/2016/01/android-maven-plugin-4-4-1-released/ Android NDK Maven Plugin 1.1.0 - http://www.simpligility.com/2016/02/android-ndk-maven-plugin-1-1-0-released/ With help of

Re: Copy-dependencies goal error

2015-10-05 Thread Manfred Moser
Michael, Please refrain from insulting the efforts of the people on this list trying to help you. If you are not happy with the help you receive here, you are free to look for it elsewhere. I would like the discussions here to stay civil and on topic. I hope you provide us all here with the same

Android Maven Plugin 4.3.0 released

2015-06-16 Thread Manfred Moser
Billington https://github.com/Shusshu Marek Kedzierski http://kedzie.github.io/ Manfred Moser http://www.simpligility.com Core Committers Benoit Billington https://github.com/Shusshu Manfred Moser http://www.simpligility.com Malachi de AElfweald https://github.com/malachid Johan Lindquist https

Re: Why are extensions project based and not global?

2015-05-28 Thread Manfred Moser
these justify the problems you mention .. which is why I think we should just let the usage of extensions get wider before we make any decisions. Manfred Graham Leggett wrote on 28.05.2015 11:21: On 28 May 2015, at 16:58, Manfred Moser manf...@mosabuam.com wrote: I think having a global config

Re: Why are extensions project based and not global?

2015-05-28 Thread Manfred Moser
configured for a specific project is asking for support problems. On May 28, 2015, at 11:58 AM, Manfred Moser manf...@mosabuam.com wrote: I think having a global config for this would be good. Personally I think having .m2/extensions.xml would be a good way to do it. You could introduce

Re: Why are extensions project based and not global?

2015-05-28 Thread Manfred Moser
I think having a global config for this would be good. Personally I think having .m2/extensions.xml would be a good way to do it. You could introduce e.g. Igor's logging here, add the Takari concurrent local repo access and so on in a declarative fashion and truly customize your Maven

Re: setup a (end user) website for maven project

2015-05-28 Thread Manfred Moser
The Maven site plugin can use any content written in e.g. asciidoc, markdown and so on to create a site and you can use a skin to change the look and feel. Maven itself and most plugins do that. If that is not what you are looking for you could e.g. use the Maven site plugin for the docs and

Re: How to properly use a custom maven archetype

2015-05-14 Thread Manfred Moser
It should be listed but if you know the GAV coordinates for it you can also specify them Like mvn archetype:generate -DarchetypeGroupId=com.example.maven the rest of the parameters are here http://maven.apache.org/archetype/maven-archetype-plugin/generate-mojo.html manfred Maven User

Re: [EXTERNAL] dependency management with ant quick question

2015-05-13 Thread Manfred Moser
Do NOT use the Maven Ant tasks.. they are outdated and based on Maven 2. Instead use the dep resolution library used in Maven itself called Eclipse Aether and its Ant tasks.. http://eclipse.org/aether/ http://wiki.eclipse.org/Aether/Ant_Tasks Zk W wrote on 13.05.2015 20:25: Hi Justin

Re: use of exec in multiple phases

2015-05-13 Thread Manfred Moser
You should be able to just add another execution into the project pom. The plugin mgt will be inherited and merged and voila. manfred Johannes Ernst wrote on 13.05.2015 14:17: I’d like to invoke exec-maven-plugin with different arguments during different phases of the build, and I’m failing.

Re: use of exec in multiple phases

2015-05-13 Thread Manfred Moser
16:15: You'll probably have to give each execution a unique id. On Wed, May 13, 2015, 18:32 Manfred Moser manf...@mosabuam.com wrote: You should be able to just add another execution into the project pom. The plugin mgt will be inherited and merged and voila. manfred Johannes Ernst wrote

Android Maven Plugin 4.2.1 released

2015-05-11 Thread Manfred Moser
: Specifically for this release we would like to thank the following contributors for their awesome work. Committers for this release - Manfred Moser http://www.simpligility.com - Leonid https://github.com/greek1979 - William Ferguson https://github.com/william-ferguson-au - Hoyt Summers Pittman https

Android Maven Plugin 4.2.0 released

2015-04-15 Thread Manfred Moser
://github.com/Shusshu - Manfred Moser http://www.simpligility.com - Philip Schiffer https://github.com/hameno - Matthias Stevens https://github.com/mstevens83 - Marek Kedzierski https://github.com/kedzie - Jaroslav Tulach https://github.com/jtulach - Csaba Kozák https://github.com/WonderCsabo - Arnaud

Re: Wrong info in Maven: The Complete Reference, chapter 3.6.1

2015-04-10 Thread Manfred Moser
Just for reference. Sonatype controls this book and I act as the curator of changes. There is no active work going on but it is all CC licensed and the github repo is available to the public. https://github.com/sonatype/maven-reference-en We do appreciate any pull requests and contributions

Re: Minimum JDK for mojos

2015-03-20 Thread Manfred Moser
Sounds like a good idea for the site.. manfred offbynull-maven wrote on 19.03.2015 22:03: I understand that. But, shouldn't this be explicitly stated somewhere? Some official guide somewhere essentially saying that if you're planning on releasing your mojo publicly... to support Maven2

Re: [ANNOUNCEMENT] End Of Life of Maven 2.2.1 - Plugins / JDK Roadmap

2015-03-20 Thread Manfred Moser
So long, and thanks for all the fish. And a recommendation for all those embarking on an upgrade. Get with the times and take advantage of all the advantages from the latest and greatest and move to Maven 3.3.1. http://blog.soebes.de/blog/2015/03/17/apache-maven-3-dot-3-1-features/

Re: [ANN] Maven 3.3.1 Release

2015-03-18 Thread Manfred Moser
Great news. I love how Maven has picked up the pace and is really moving forward a lot again. Now given that 3.2.5 is the last relase with Java 6 support .. should that not be on the downloads page somewhere? Either replacing 3.1.1 or as an addition. Personally I think that page should ONLY

Re: Do people actually use markdown or should I abandon it and migrate to xdocs?

2015-03-12 Thread Manfred Moser
I find markdown as a format just too restricted and painful to use. We had good success with using asciidoc for the Android Maven Plugin for site generation. It uses the very active asciidoctor project for rendering in the site. http://simpligility.github.io/android-maven-plugin/ The Maven

Re: artifactasc/artifactId missing ?

2015-03-12 Thread Manfred Moser
I can not find it on https://oss.sonatype.org/ or https://repository.sonatype.org/ even when logged in. Manfred Martin Gainty wrote on 12.03.2015 15:07: flex-compiler-mojo identitifies dependency dependency groupIdorg.sonatype.flexmojos/groupId

Re: Maven phase that runs before dependency resolution

2015-03-11 Thread Manfred Moser
You can do that with a LifecycleParticipant.. the Android Maven Plugin has an example that works with the dependencies and deals with resolving transitive dependencies of AAR and APKLIB artifacts. Check it out at

Re: Why would maven download a pom and not a jar?

2015-03-11 Thread Manfred Moser
I recently released a first version of my Maven Repository Provisioner tool. It can download and subsequently upload all dependencies of any artifact. So you should be able to use it or at least code snippets of it to achieve what you need.

Re: TFS or NuGet repository for Maven

2015-03-02 Thread Manfred Moser
Dale, At one of my clients we have a large TFS deployment for TFVC and GIT as well as a lot of the other SDLC support. However TFS does NOT include support for a binary component repository manager like Artifactory or Nexus. And we also ended up using Jenkins fyi. I think you have no real

Re: Do I need to write a plugin for this?

2015-03-02 Thread Manfred Moser
The Android Maven Plugin and the Android NDK Maven Plugin both implement custom packaging types. Albeit they are a bit more complex to look at.. http://simpligility.github.io/android-maven-plugin/ http://simpligility.github.io/android-ndk-maven-plugin/ Greg Trasuk wrote on 01.03.2015 23:47:

Re: write developers contributors into Jar

2015-03-01 Thread Manfred Moser
If you want to just have the information in the jar somewhere, the pom file will already be in the jar by default. This is due to the archiver config addMavenDescriptor set to true. See http://maven.apache.org/shared/maven-archiver/index.html for the location of the pom file and further

Re: takari-plugin-integration-testing requires one takari-jar project ?

2015-02-27 Thread Manfred Moser
Olivier Lamy wrote on 26.02.2015 15:26: As it looks the question is related to an other project which is not hosted within the Apache Maven project neither developed by Apache Maven committers. I believe this mailing list is related to the Apache Maven project. So my goal was only to help

Re: takari-plugin-integration-testing requires one takari-jar project ?

2015-02-27 Thread Manfred Moser
, Curtis On Fri, Feb 27, 2015 at 1:18 PM, Manfred Moser manf...@mosabuam.com wrote: Olivier Lamy wrote on 26.02.2015 15:26: As it looks the question is related to an other project which is not hosted within the Apache Maven project neither developed by Apache Maven committers. I

Re: takari-plugin-integration-testing requires one takari-jar project ?

2015-02-26 Thread Manfred Moser
Cristiano, You can have them all in one project. E.g. the Android Maven Plugin does that. https://github.com/simpligility/android-maven-plugin Olivier, I thought this is a Maven users mailing list and as such open to all questions regarding usage of Maven. I would understand the need to

Android Maven Plugin 4.1.1. released

2015-02-03 Thread Manfred Moser
to thank the contributors to this release for their valuable help and invite you all to help us out as well: Specifically for this release we would like to thank the following contributors for their awesome work. Core Committers - Benoit Billington https://github.com/Shusshu - Manfred Moser http

Re: Kudos to Takari's http://takari.io/book/70-testing.html#plugin-integration-testing

2015-01-16 Thread Manfred Moser
We are glad you enjoy using it. If you have any feedback or suggestions regarding the plugin, documentation and so on please create issues related projects on github. https://github.com/takari/takari-lifecycle https://github.com/takari/takari-plugin-testing-project It would also be great if

  1   2   3   4   >