simplicityitself / grails-gwt

New Grails GWT Plugin
Other
23 stars 18 forks source link

Integrate external jar files? #31

Closed confile closed 10 years ago

confile commented 10 years ago

If I have jar libraries that are not in a online repository is there a way to integrate then as well?

pedjak commented 10 years ago

Sure, place them in lib/gwt folder

On Fri, Nov 29, 2013 at 10:41 AM, Michael G. notifications@github.comwrote:

If I have jar libraries that are not in a online repository is there a way to integrate then as well?

— Reply to this email directly or view it on GitHubhttps://github.com/simplicityitself/grails-gwt/issues/31 .

confile commented 10 years ago

@pedjak How do I include them?

assume I have lib/gwt/test.jar

This is how I usually inject jars.

gwt {
    version="2.5.1"
    dependencies=[
        'com.google.gwt.inject:gin:2.1.1',

    ]
}

How do I have to add them?

pedjak commented 10 years ago

They are automatically added to the classpath, you do not need to declare them in the configuration.

On Fri, Nov 29, 2013 at 2:09 PM, Michael G. notifications@github.comwrote:

@pedjak https://github.com/pedjak How do I include them?

assume I have lib/gwt/test.jar

This is how I usually inject jars.

gwt { version="2.5.1" dependencies=[ 'com.google.gwt.inject:gin:2.1.1',

]

}

How do I have to add them?

— Reply to this email directly or view it on GitHubhttps://github.com/simplicityitself/grails-gwt/issues/31#issuecomment-29515254 .

confile commented 10 years ago

okay great thank you