You are viewing a plain text version of this content. The canonical link for it is here.
Posted to nmaven-issues@incubator.apache.org by "Carlos Sanchez (JIRA)" <ji...@codehaus.org> on 2008/09/02 17:16:48 UTC

[jira] Commented: (NMAVEN-200) Create a ASP .NET packaging

    [ http://jira.codehaus.org/browse/NMAVEN-200?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=146722#action_146722 ] 

Carlos Sanchez commented on NMAVEN-200:
---------------------------------------

As a workaround the zip file could be created by the assembly plugin with something like this

{code}
<assembly xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.1.0-SNAPSHOT.xsd">
  <id>dist</id>
  <formats>
    <format>zip</format>
  </formats>
  <fileSets>
    <fileSet>
      <directory>${basedir}/target</directory>
      <outputDirectory>/bin</outputDirectory>
      <includes>
        <include>**/*.dll</include>
      </includes>
    </fileSet>
    <fileSet>
      <directory>${basedir}</directory>
      <outputDirectory>/</outputDirectory>
      <includes>
        <include>web.config</include>
        <include>**/*.aspx</include>
      </includes>
    </fileSet>
  </fileSets>
</assembly>
{code}

> Create a ASP .NET packaging
> ---------------------------
>
>                 Key: NMAVEN-200
>                 URL: http://jira.codehaus.org/browse/NMAVEN-200
>             Project: NMaven
>          Issue Type: New Feature
>          Components: ASP support
>    Affects Versions: 0.14 (Unreleased), 0.16
>            Reporter: Carlos Sanchez
>
> http://docs.codehaus.org/display/MAVENUSER/NMaven+and+ASP+.NET
> Create a dotnet:asp (for 0.16+) / aspnet (for 0.14) type that generates the dll in target/artifactId/bin and copies all aspx files to target/artifactId
> Zip that folder and install it in the repo, in the future create a msi package

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira