Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Maven Plugin?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  8 messages - Expand all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Malachi de AElfweald  
View profile  
 More options May 17 2006, 10:21 pm
From: "Malachi de AElfweald" <malac...@gmail.com>
Date: Thu, 18 May 2006 02:21:42 -0000
Local: Wed, May 17 2006 10:21 pm
Subject: Maven Plugin?
Is anyone already working on a Maven2 plugin for it?

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
dohque@gmail.com  
View profile  
 More options Jun 2 2006, 4:14 am
From: "doh...@gmail.com" <doh...@gmail.com>
Date: Fri, 02 Jun 2006 08:14:01 -0000
Local: Fri, Jun 2 2006 4:14 am
Subject: Re: Maven Plugin?
I'm thinking on working on maven plugin for GWT. I suppose to open
project on sf.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
MarkHM  
View profile  
 More options Jun 2 2006, 7:17 am
From: "MarkHM" <mar...@gmail.com>
Date: Fri, 02 Jun 2006 11:17:18 -0000
Local: Fri, Jun 2 2006 7:17 am
Subject: Re: Maven Plugin?
What's Google's PoV on Maven2 btw?

The 'one-line' compile and shell-scripts look a little bit as if they
try to mock at heavyweight (xml-configured) build solutions.

Cheers,
- Mark


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Scott Blum  
View profile  
 More options Jun 2 2006, 5:19 pm
From: "Scott Blum" <sco...@google.com>
Date: Fri, 02 Jun 2006 14:19:44 -0700
Local: Fri, Jun 2 2006 5:19 pm
Subject: Re: Maven Plugin?
Hi Mark,

Well I can't speak for Google as a whole :) but speaking for myself
(and I think the other GWT engineers), we want people to easily use GWT
in every conceivable way.  We've tried to balance providing some useful
tools (like Eclipse and Ant file generation) with being tool agnostic.
We want you to use whatever tools you like best, and have the power to
integrate with other tools as you see fit.  The compiler and shell
scripts are a way of saying, "Here's the bare minimum you need to get
this to run; extrapolate from here to fit your own build environment."
We don't want to force you to use a particular technology.

By the way, Robert Cooper has a Maven plugin he talks about in this
article:
http://www.onjava.com/pub/a/onjava/2006/05/31/working-with-google-web...
It's linked off the last page of the article.

Scott Blum
GWT Engineer


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
oli  
View profile  
 More options Jun 2 2006, 7:13 pm
From: "oli" <jacekols...@gmail.com>
Date: Fri, 02 Jun 2006 23:13:26 -0000
Local: Fri, Jun 2 2006 7:13 pm
Subject: Re: Maven Plugin?
Hi everyone...

Last few days I've spent on developing AJAX Developer Suite - suite
which integrates GWT, Maven 2 and Jetty 6.  With it you can create
real-time AJAX applications. To create your own project you can simply
use Maven blank project (in the future it will have a goal to run
Google browser). Currently project is on planning stage. Any help
appreciated.

Currently project is hosted on:
http://rubynetwork.svnrepository.com/ajaxdevelopersuite


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mark Hissink Muller  
View profile  
 More options Jun 3 2006, 2:23 am
From: "Mark Hissink Muller" <mar...@gmail.com>
Date: Sat, 3 Jun 2006 08:23:25 +0200
Local: Sat, Jun 3 2006 2:23 am
Subject: Re: Maven Plugin?

Scott,

Thanks for taking the time to respond to my question and thanks for the
pointer, much appreciated.

Being so actively in present in this group really gives everbody the feeling
that you are 'bringing' this cool technology to the community, instead of
just throwing it over the wall. Double thumbs up and keep up the good
work...!

Cheers,
- Mark

On 6/2/06, Scott Blum <sco...@google.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
shinobu  
View profile  
(1 user)  More options Jun 3 2006, 8:55 am
From: "shinobu" <shinobu.ka...@gmail.com>
Date: Sat, 03 Jun 2006 12:55:51 -0000
Local: Sat, Jun 3 2006 8:55 am
Subject: Re: Maven Plugin?
I've been working on a m2 plugin myself [1].  Very sloppy code and
still needs lots of work, but I've managed to create a compile mojo.
You can plug it into your pom.xml like this:

  <build>
    <plugins>
      <plugin>
        <groupId>org.shinobun.mojo</groupId>
        <artifactId>maven-gwt-plugin</artifactId>
        <configuration>
          <className>org.shinobun.demo.gwt.GwtDemo</className>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>compile</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

It assumes a different directory structure than the ones created by
GWT's create script.  The GWT stuff are to be put under ./src/main/gwt.
 The output goes to ./target/gwt/www.

I've also created a demo for it [2].

[1] https://ssl.shinobun.org/svn/repos/trunk/mojos/maven-gwt-plugin/
[2] https://ssl.shinobun.org/svn/repos/trunk/demo/demo-gwt/
These are hosted on my laptop, so only available when I'm online...


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
christopher.alfonso@gmail .com  
View profile  
(3 users)  More options Jun 13 2006, 1:51 pm
From: "christopher.alfo...@gmail.com" <christopher.alfo...@gmail.com>
Date: Tue, 13 Jun 2006 17:51:38 -0000
Local: Tues, Jun 13 2006 1:51 pm
Subject: Re: Maven Plugin?
Thank for putting your mojo code out there.  I made a slight
modification to pick up external source dependencies.

/**
 * Location of the source files.
 *
 * @parameter
 * @required
 */
private List sourceDirectories;

//added a loop to get all the source directories.
private ClassLoader getClassLoader() throws MojoExecutionException {
                URLClassLoader myClassLoader = (URLClassLoader)
getClass().getClassLoader();

                URL[] originalUrls = myClassLoader.getURLs();
                URL[] urls = new URL[originalUrls.length + sourceDirectories.size()];
                for (int index = 0; index < originalUrls.length; ++index) {
                        try {
                                String url = originalUrls[index].toExternalForm();
                                urls[index] = new
File(url.substring("file:".length())).toURI().toURL();
                        } catch (MalformedURLException e) {
                                throw new MojoExecutionException("MalformedURLException", e);
                        }
                }

                int count = 0;
                for(Iterator itr = sourceDirectories.iterator(); itr.hasNext();
count++ ){
                        try {
                                File sourceDirectory = new File(itr.next().toString());
                                urls[originalUrls.length + count] = sourceDirectory.toURL();
                        } catch (MalformedURLException e) {
                                throw new MojoExecutionException("MalformedURLException", e);
                        }
                }

                return new URLClassLoader(urls, myClassLoader.getParent());
        }

Thanks again.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google