Support

Forums

Wiki

  • Visit the Wiki extensive and up to date documentation at your fingertips.

Contact Me

Apache Maven BEA Weblogic 10.3 remote deployment

User Rating:  / 0
PoorBest 

 apache_maven

In this small post I will show you how to deploy automatically some artifacts of your build into bea_logo1Weblogic 10.3 by using the weblogic-maven-plugin

This plugin will support various tasks within the Weblogic 8.1 and 9.x environment. Such tasks as deploy, undeploy,clientgen,servicegen, and appc are supported as well as many others. The plugin uses exposed API's that are subject to change but have been tested in 8.1 SP 4-6 and 9.0 - 9.2 MP3. There are two versions of the plugin to support the two environments based on differences in the JDK. The 9.x version is currently being refactored to support the standard JSR supported deployment interface

 

Weblogic Admin Console

In the protocols section of your Admin server settings page verify that Enable Tunneling is checked (Environment – Server - Protocols).

Preparing Maven dependencies

In a Weblogic 10.3 JDK 1.6 environment the weblogic-maven-plugin requires 17 dependencies!

  • bea\modules\com.bea.core.descriptor.wl_1.1.0.0.jar
  • bea\modules\com.bea.core.descriptor_1.4.0.0.jar
  • bea\modules\com.bea.core.management.core_2.3.0.0.jar
  • bea\modules\com.bea.core.management.jmx_1.1.0.0.jar
  • bea\modules\com.bea.core.weblogic.lifecycle_1.1.0.0.jar
  • bea\modules\com.bea.core.weblogic.security.digest_1.0.0.0.jar
  • bea\modules\com.bea.core.weblogic.security.identity_1.1.0.0.jar
  • bea\modules\com.bea.core.weblogic.security.wls_2.0.1.0.jar
  • bea\modules\com.bea.core.weblogic.security_2.0.1.0.jar
  • bea\modules\com.bea.core.weblogic.socket.api_1.0.0.0.jar
  • bea\modules\com.bea.core.weblogic.workmanager_1.4.0.0.jar
  • bea\modules\javax.enterprise.deploy_1.2.jar
  • bea\wlserver_10.3\server\lib\wljmsclient.jar
  • bea\wlserver_10.3\server\lib\wls-api.jar
  • bea\wlserver_10.3\server\lib\wlsafclient.jar
  • bea\wlserver_10.3\server\lib\weblogic.jar
  • bea\wlserver_10.3\server\lib\webserviceclient.jar

but this can be reduced to just two by creating an uber jar wlfullclient.jar.

Use the following steps to create a wlfullclient.jar file for a JDK 1.6 client application:

  1. Change directories to the server/lib directory.
    cd WL_HOME/server/lib
  2. Use the following command to create wlfullclient.jar in the server/lib directory:
    java -jar wljarbuilder.jar

You can now deploy this huge jar file wlfullclient.jar  (59 MB) to either your Artifactory/Nexus/Archiva repository.

<dependency>
    <groupId>weblogic</groupId>
    <artifactId>wlfullclient</artifactId>
    <version>${weblogic.version}</version>
</dependency>

We need another jar file, this one can be find in bea/modules directory. Install also com.bea.core.descriptor.wl_1.1.0.0.jar into your local maven repository

<dependency>
    <groupId>weblogic</groupId>
    <artifactId>com.bea.core.descriptor.wl</artifactId>
    <version>1.1.0.0</version>
    <scope>provided</scope>
</dependency>

We are nearly ready, just add your deployment in a profile that is not active by default. This will allow you to deploy only in some special build with –P{profileName} in your continuous server (Hudson/Teamcity/Bamboo)

<profiles>

    <profile>
        <id>deploy_weblogic_dev</id>
        <activation>
            <activeByDefault>false</activeByDefault>
        </activation>
        <properties> </properties>
        <build>
            <plugins> </plugins>
        </build>
    </profile>
</profiles>

Here is the whole plugin configuration that you have to put between as usual

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>weblogic-maven-plugin</artifactId>
    <version>2.9.1</version>
    <executions>
        <execution>
            <phase>deploy</phase>
            <goals>
                <goal>deploy</goal>
                <goal>start</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <name>${webappname}</name>
        <adminServerHostName>${wls.adminServerHostName}</adminServerHostName>
        <adminServerPort>${wls.adminServerPort}</adminServerPort>
        <adminServerProtocol>t3</adminServerProtocol>
        <userId>${wls.userId}</userId>
        <password>${wls.password}</password>
        <upload>true</upload>
        <remote>true</remote>
        <verbose>false</verbose>
        <debug>false</debug>
        <targetNames>${wls.targetname}</targetNames>
        <noExit>true</noExit>
    </configuration>
    <dependencies>
        <dependency>
            <groupId>weblogic</groupId>
            <artifactId>wlfullclient</artifactId>
            <version>${weblogic.version}</version>
        </dependency>
        <dependency>
            <groupId>weblogic</groupId>
            <artifactId>com.bea.core.descriptor.wl</artifactId>
            <version>1.1.0.0</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>
</plugin>

Remarqs

  • It is important that is set to true or maven will exit improperly!
  • Define your password as usual in settings.xml
  • Variables ${xxxx}  are self explanatory, use correct values in section of your profile

Good luck! Feel free to ask below if you have any questions.

References

http://download.oracle.com/docs/cd/E12840_01/wls/docs103/client/jarbuilder.html

You might also like:
Easily Compress Web Application Resources with EhCache
216 days ago
Easily Compress Web Application Resources with EhCache
Resources such as JavaScript and CSS files can be compressed before being sent to the browser, imp
Tomcat 7 and Apache Maven
216 days ago
Tomcat 7 and Apache Maven
Here is 3 different way to control the lifetime a local Tomcat 7 container using Apache Maven. A t
Apache Maven copy local file to a remote server server using
404 days ago
Apache Maven copy local file to a remote server server using
I will show you in an Apache Maven configuration file how to copy files to server each time the pa
Apache M2Eclipse: Get rid of Duplicate resources when openin
410 days ago
Apache M2Eclipse: Get rid of Duplicate resources when openin
In this small post, I’ll show you how to remove duplicated resources in the Open Resource view o
Apache Maven 3 Cookbook
552 days ago
Apache Maven 3 Cookbook
  First a big thanks to Packt Publishing for having sent me this book to review! I did enj
Apache Maven 3 Cookbook Review
598 days ago
Apache Maven 3 Cookbook Review
Thanks to Packt Publishing for having sent me this book to review. I will publish a review in the
blog comments powered by Disqus

Donations

Thank You for supporting my work