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/01 13:39:48 UTC

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

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

        

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

Posted by "Carlos Sanchez (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/NMAVEN-200?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=148581#action_148581 ] 

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

latest patch in NMAVEN-199 already does the packaging of asp applications

> 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
>             Fix For: 0.14 (Unreleased)
>
>
> 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

        

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

Posted by "Carlos Sanchez (JIRA)" <ji...@codehaus.org>.
    [ 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

        

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

Posted by "jan ancajas (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/NMAVEN-200?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=147654#action_147654 ] 

jan ancajas commented on NMAVEN-200:
------------------------------------

we can use  the fileSet entries below for the updated design of NMAVEN-199:

{noformat}
  <fileSets>
  <fileSet>
      <directory>${java.io.tmpdir}/${project.artifact.artifactId}/bin</directory>
      <outputDirectory>/bin</outputDirectory>
      <includes>
      </includes>
    </fileSet>
    <fileSet>
      <directory>${java.io.tmpdir}/${project.artifact.artifactId} </directory>
      <outputDirectory>/</outputDirectory>
      <includes>
        <include>*.config</include>
        <include>**/*.aspx</include>
      </includes>
      <excludes>
        <exclude>/target/**</exclude>        
      </excludes>
    </fileSet>  
  </fileSets>
{noformat}

there's  *.compiled file in the bin that needs to be copied also i think.

> 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
>             Fix For: 0.14 (Unreleased)
>
>
> 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

        

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

Posted by "Carlos Sanchez (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/NMAVEN-200?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=147155#action_147155 ] 

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

There's a webapp plugin already at {{http://svn.apache.org/repos/asf/incubator/nmaven/branches/NMAVEN_0.14/plugins/maven-webapp-plugin}} to create .nar archives

> 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
>             Fix For: 0.14 (Unreleased)
>
>
> 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

        

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

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/NMAVEN-200?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brett Porter updated NMAVEN-200:
--------------------------------

    Fix Version/s: 0.14 (Unreleased)

> 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
>             Fix For: 0.14 (Unreleased)
>
>
> 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