You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by "Johnny Sørensen (JIRA)" <ji...@apache.org> on 2010/02/05 08:30:27 UTC

[jira] Created: (HUPA-65) Small change to be able to run Hupa directly with Maven without any IDE setup

Small change to be able to run Hupa directly with Maven without any IDE setup
-----------------------------------------------------------------------------

                 Key: HUPA-65
                 URL: https://issues.apache.org/jira/browse/HUPA-65
             Project: JAMES Hupa
          Issue Type: Improvement
            Reporter: Johnny Sørensen
            Assignee: Norman Maurer
            Priority: Minor


I have a suggestion for some small changes in client/pom.xml.
For those who want to see what Hupa look like, they can check out the
project and run it without setting up any IDE. After the pom.xml is setup
correctly.

The user needs a SVN client and Maven installed.

Checkout the project with:
    svn checkout http://svn.apache.org/repos/asf/james/hupa/trunkhupa-parent

Change directory:
    cd hupa-parent/client

Start the Hupa client in GWT hosted mode:
    mvn gwt:run

In the GWT Development Mode Window, click the "Launch Default Browser"
button.
If this is the first time, you will be asked to install a GWT Developer
Plugin.

And now when the Hupa Client is up and running, you can use your ordinary
gmail account.
If this has triggered the users curiosity, they can continue with setting up
their IDE either Eclipse, IntelliJ or whatever.

And the changes are (in client/pom.xml):
--------------
Index: pom.xml
===================================================================
--- pom.xml    (revision 906457)
+++ pom.xml    (working copy)
@@ -20,8 +20,8 @@
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>gwt-maven-plugin</artifactId>
                 <configuration>
-                    <runTarget>org.apache.hupa.Hupa/Hupa.html
-                    </runTarget>
+                    <runTarget>Hupa.html</runTarget>
+
<extraJvmArgs>-Dhupa.config.file=${project.parent.basedir}/server/src/main/webapp/WEB-INF/conf/config.properties</extraJvmArgs>
                 </configuration>
                 <executions>
                     <execution>
--------------


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org


[jira] Commented: (HUPA-65) Small change to be able to run Hupa directly with Maven without any IDE setup

Posted by "postmaster@localhost.apache.org (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HUPA-65?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12830000#action_12830000 ] 

postmaster@localhost.apache.org commented on HUPA-65:
-----------------------------------------------------

We were unable to deliver the attached message because of an error in the mail server.

Message details:
  Subject: [jira] Updated: (HUPA-65) Small change to be able to run Hupa directly with Maven without any IDE setup
  Sent date: Fri Feb 05 19:22:28 EST 2010
  MAIL FROM: jira@apache.org
  RCPT TO: archive@localhost
  From: =?utf-8?Q?Johnny_S=C3=B8rensen_=28JIRA=29?= <ji...@apache.org> 
  To: server-dev@james.apache.org 
  Size (in bytes): 2967



> Small change to be able to run Hupa directly with Maven without any IDE setup
> -----------------------------------------------------------------------------
>
>                 Key: HUPA-65
>                 URL: https://issues.apache.org/jira/browse/HUPA-65
>             Project: JAMES Hupa
>          Issue Type: Improvement
>            Reporter: Johnny Sørensen
>            Assignee: Norman Maurer
>            Priority: Minor
>         Attachments: client-pom-change.patch
>
>
> I have a suggestion for some small changes in client/pom.xml.
> For those who want to see what Hupa look like, they can check out the
> project and run it without setting up any IDE. After the pom.xml is setup
> correctly.
> The user needs a SVN client and Maven installed.
> Checkout the project with:
>     svn checkout http://svn.apache.org/repos/asf/james/hupa/trunkhupa-parent
> Change directory:
>     cd hupa-parent/client
> Start the Hupa client in GWT hosted mode:
>     mvn gwt:run
> In the GWT Development Mode Window, click the "Launch Default Browser"
> button.
> If this is the first time, you will be asked to install a GWT Developer
> Plugin.
> And now when the Hupa Client is up and running, you can use your ordinary
> gmail account.
> If this has triggered the users curiosity, they can continue with setting up
> their IDE either Eclipse, IntelliJ or whatever.
> And the changes are (in client/pom.xml):
> --------------
> Index: pom.xml
> ===================================================================
> --- pom.xml    (revision 906457)
> +++ pom.xml    (working copy)
> @@ -20,8 +20,8 @@
>                  <groupId>org.codehaus.mojo</groupId>
>                  <artifactId>gwt-maven-plugin</artifactId>
>                  <configuration>
> -                    <runTarget>org.apache.hupa.Hupa/Hupa.html
> -                    </runTarget>
> +                    <runTarget>Hupa.html</runTarget>
> +
> <extraJvmArgs>-Dhupa.config.file=${project.parent.basedir}/server/src/main/webapp/WEB-INF/conf/config.properties</extraJvmArgs>
>                  </configuration>
>                  <executions>
>                      <execution>
> --------------

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org


[jira] Resolved: (HUPA-65) Small change to be able to run Hupa directly with Maven without any IDE setup

Posted by "Norman Maurer (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HUPA-65?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Norman Maurer resolved HUPA-65.
-------------------------------

    Resolution: Fixed

committed.. thx again!

> Small change to be able to run Hupa directly with Maven without any IDE setup
> -----------------------------------------------------------------------------
>
>                 Key: HUPA-65
>                 URL: https://issues.apache.org/jira/browse/HUPA-65
>             Project: JAMES Hupa
>          Issue Type: Improvement
>            Reporter: Johnny Sørensen
>            Assignee: Norman Maurer
>            Priority: Minor
>         Attachments: client-pom-change.patch
>
>
> I have a suggestion for some small changes in client/pom.xml.
> For those who want to see what Hupa look like, they can check out the
> project and run it without setting up any IDE. After the pom.xml is setup
> correctly.
> The user needs a SVN client and Maven installed.
> Checkout the project with:
>     svn checkout http://svn.apache.org/repos/asf/james/hupa/trunkhupa-parent
> Change directory:
>     cd hupa-parent/client
> Start the Hupa client in GWT hosted mode:
>     mvn gwt:run
> In the GWT Development Mode Window, click the "Launch Default Browser"
> button.
> If this is the first time, you will be asked to install a GWT Developer
> Plugin.
> And now when the Hupa Client is up and running, you can use your ordinary
> gmail account.
> If this has triggered the users curiosity, they can continue with setting up
> their IDE either Eclipse, IntelliJ or whatever.
> And the changes are (in client/pom.xml):
> --------------
> Index: pom.xml
> ===================================================================
> --- pom.xml    (revision 906457)
> +++ pom.xml    (working copy)
> @@ -20,8 +20,8 @@
>                  <groupId>org.codehaus.mojo</groupId>
>                  <artifactId>gwt-maven-plugin</artifactId>
>                  <configuration>
> -                    <runTarget>org.apache.hupa.Hupa/Hupa.html
> -                    </runTarget>
> +                    <runTarget>Hupa.html</runTarget>
> +
> <extraJvmArgs>-Dhupa.config.file=${project.parent.basedir}/server/src/main/webapp/WEB-INF/conf/config.properties</extraJvmArgs>
>                  </configuration>
>                  <executions>
>                      <execution>
> --------------

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org


[jira] Updated: (HUPA-65) Small change to be able to run Hupa directly with Maven without any IDE setup

Posted by "Johnny Sørensen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HUPA-65?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Johnny Sørensen updated HUPA-65:
--------------------------------

    Attachment: client-pom-change.patch

> Small change to be able to run Hupa directly with Maven without any IDE setup
> -----------------------------------------------------------------------------
>
>                 Key: HUPA-65
>                 URL: https://issues.apache.org/jira/browse/HUPA-65
>             Project: JAMES Hupa
>          Issue Type: Improvement
>            Reporter: Johnny Sørensen
>            Assignee: Norman Maurer
>            Priority: Minor
>         Attachments: client-pom-change.patch
>
>
> I have a suggestion for some small changes in client/pom.xml.
> For those who want to see what Hupa look like, they can check out the
> project and run it without setting up any IDE. After the pom.xml is setup
> correctly.
> The user needs a SVN client and Maven installed.
> Checkout the project with:
>     svn checkout http://svn.apache.org/repos/asf/james/hupa/trunkhupa-parent
> Change directory:
>     cd hupa-parent/client
> Start the Hupa client in GWT hosted mode:
>     mvn gwt:run
> In the GWT Development Mode Window, click the "Launch Default Browser"
> button.
> If this is the first time, you will be asked to install a GWT Developer
> Plugin.
> And now when the Hupa Client is up and running, you can use your ordinary
> gmail account.
> If this has triggered the users curiosity, they can continue with setting up
> their IDE either Eclipse, IntelliJ or whatever.
> And the changes are (in client/pom.xml):
> --------------
> Index: pom.xml
> ===================================================================
> --- pom.xml    (revision 906457)
> +++ pom.xml    (working copy)
> @@ -20,8 +20,8 @@
>                  <groupId>org.codehaus.mojo</groupId>
>                  <artifactId>gwt-maven-plugin</artifactId>
>                  <configuration>
> -                    <runTarget>org.apache.hupa.Hupa/Hupa.html
> -                    </runTarget>
> +                    <runTarget>Hupa.html</runTarget>
> +
> <extraJvmArgs>-Dhupa.config.file=${project.parent.basedir}/server/src/main/webapp/WEB-INF/conf/config.properties</extraJvmArgs>
>                  </configuration>
>                  <executions>
>                      <execution>
> --------------

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org