I'm deploying a webapp (WebApp.war, say) using the Maven Glassfish Plugin. Rather than it being deployed to http://localhost/WebApp I want it to be deployed to http://localhost/AnotherName - ... |
I've been trying to integrate deploying java .war's in Glassfish V3 through Maven. While I have found a few plugins, none of them look to be very active:
|
I cannot seem to get the Maven Glassfish plugin working for the life of me:
<project>
...
<pluginRepositories>
<pluginRepository>
<id>glassfish-repository</id>
...
|
I am using the Maven Embedded Glassfish Plugin and it works great, but unfortunately it creates a temporary directory in my main project directory. I would like it to use ... |
I need my JavaEE-application to be deployed on Glassfish as a directory, not a packaged WAR file.
Is it possible to deploy a directory to Glassfish with the Maven Glassfish Plugin? ... |
I haven't found a Maven plugin or target that will package my app and deploy it to Glassfish without error. I get this exception:
[ERROR] com.sun.enterprise.admin.cli.CommandException: remote failure: Exception ... |
I can't seem to get a web application running with the embedded glassfish plugin:
Plugin Configuration:
<plugin>
<groupId>org.glassfish</groupId>
...
|
|
We cannot deploy our app as Maven is trying to update glassfish plugin from maven.ocean.net.au repository, although no such repository was defined in our pom. The problem is maven.ocean.net.au isn't online ... |
I've looked at, and implemented the suggestion from Maven Embedded Glassfish plugin. I'm building an EJB, using Glassfish as the runtime. Thus I've change the:
<plugin>
...
<configuration>
...
<app>target/test.jar</app>
This didn't change ... |
Hi I'm looking for a way to touch a file using maven.
The specific user case for this is touching a ".reload" file in order to force Glassfish to redeploy an ... |
I'm trying to follow this approach to create a datasource for embedded glassfish. The only significant difference between the tutorial and my code is that I'm running the server ... |
I'm trying to use Maven with embbeded GlassFish 3.1 and so far it looks like most of the tutorial out there in the internet is either outdated or plain not working. ... |
I've written a small file containing a Glassfish domain creation sequence, that looks like this :
create-domain --adminPort 4848 --instancePort 8080 pouet
start-domain pouet
create-jdbc-connection-pool --datasourceclassname=org.apache.derby.jdbc.ClientDataSource --restype=javax.sql.ConnectionPoolDataSource --validationmethod=meta-data --description="Client datasource using an external Derby ...
|
When running the embedded glassfish plugin I get the following message.
INFO: Cannot find javadb client jar file, derby jdbc driver will not be available by default.
How to provide the javadb client ... |
On 07/07/2011 05:19 PM, forums@java.net wrote: > Hi > > I have a web application (war) that has some SOAP web service (JAXWS). I am > trying to launch a maven-embedded-glassfish-plugin v3.1 container and I > get this issue. > > *java.lang.NoSuchMethodError: > javax.xml.ws.WebFault.messageName()Ljava/lang/String;* at > com.sun.xml.ws.model.RuntimeModeler.processExceptions(RuntimeModeler.java:1077) > at > com.sun.xml.ws.model.RuntimeModeler.processDocWrappedMethod(RuntimeModeler.java:815) > at com.sun.xml.ws.model.RuntimeModeler.processMethod(RuntimeModeler.java:586) > at com.sun.xml.ws.model.RuntimeModeler.processClass(RuntimeModeler.java:366) > at > com.sun.xml.ws.model.RuntimeModeler.buildRuntimeModel(RuntimeModeler.java:246) ... |
On 08/03/2011 10:54 PM, Laird Nelson wrote: > Hello; I'm having another issue with the > maven-embedded-glassfish-plugin (version 3.1.1). > > I am able to start the server and run a Maven failsafe test. The > server comes up and goes down exactly as I would expect so no issues > there. Thanks indirectly go to Alexis for > http://blogs.oracle.com/alexismp/entry/glassfish_embedded_and_javadb_emb... > ... |
|
|
> Just out of curiosity, without having tried it so far: Does deployment > of maven-built artifacts also work having a remote glassfish installation? Yes remote deploy is working, provided you have the asadmin command locally ... so if you have a local glassfish install you can deploy to a remote one :) |
1. When I create a domain on glassfish Windows XP using either the or the , I can't log into the Admin console locally at http://localhost:4848. I believe this is because the "--passwordfile C:somedir" flag for create-domain that is auto-generated as a result of the "mvn glassfish:create-domain" goal doesn't surround the filepath by quotes. I turn echo on and I can't ... |
|
|