Re: maven-dependency-plugin:3.1.2:unpack not invoked, then does not unpack specified dependencies

2020-07-15 Thread Simone Tripodi
reopening the bash made it work, didn't understand why - thanks anyway all the best, -Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Tue, Jul 14, 2020 at 2:14 PM Simone Tripodi wrote: > > Hi all mates, > I configured maven-dependency-plugin in my pom.x

maven-dependency-plugin:3.1.2:unpack not invoked, then does not unpack specified dependencies

2020-07-14 Thread Simone Tripodi
Hi all mates, I configured maven-dependency-plugin in my pom.xml in order to unpack an artifact, the issue is that the plugin is not hit in any way; follows below my pom snippet: org.apache.maven.plugins maven-dependency-plugin 3.1.2

No implementation for org.apache.maven.model.resolution.ModelResolver was bound

2019-01-23 Thread Simone Tripodi
Hi all mates, I have been developing an OSS MOJO where, when executed, Maven is not able to inject required components due to the the error below: Execution apis-jar of goal org.apache.sling:slingfeature-maven-plugin:0.8.1-SNAPSHOT:apis-jar failed: Unable to load the mojo 'apis-jar' (or one

How to correctly interpolate collection variables via DefaultMavenReaderFilter API

2018-10-13 Thread Simone Tripodi
Hi all mates, I am writing a plugin which needs to filter & then process resources, I am using the DefaultMavenReaderFilter API below: DefaultMavenReaderFilter#filter( Reader, boolean, MavenProject, List, boolean, MavenSession ) in my resource I declared few variables that have to be interpolat

Re: [EXTERNAL] SCM APIs cause "ref HEAD is not a symbolic ref"

2016-06-15 Thread Simone Tripodi
ing CI with a shallow clone? I've seen a few > systems > > > -Original Message- > > From: simone.trip...@gmail.com [mailto:simone.trip...@gmail.com] On > > Behalf Of Simone Tripodi > > Sent: Tuesday, June 14, 2016 6:14 PM > > To: Maven Users List >

Re: SCM APIs cause "ref HEAD is not a symbolic ref"

2016-06-15 Thread Simone Tripodi
with 1.9.3? > More generally, I would recommend you to use the jgit provider which will > be probably faster (not forking any cli etc..) > > Cheers > Olivier > > > > > > On 15 June 2016 at 09:13, Simone Tripodi wrote: > > > Hi all mates, > > I've

Re: [EXTERNAL] SCM APIs cause "ref HEAD is not a symbolic ref"

2016-06-15 Thread Simone Tripodi
schreef "Justin Georgeson" : > > > > Is the failure happening during CI with a shallow clone? I've seen a few > systems > > > > > -Original Message- > > > From: simone.trip...@gmail.com [mailto:simone.trip...@gmail.com] On > > &

SCM APIs cause "ref HEAD is not a symbolic ref"

2016-06-14 Thread Simone Tripodi
Hi all mates, I've been happily using the Maven SCM APIs to perform few operations "under the hood" for my users, everything was working fine until stumbled in the SCMException "Detecting the current branch failed: fatal: ref HEAD is not a symbolic ref" The scenario is: I am using the libraries bel

How to include images in a site via a report

2014-05-13 Thread Simone Tripodi
Hi all mates, I am developing a new set of reports for Apache Felix and I would like to include nice icons in order to improve the l'n'f of produced data, one thing I didn't catch is how to copy images included in my plugin artifact to the target site. Any suggestion will be paid back in beers :)

maven-release-plugin updates modules with wrong versioning

2014-02-03 Thread Simone Tripodi
Hi all mates, in Apache Oltu we have a commons modules set[1] which I am trying to cut a release, but I am experiencing for the first time a strange issue: when installing all modules from /trunk, versions respect what it is specified in project.version field in the POM, but when releasing them, a

clarifications on ArtifactRepository#find(Artifact) and ArtifactRepository#findVersions(Artifact)

2014-01-07 Thread Simone Tripodi
Hi all mates, I am having some troubles about how the methods in subject should behave, due to the not exhaustive javadoc: given the artifact com.acme:mycomponent:1.0 when invoking ArtifactRepository#find(Artifact) it always return an artifact, even if it doesn';t exist in the target repo; given

How to obtain a ModelResolver in a MOJO

2013-11-05 Thread Simone Tripodi
Hi all mates, I am writing a plugin which needs to calcuate the effective POM of a given GAV coordinate - IIUC I need an instance of org.apache.maven.model.resolution.ModelResolver, but didn't find a way to obatin a concrete service reference... Do you have any hint? Any suggestin will be much m

Re: Could not initialize class org.sonatype.guice.bean.reflect.Logs

2013-05-30 Thread Simone Tripodi
Hi Stuart, thanks again for your kind feedbacks, much more than appreciated! > > Actually by guice-bean/plexus-* I meant guice-bean-* and guice-plexus-* (ie. > the modules that eventually feed into sisu-inject-bean and sisu-inject-plexus > respectively) > > I didn't see any guice-bean-* depende

Re: Could not initialize class org.sonatype.guice.bean.reflect.Logs

2013-05-29 Thread Simone Tripodi
podi/ http://twitter.com/simonetripodi On Wed, May 29, 2013 at 12:05 PM, Stuart McCulloch wrote: > On 29 May 2013, at 10:49, Simone Tripodi wrote: > >> Hi all mates, >> >> I am updating a set of old Maven plugins using Mvn3+Aether APIs, but >> unfortunately I am no l

Could not initialize class org.sonatype.guice.bean.reflect.Logs

2013-05-29 Thread Simone Tripodi
Hi all mates, I am updating a set of old Maven plugins using Mvn3+Aether APIs, but unfortunately I am no longer able to run Mvn tests due to org.sonatype.guice.bean.reflect.Logs class cannot be found in the classpath, follows below the (almost) complete stacktrace (what is missing is just the test

Re: cannot resolve POM with classifier?

2013-05-03 Thread Simone Tripodi
he dependency:copy > > plugins keeping the public pom as part of the reactor (for the case where > > you need to use the public pom as a dependency within your reactor > > > > > > On 3 May 2013 11:25, Stephen Connolly >wrote: > > > >> yep > >&g

Re: cannot resolve POM with classifier?

2013-05-03 Thread Simone Tripodi
rent GA (same V) > > On Thursday, 2 May 2013, Simone Tripodi wrote: > > > Hi all, > > > > I am in the scenario where a POM is generated and attached in the main > > project, then will be deployed on the repo; that POM contains all > required > > dependencies my

cannot resolve POM with classifier?

2013-05-02 Thread Simone Tripodi
Hi all, I am in the scenario where a POM is generated and attached in the main project, then will be deployed on the repo; that POM contains all required dependencies my users need when developing custom applications. The issue comes when I would like to resolve the generated prom in an external

generating a POM and attaching it to the project

2013-04-30 Thread Simone Tripodi
Hi all mates, I am in a situation where I need to generate a POM and, in order to have easily deployed/updated, I thought that having it attached in the project would have simplified the build process. The "issue" comes when external clients need to inherit from the generated pom, because classif

Re: maven-scm-publish-plugin freezed in Apache Oltu

2013-01-24 Thread Simone Tripodi
do with the huge number of files to be committed. > One trick is to configure > http://maven.apache.org/plugins/maven-javadoc-plugin/javadoc-mojo.html#notimestamp > This way you can reduce the number of commits. > > Robert > > > Op Thu, 24 Jan 2013 08:51:16 +0100 schreef Simon

maven-scm-publish-plugin freezed in Apache Oltu

2013-01-23 Thread Simone Tripodi
Hi all guys, at Apache Oltu[1] (formerly Amber) we are adopting the maven-scm-publish-plugin to publish the site; everything looks be configured in the right way, but the plugin is stuck: +

[doap-plugin] property value not interpolated?

2013-01-06 Thread Simone Tripodi
Hi all guys, I am tryin' to plug the doap-plugin in Apache Onami and I noticed a strange behaviour of the `shotdesc` property. If not specified, the plugin terminates with an error: [ERROR] A parameter is required by ASF. If I specify as ${project.description} it terminates with the same

Re: JNI jars dependencies

2012-09-17 Thread Simone Tripodi
; profiles) as a property and this property in the child POMs ? > > Jeff > Le 14 sept. 2012 16:21, "Simone Tripodi" a > écrit : > >> Hi David, >> >> thanks a lot - my issue anyway is NOT compiling the code, rather than >> managing the dependencies, the

Re: JNI jars dependencies

2012-09-14 Thread Simone Tripodi
offer wrote: > There is also the native-maven-plugin. I'm not sure which is best/most > current as it's been years since I have used either one, but they both set > out to help manage builds with native code. > > -Dave > > On Fri, Sep 14, 2012 at 7:31 AM, Simone Tripodi

Re: JNI jars dependencies

2012-09-14 Thread Simone Tripodi
problem with the project because there are tens of orks on github. If you > have any questions about it please ask. I have contact to one of the ative > authors and we try to merge all the forks. > > On Fri, Sep 14, 2012 at 3:13 PM, Simone Tripodi > wrote: > >> Hi all guys, >>

JNI jars dependencies

2012-09-14 Thread Simone Tripodi
Hi all guys, I have the task of managing a 3rd party forest of dependencies which contain JNI code, so let's immagine that the provided library directory tree is as shown below: linux-i386 ├── a.jar ├── b.jar (depends from a.jar) └── c.jar (depends from a.jar and b.jar) linux-x86_64 ├── a.jar ├─

[ANN] Apache Maven Fluido Skin 1.2.2 is out

2012-07-10 Thread Simone Tripodi
Hi all, the Apache Maven team is happy to announce the release of Apache Maven Fluido Skin 1.2.2 The Apache Maven Fluido Skin is an Apache Maven site skin built on top of Twitter's bootstrap and other nice widgets. Follow below the list of resolved issues: Bug [MSKINS-35] - Website typo in fo

Powered-by Fluido-Skin?

2012-07-10 Thread Simone Tripodi
Hi all guys, how many of you are using the Fluido-Skin in your own projects? I am setting up a "Powered by" page and I would be glad to add your projects in the list!!! Many thanks in advance, all the best!!! -Simo http://people.apache.org/~simonetripodi/ http://simonetripodi.livejournal.com/ ht

Does install-plugin renames artifacts?

2012-07-05 Thread Simone Tripodi
Hi all guys, I just stumbled in a really strange error, looks like the install-plugin uses to rename my aux artifacts: [INFO] Installing /private/tmp/any23-0.7.0-incubating/sources-dist/target/apache-any23-0.7.0-incubating-src.tar.gz to /Users/simonetripodi/.m2/repository/org/apache/any23/any23-

Re: Deploying maven artifacts to a repo and assemblies to another repo

2012-07-05 Thread Simone Tripodi
he.org. > Am 05.07.2012 09:03 schrieb "Simone Tripodi" : > >> Hi all guys, >> >> in some projects here at ASF I need to separate pure maven artifacts >> deployment to attached assemblies, I mean, when performing a release, >> while uploading jars on

Deploying maven artifacts to a repo and assemblies to another repo

2012-07-05 Thread Simone Tripodi
Hi all guys, in some projects here at ASF I need to separate pure maven artifacts deployment to attached assemblies, I mean, when performing a release, while uploading jars on Nexus is fine, I need assemblies (zip, tgz) be uploaded (with gpg signature and checksums) to people.apache.org... I trie

[ANNOUNCE] Maven Fluido Skin 1.2.1 is out!

2012-04-03 Thread Simone Tripodi
Hi all, the Apache Maven team is happy to announce the release of Apache Maven Fluido Skin 1.2.1 The Apache Maven Fluido Skin is an Apache Maven site skin built on top of Twitter's bootstrap and other nice widgets. Follow below the list of resolved issues: Bugs [MSKINS-21] - Invalid text highli

[ANNOUNCE] Apache Maven Fluido Skin 1.2 is out

2012-03-23 Thread Simone Tripodi
Hi all, the Apache Maven team is happy to announce the release of Apache Maven Fluido Skin 1.2 The Apache Maven Fluido Skin is an Apache Maven site skin built on top of Twitter's bootstrap and other nice widgets. The main news of the current release is the upgrade to Twitter Bootstrap 2 and the in

Re: generating checksums for assemblies

2012-02-27 Thread Simone Tripodi
sign those > additional files. The assembly plugin is blissfully ignorant of the > entire process. > > On Sat, Feb 25, 2012 at 4:24 PM, Simone Tripodi > wrote: >> Hi all guys, >> >> I configured the assembly-plugin to prevent generated artifacts are >> attached, s

generating checksums for assemblies

2012-02-25 Thread Simone Tripodi
Hi all guys, I configured the assembly-plugin to prevent generated artifacts are attached, so they won't be deployed on Nexus, but I still need the checksums are generated for that artifacts. Is there a way to do it or I have to use the external checksum-plugin? TIA, -Simo http://people.apache.or

multi-module assembly-plugin best practice

2012-02-25 Thread Simone Tripodi
Hi all guys, I have a multi-module project which is distributed in form of separated artifacts on a Maven Repo - now I need to distribute sources and all binaries in two separated tarballs, I just wonder if there is any assembly best practice to achieve it - would assemblies put in the parent pom

[ANNOUNCEMENT] Maven Skins v6 have been released!

2012-01-22 Thread Simone Tripodi
Hi all, The Apache Maven team is pleased to announce the release of Apache Skins v6, which include * Maven Application Skin 1.0 (http://maven.apache.org/skins/maven-application-skin/)  * Maven Default Skin 1.1 (http://maven.apache.org/skins/maven-default-skin/)  * Maven Classic Skin 1.1 (http://m

Re: wagon-ftp & site-plugin issue

2011-12-21 Thread Simone Tripodi
Thanks a lot for the hint Robert best, -Simo http://people.apache.org/~simonetripodi/ http://simonetripodi.livejournal.com/ http://twitter.com/simonetripodi http://www.99soft.org/ On Tue, Dec 20, 2011 at 6:57 PM, Robert Scholte wrote: > > > I'm pretty sure you hit NET-409[1] and WAGON-357

wagon-ftp & site-plugin issue

2011-12-20 Thread Simone Tripodi
Hi all guys, I'm deploying my sites via ftp using the wagon-ftp, the problem is that last bytes of transmitted files are always missing... I mean, when rendering the transmitted html pages, last tags are completely missing, images are truncated... if I deploy the site manually, using filezilla, ev

[ANN] Maven Fluido Skin 1.0 Released

2011-11-27 Thread Simone Tripodi
The Maven team is pleased to announce the first release of the Maven Fluido Skin! The Apache Maven Fluido Skin is an Apache Maven site skin built on top of Twitter's bootstrap. http://maven.apache.org/skins/maven-fluido-skin/ You should specify the version in your site.xml configuration: ...

Re: Ruby archetype & compiler plugin

2011-11-08 Thread Simone Tripodi
gemset. 3. Use bundler to manage your dependencies. 4. Use rake for builds. >> 5. Find the right Ruby community: >> http://www.ruby-lang.org/en/community/mailing-lists/ >> >> Yuen-Chi Lian | www.yclian.com >> "I do not seek; I find." - Pablo Picasso >> >&

Ruby archetype & compiler plugin

2011-11-08 Thread Simone Tripodi
Hi all guys, I just began developing a small application in Ruby, I would like to manage the project with my preferred build tool and found a lot of plugins - even not officials. Do you have some recommendation for a Ruby newbie? Many thanks in advance, all the best! Simo http://people.apache.org/

[jar-plugin] properties not properly expanded in manifestEntries

2011-08-22 Thread Simone Tripodi
Hi all guys, in my pom I added the buildnumber-plugin and defined a set of properties which contain: ... -MM-dd HH:mm:ssZ r${buildNumber}; ${maven.build.timestamp} ... Problem is that when filtering any textual resource, ${implementation.build} is correctly expanded, i.e

Re: checkstyle and JavadocPackage module

2011-08-11 Thread Simone Tripodi
able soon) >> >> -- >> Olivier Lamy >> Talend : http://talend.com >> http://twitter.com/olamy | http://linkedin.com/in/olamy >> >> [1] http://checkstyle.sourceforge.net/releasenotes.html >> >> 2011/8/11 Simone Tripodi : >>> Hi all, >>

Re: checkstyle and JavadocPackage module

2011-08-11 Thread Simone Tripodi
http://linkedin.com/in/olamy > > [1] http://checkstyle.sourceforge.net/releasenotes.html > > 2011/8/11 Simone Tripodi : >> Hi all, >> In apache commons functor[1] (sandbox) I'm trying to enable the >> JavadocPackage checkstyle module, unfortunately I'm getting the >> follo

checkstyle and JavadocPackage module

2011-08-11 Thread Simone Tripodi
Hi all, In apache commons functor[1] (sandbox) I'm trying to enable the JavadocPackage checkstyle module, unfortunately I'm getting the following error: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-site-plugin:3.0-beta-3:site (default-site) on project commons-functor: Error during

Re: inheriting parent pom version X, but when downloading the site descriptor, maven looks for X+1-SNAPSHOT

2011-04-17 Thread Simone Tripodi
Yes I did, unfortunately the only SNAPSHOT I can see[1] is the project version :/ ANy hint? Thanks in advance! Simo [1] http://pastie.org/1804055 http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Sun, Apr 17, 2011 at 1:08 PM, Antonio Petrelli wrote: > 2011/4/15 Sim

inheriting parent pom version X, but when downloading the site descriptor, maven looks for X+1-SNAPSHOT

2011-04-15 Thread Simone Tripodi
Hi all guys, I have a parent pom[1] I use to play with small components that, after upgrading few plugins[2], introduced a strange behavior: the parent brings the site descriptor that is correctly included before the plugins upgrade, but after the upgrade (the parent has version 3), maven looks for

Add properties to pom.properties

2011-04-11 Thread Simone Tripodi
Hi all guys, I would like to know if it is possible to include properties in the generated META-INF/maven/${project.groupId}/${project.artifactId}/pom.properties file. Many thanks in advance, Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/

Re: artifacts produced by assembly not signed

2011-04-11 Thread Simone Tripodi
I just need to put them in a different dir :) http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Mon, Apr 11, 2011 at 11:59 AM, Antonio Petrelli wrote: > 2011/4/11 Simone Tripodi > >> Hi all guys, >> I configured the assembly plugin to produce zip/tar.gz art

artifacts produced by assembly not signed

2011-04-11 Thread Simone Tripodi
Hi all guys, I configured the assembly plugin to produce zip/tar.gz artifacts in a non default assembly . Assembly plugin configuration looks like: ${project.build.directory}/XXX/bin/${project.version} true ${basedir}/src/

Skin customization error

2011-03-13 Thread Simone Tripodi
Hi all guys, I'm developing a new site skin, imported, without altering, the default-site.vm[1], then installed the artifact locally; when using it to render the site, the error belowa occurs: [ERROR] org.apache.velocity.runtime.parser.ParseException: Encountered "org" at line 268, column 11. Was

'Illegal character(s) in message header' when uploading

2011-03-11 Thread Simone Tripodi
Hi all guys, I'm experiencing an issue when uploading artifacts on repo, details follow below. Does anyone has any hint/idea? Many thanks in advance! Simo ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.5:deploy (default-deploy) on project mybatis-parent: Failed to dep

Re: DDL Dependency

2011-02-22 Thread Simone Tripodi
Hi Craig, I don't know if ti could help, but at MyBatis we created a tool called MyBatis Migration[1] that is already integrated with Maven, wich aims manage Database versioning. HTH, Simo [1] http://code.google.com/p/mybatis/wiki/Migration http://people.apache.org/~simonetripodi/ http://www.99so

Re: site-deploy always appends ${project.artifactId} in the deploy URL

2011-02-18 Thread Simone Tripodi
he site URL > from a parent POM, they will automatically append their to form > their effective deployment location'. If you want to overide that, you need > to declare a site.url in the sub-project. > > HTH, > -Lukas > > > [1] http://maven.apache.org/plugins/maven-

site-deploy always appends ${project.artifactId} in the deploy URL

2011-02-18 Thread Simone Tripodi
Hi all guys, I'm facing a wired issue, I don't understand if it concerns the maven-site-plugin or the deploy plugin, btw every time I try to deploy the site, the ${project.artifactId} is always appended to the distributionManagement.site.url i.e. if the url is ftp://ftp.acme.org/projects/${pr

Re: A Maven archetype that helps packaging Solr as a standalone application embedded in Apache Tomcat

2011-01-27 Thread Simone Tripodi
t; Le 27 janv. 2011 à 12:42, Simone Tripodi a écrit : >> thanks a lot for your feedbacks, much more than appreciated! :) > > One more anomaly I find: the license is in the output of the pom.xml. > I think this should not be the case. > *my* license should be there, not the

Re: A Maven archetype that helps packaging Solr as a standalone application embedded in Apache Tomcat

2011-01-27 Thread Simone Tripodi
> - I have found how to configure my schema and config, could add the velocity > contrib to it, but I haven't yet found out how to add further resources. Both > src/main/webapp and src/main/resources are ignored. > > Help for the latter would be nice. > > paul > > >

A Maven archetype that helps packaging Solr as a standalone application embedded in Apache Tomcat

2011-01-26 Thread Simone Tripodi
Hi all guys, this short mail just to make the Maven/Solr communities aware that we published an Apache Maven archetype[1] (that we lazily called 'solr-packager' :P) that helps Apache Solr developers creating complete standalone Solr-based applications, embedded in Apache Tomcat, with few operations

Re: integration tests fail, but not the main build

2011-01-25 Thread Simone Tripodi
; results until the verify phase > > -Stephen > > On 25 January 2011 10:42, Simone Tripodi wrote: >> Hi all, >> I'm sure I missed something, but when running integration tests using >> maven-invoker-plugin, even if integration tests fail, the build >> doesn't

integration tests fail, but not the main build

2011-01-25 Thread Simone Tripodi
Hi all, I'm sure I missed something, but when running integration tests using maven-invoker-plugin, even if integration tests fail, the build doesn't :( This[1] is the plugin configuration and the related output[2] I can get after ran `mvn clean integration-test` Any hint would be much more than ap

Re: Declaring a dependency for tools.jar

2011-01-25 Thread Simone Tripodi
+1 to Benson, is what we did on Google Doclava[1] to make the build working on Google team's Ubuntu and my Mac. just my 2cents, Simo [1] http://code.google.com/p/doclava/source/browse/trunk/pom.xml http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Mon, Jan 24, 2011 at 11:59 PM

Re: Maven gpg plugin stuck while signing

2011-01-23 Thread Simone Tripodi
{code} [1] http://code.google.com/p/doclava/source/browse/tags/doclava-1.0.2/pom.xml http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Sun, Jan 23, 2011 at 7:37 PM, oliver wrote: > > Am 23.01.2011 um 18:51 schrieb Simone Tripodi: > >> Ciao Tommy ;) >> I alrea

Re: Maven gpg plugin stuck while signing

2011-01-23 Thread Simone Tripodi
Ciao Tommy ;) I already met this problem, It's not a of key-size related issue. Try setting the mavenExecutorId=forked-path so when releasing maven will be forked and the gpg-plugin will prompt you insert the gpg passphrase. Otherwise you can use the -Dgpg.passphrase=XXX property but its use is dis

Re: How to make a single dependency packaged into target jar?

2010-12-29 Thread Simone Tripodi
Hi Gao, just to let you know, there are also good alternatives, you've just to choose which one fits better with your needs: * The Apache's Shade plugin[1] * The Sonatypes's JarJar plugin[2] My preferred is the Sonatype's one because it allows define classes rewrite rules (you can repackage dep

Re: mvn 3.0.1 & mavenone-plugin 1.2 cause Guice provision errors

2010-12-22 Thread Simone Tripodi
Hi Benjamin, thanks for your reply, does it mean that it won't be supported at all or there is a plan for the future to fix it? Many thanks in advance! Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Tue, Dec 21, 2010 at 1:14 PM, Benjamin Bentmann wrote: >

mvn 3.0.1 & mavenone-plugin 1.2 cause Guice provision errors

2010-12-21 Thread Simone Tripodi
Hi all, just to let you know when using the mavenone-plugin some Guice provision error occurs, follow the logs: [exec] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-one-plugin:1.2:install-maven-one-repository (default-cli) on project scarlet: Execution default-cli of goal org.

Re: Creating a custom lifecycle

2010-12-01 Thread Simone Tripodi
take a look at the maven deploy plugin configuration[1] and set true hope this helps Simo [1] http://maven.apache.org/plugins/maven-deploy-plugin/deploy-mojo.html http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Wed, Dec 1, 2010 at 12:18 PM, Gajo Csaba wrote: > I want to del

Re: Assembly Plugin 2.2 File Filtering

2010-11-30 Thread Simone Tripodi
Sorry, just realized you suggested the same workaround in the issue! :D Thanks, Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Tue, Nov 30, 2010 at 11:10 AM, Simone Tripodi wrote: > Hi Gérald, > just a quick update: I arranged stuff working moving the >

Re: Assembly Plugin 2.2 File Filtering

2010-11-30 Thread Simone Tripodi
9:02 AM, Gérald Quintana wrote: > It already exists, please vote for > http://jira.codehaus.org/browse/MASSEMBLY-528 > > Gérald > > 2010/11/26 Simone Tripodi : >> I got *exactly* the same issue, I suppose we should fill a new Issue on >> Jira!!! >> Simo >>

Re: Assembly Plugin 2.2 File Filtering

2010-11-26 Thread Simone Tripodi
I got *exactly* the same issue, I suppose we should fill a new Issue on Jira!!! Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Fri, Nov 26, 2010 at 3:18 PM, Gérald Quintana wrote: > The assembly plugin doesn't take the filter configuration from the > project, I has to

Re: maven-resources-plugin & file-encoding

2010-11-01 Thread Simone Tripodi
Hi Roland, you've 2 options: * specify the 'encoding'[1] parameter of the maven-resources-plugin to 'UTF-8' * define in the 'properties' section the property 'project.build.sourceEncoding' to 'UTF-8'. I usually prefer the second option, so the char encoding is globally set also for the compiler a

Re: Filtering in assembly plugin (2.2-beta-2 and 2.2)

2010-10-22 Thread Simone Tripodi
tomorrow if no one answer. > Please vote for this issue :) > > Aleksey. > > 2010/10/22 Simone Tripodi > >> Hi all, >> I'm facing same problem, but what happens is that there are properties >> filtered correctly and some others not O_o >> Any hint? >

Re: Filtering in assembly plugin (2.2-beta-2 and 2.2)

2010-10-21 Thread Simone Tripodi
Hi all, I'm facing same problem, but what happens is that there are properties filtered correctly and some others not O_o Any hint? Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Thu, Oct 21, 2010 at 7:08 PM, Jon Paynter wrote: > On Thu, Oct 21, 2010 at 4:08 AM, Alekse

Re: maven-deploy-plugin hangs when deploying artifacts

2010-09-11 Thread Simone Tripodi
Resolved, just to let you know: invoking the release-plugin with -DmavenExecutorId=forked-path the prompt won't be lost :) have a nice day, Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Sat, Sep 11, 2010 at 9:44 AM, Simone Tripodi wrote: > Hi all guys,

maven-deploy-plugin hangs when deploying artifacts

2010-09-11 Thread Simone Tripodi
Hi all guys, in the middle of the release process in apache-commons I met a strage behavior in the maven-deploy-plugin: the scp in people.apache.org requires interactive password (even if set in settings.xml) so when trying to upload, it prompts for the password. It nicely works when deploying stuf

Re: maven-gpg-plugin blocked during the execution

2010-09-10 Thread Simone Tripodi
which need lots of signings, so it doesn't bother you for the pass phrase all > the time. > > To activate this capability in your maven settings file, you add > > true > > -Marshall Schor > > > > On 9/10/2010 1:29 PM, Simone Tripodi wrote: >> Hi Kalle,

Re: maven-gpg-plugin blocked during the execution

2010-09-10 Thread Simone Tripodi
See http://jira.codehaus.org/browse/MGPG-9 > > Kalle > > > On Fri, Sep 10, 2010 at 9:30 AM, Simone Tripodi > wrote: >> Hi all guys, >> using the maven-release-plugin and signing artifacts with GnuPG, >> during the verifying phase, when the gpg-plugin is invoked, the build >

maven-gpg-plugin blocked during the execution

2010-09-10 Thread Simone Tripodi
Hi all guys, using the maven-release-plugin and signing artifacts with GnuPG, during the verifying phase, when the gpg-plugin is invoked, the build process is completely stalled. If I don't pass the gpg.passphare I'd expect it would be asked in the prompt, but it doesn't happen :( Follow below my a

[ANNOUNCEMENT] Maven Google Code upload plugin 1.0 released

2010-08-31 Thread Simone Tripodi
Hi all guys, for those interested in integrating the artifact deploy on google-code hosting space, Nathan Maves and I just released a plugin that matches with this need, the Maven Google Upload plugin. It is hosted on google-code[1], deployed on Maven Central repo and released under ASL 2.0. Hope t

Logging the progress

2010-08-29 Thread Simone Tripodi
Hi all guys, a friend of mine and I are developing a maven plugin that needs to upload files on a server; what I'd like to do is logging the upload percentage so users can monitor on the shell the upload status. The question is: how to use the maven logger in the way that for any new calculated pro

Re: Decrypting server password

2010-08-29 Thread Simone Tripodi
29 +0200, > Simone Tripodi a écrit : > >> Hi all guys, >> a friend of mine and I are developing a maven plugin that needs to >> acces to a server credentials specified in the settings.xml; no >> problem since the org.apache.maven.settings.Server class exposes >>

Re: Decrypting server password

2010-08-28 Thread Simone Tripodi
at 6:10 PM, Dan Tran wrote: > see the latest trunk source starting from the pom.xml > > -Dan > > On Sat, Aug 28, 2010 at 8:04 AM, Simone Tripodi > wrote: >> Hi Dan, >> it doesn't seem the sql-plugin[1] manages encrypted passwords... am I >> checking

Re: Decrypting server password

2010-08-28 Thread Simone Tripodi
//www.99soft.org/ On Sat, Aug 28, 2010 at 4:53 PM, Simone Tripodi wrote: > Hi Dan, > thanks for the hint, going to read the code! > Simo > > http://people.apache.org/~simonetripodi/ > http://www.99soft.org/ > > > > On Sat, Aug 28, 2010 at 4:34 PM, Dan Tra

Re: Decrypting server password

2010-08-28 Thread Simone Tripodi
Hi Dan, thanks for the hint, going to read the code! Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Sat, Aug 28, 2010 at 4:34 PM, Dan Tran wrote: > see sql-maven-plugin's implementation > > -D > > On Sat, Aug 28, 2010 at 7:22 AM, Simone Tripodi

Decrypting server password

2010-08-28 Thread Simone Tripodi
Hi all guys, a friend of mine and I are developing a maven plugin that needs to acces to a server credentials specified in the settings.xml; no problem since the org.apache.maven.settings.Server class exposes methods to retrieve username/password, the problem comes when passwords are encrypted usin

Re: Excluding assembly produced artiact from deploy

2010-08-20 Thread Simone Tripodi
thanks!!! http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Fri, Aug 20, 2010 at 8:54 PM, Anders Hammar wrote: > http://maven.apache.org/plugins/maven-assembly-plugin/single-mojo.html#attach > > /Anders > > On Fri, Aug 20, 2010 at 18:36, Simone Tripodi wrote: &

Excluding assembly produced artiact from deploy

2010-08-20 Thread Simone Tripodi
Hi all guys, using the assembly plugin during the 'package' phase, I noticed that during the 'deploy' phase all artifacts produced during the 'package' phase are uploaded. Is there a way to exclude artifacts produced by the assembly plugin? Thanks in advance! Simo http://people.apache.org/~simonet

Re: [site] Missing 'class' attribute on source divs

2010-06-27 Thread Simone Tripodi
Thanks a lot Dennis, it nicely worked :) Cheers, Simo http://people.apache.org/~simonetripodi/ http://www.99soft.org/ On Sun, Jun 27, 2010 at 7:54 PM, Dennis Lundberg wrote: > On 2010-06-27 18:43, Simone Tripodi wrote: >> Hi all guys, >> I've been successfully using the AP

[site] Missing 'class' attribute on source divs

2010-06-27 Thread Simone Tripodi
Hi all guys, I've been successfully using the APT format for ages to generate the maven site and recently (maybe using the latest site-plugin version) I noticed that for code parts, like ... com.acme acme-core XX.XX

Re: Assemble a jar with dependent jars next to it

2010-02-19 Thread Simone Tripodi
Hi all, even if the assembly in the jar-with-dependencies works fine, I'd suggest also the maven-shade-plugin[1], easy to configure and fast. All the best, Simo [1] http://maven.apache.org/plugins/maven-shade-plugin/ http://people.apache.org/~simonetripodi/ On Fri, Feb 19, 2010 at 5:28 PM, Ste

Re: Shade or assembly plugin use cases [was:Re: [shade plugin] included 'provided' dependencies]

2010-02-06 Thread Simone Tripodi
when just wanting to package an >   uber-jar, the recommended/maven way is using maven-shade-plugin. > > > Thanks in advance. > Cheers. > > 2010/2/6 Ron Wheeler > >> Simone Tripodi wrote: >> >>> Hi all guys, >>> I've been developing a mul

Re: [shade plugin] included 'provided' dependencies

2010-02-06 Thread Simone Tripodi
Hi Ron, thanks for your help, I honestly forgot to have a look at the assembly plugin, very appreciated!!! Have a nice weekend, Simo http://people.apache.org/~simonetripodi/ On Sat, Feb 6, 2010 at 3:54 PM, Ron Wheeler wrote: > Simone Tripodi wrote: >> >> Hi all guys, >> I

[shade plugin] included 'provided' dependencies

2010-02-05 Thread Simone Tripodi
Hi all guys, I've been developing a multi-module project where one module is the 'commons' stuff and the other modules are dependent from the first one; when producing artifacts, I want to include the 'commons' dependency in the final jar, so I started using the shade plugin, and declared the 'comm

Re: xsltc plugin

2008-10-15 Thread Simone Tripodi
gt;>> Claus Sluterweg 125 >>>> 2012 WS Haarlem >>>> www.iprofs.nl >>>> >>>> >>>> >>>> On Wed, Oct 15, 2008 at 9:34 AM, Dan Tran <[EMAIL PROTECTED]> wrote: >>>>> http://mojo.codehaus.org/xml-maven-plug

Re: xsltc plugin

2008-10-15 Thread Simone Tripodi
gt;> Iprofs BV. >>> Claus Sluterweg 125 >>> 2012 WS Haarlem >>> www.iprofs.nl >>> >>> >>> >>> On Wed, Oct 15, 2008 at 9:34 AM, Dan Tran <[EMAIL PROTECTED]> wrote: >>>> http://mojo.codehaus.org/xml-maven-plugin/ >&

xsltc plugin

2008-10-15 Thread Simone Tripodi
Hi everybody, In my project I need to use the XSLTC and I want to integrate it in my Maven build, but I haven't found any official documentation's page. Is there any release of it? Thanks in advance, Simone - To unsubscribe, e-mai

Re: Iterating profiles

2008-10-06 Thread Simone Tripodi
yes I already thought about it, but I was curious if maven provides a feature for this issue. thanks 2008/10/6 陈思淼 <[EMAIL PROTECTED]>: > write a shell script to do this kind of thing. > > 2008/10/6 Simone Tripodi <[EMAIL PROTECTED]> > >> Hi everybody, >> In th

Iterating profiles

2008-10-06 Thread Simone Tripodi
Hi everybody, In the company I'm in a situation where I need to iterate over all profiles and generate the relative artifact: to be more detailed, my application has many configuration files, structured as follow: src | \- main | \- config | \- loc

Re: Using POM properties in XDoc

2008-09-22 Thread Simone Tripodi
in the site-plugin starting with version 2.0-beta-6. See the "Filtering" section at http://maven.apache.org/plugins/maven-site-plugin/examples/creating-content.html I haven't tried it for xdoc files myself. Simone Tripodi wrote: Hi everybody, using the site plugin, I would like t

  1   2   >