Re: Unpacking a zip file from the source tree

2014-04-20 Thread org.apache.maven.user
On Sat, 19 Apr 2014 21:39:19 +0200
Baptiste Mathus bmat...@batmat.net wrote:

 Anyway, to create an account go to http://xircles.codehaus.org/ and with
 that account you'll be able to access and create issues in jira.codehaus.org

Thanks!

@Dan Tran: Please see MTRUEZIP-36 and MTRUEZIP-37.

M

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: Unpacking a zip file from the source tree

2014-04-19 Thread org.apache.maven.user
On Fri, 18 Apr 2014 13:49:50 +0200
Baptiste Mathus bmat...@batmat.net wrote:

 May maven-remote-resources-plugin be helping?

Thanks, will keep that in mind. Finally got the TrueZip plugin to work
(it silently fails upon receiving incorrect parameters).

M

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: Unpacking a zip file from the source tree

2014-04-19 Thread Dan Tran
Hi,

Could you file a Jira case against truezip-m-p with a producible pom?

Thanks

-D


On Sat, Apr 19, 2014 at 5:14 AM, org.apache.maven.u...@io7m.com wrote:

 On Fri, 18 Apr 2014 13:49:50 +0200
 Baptiste Mathus bmat...@batmat.net wrote:

  May maven-remote-resources-plugin be helping?

 Thanks, will keep that in mind. Finally got the TrueZip plugin to work
 (it silently fails upon receiving incorrect parameters).

 M

 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org




Re: Unpacking a zip file from the source tree

2014-04-19 Thread org.apache.maven.user
On Sat, 19 Apr 2014 09:36:13 -0700
Dan Tran dant...@gmail.com wrote:

 Hi,
 
 Could you file a Jira case against truezip-m-p with a producible pom?

'Lo.

I can't seem to find the registration link to allow me to post issues on
the Truezip Jira. The login prompt says To request an account, please
contact your JIRA administrators...

M

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: Unpacking a zip file from the source tree

2014-04-19 Thread Baptiste Mathus
There's an ongoing issue at The Codehaus about login/account creation
complexity. IIUC this was done after some heavy spamming attack.
Anyway, to create an account go to http://xircles.codehaus.org/ and with
that account you'll be able to access and create issues in jira.codehaus.org
.

Cheers


2014-04-19 20:22 GMT+02:00 org.apache.maven.u...@io7m.com:


 On Sat, 19 Apr 2014 09:36:13 -0700
 Dan Tran dant...@gmail.com wrote:

  Hi,
 
  Could you file a Jira case against truezip-m-p with a producible pom?

 'Lo.

 I can't seem to find the registration link to allow me to post issues on
 the Truezip Jira. The login prompt says To request an account, please
 contact your JIRA administrators...

 M

 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org




-- 
Baptiste Batmat MATHUS - http://batmat.net
Sauvez un arbre,
Mangez un castor !


Unpacking a zip file from the source tree

2014-04-18 Thread org.apache.maven.user
Hello.

I have a zip file in the src directory of a project. I want to unpack
this zip file and insert the contents into the generated site directory
during the site phase.

What is the correct way to do this?

There's the dependency:unpack goal, but that only seems capable of
working with dependencies (which this zip file isn't). There's the
TrueZip plugin, but quite frankly, it seems defective (it silently
fails to do anything, and the documentation is no help at all).

M

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: Unpacking a zip file from the source tree

2014-04-18 Thread org.apache.maven.user
On Fri, 18 Apr 2014 10:10:35 +
org.apache.maven.u...@io7m.com wrote:
 There's the TrueZip plugin, but quite frankly, it seems defective (it silently
 fails to do anything, and the documentation is no help at all).

Pro tip:

This will work:

  plugin
groupIdorg.codehaus.mojo/groupId
artifactIdtruezip-maven-plugin/artifactId
version1.2/version
inheritedfalse/inherited
executions
  execution
idcopy-out-files/id
goals
  goalcopy/goal
/goals
phasepre-site/phase
configuration
  verbosetrue/verbose
  fileset
directorysrc/main/data/file.zip//directory

outputDirectory${project.build.directory}/site/file/outputDirectory
  /fileset
/configuration
  /execution
/executions
  /plugin

This will silently fail:

  plugin
groupIdorg.codehaus.mojo/groupId
artifactIdtruezip-maven-plugin/artifactId
version1.2/version
inheritedfalse/inherited
executions
  execution
idcopy-out-files/id
goals
  goalcopy/goal
/goals
phasepre-site/phase
configuration
  verbosetrue/verbose
  fileset
directorysrc/main/data/file.zip//directory
  /fileset
  
outputDirectory${project.build.directory}/site/file/outputDirectory
/configuration
  /execution
/executions
  /plugin

M

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: Unpacking a zip file from the source tree

2014-04-18 Thread Baptiste Mathus
May maven-remote-resources-plugin be helping?


2014-04-18 12:10 GMT+02:00 org.apache.maven.u...@io7m.com:


 Hello.

 I have a zip file in the src directory of a project. I want to unpack
 this zip file and insert the contents into the generated site directory
 during the site phase.

 What is the correct way to do this?

 There's the dependency:unpack goal, but that only seems capable of
 working with dependencies (which this zip file isn't). There's the
 TrueZip plugin, but quite frankly, it seems defective (it silently
 fails to do anything, and the documentation is no help at all).

 M

 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org




-- 
Baptiste Batmat MATHUS - http://batmat.net
Sauvez un arbre,
Mangez un castor !