Search
Calendar
March 2024
S M T W T F S
« Sep    
 12
3456789
10111213141516
17181920212223
24252627282930
31  
Your widget title
Archives

Posts Tagged ‘Maven 3’

PostHeaderIcon Maven: How to use jars in a lib/ folder?

Case

I have to work on an “old-school” project: without Maven (and even without integration within Eclipse). The JARs depended on by the application are located in a lib/ folder. Besides, I cannot add JARs to company repository.
How to integrate Maven with this lib/ folder?

Solution

First of all, you have to enable the support of Maven within IntelliJ IDEA: select the project > right click > add framework support > select Maven.

Create a pom.xml and complete the main information.
Identify the JARs which are relatively common (eg those available in http://repo1.maven.org/maven2/), and add them as dependencies.

Now, you still have to deal with “uncommon” JARs

Quick and (very) dirty

The quickest way is to add the JARs as dependencies, declared with scope system, eg:

<dependency>
    <groupId>unknownGroupId</groupId>
    <artifactId>someArtifactId</artifactId>
    <version>someVersion</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/lib/foo.jar</systemPath>
</dependency>

The main drawback of this dirty solution is that when you generate your archive, the JARs depended on with scope system will not be exported… Quiet a limitation, isn’t it?

(A bit) Slower and (far) cleaner

You have to declare a “remote repository”, of which URL is local, such as:

<repository>
    <id>pseudoRemoteRepo</id>
    <releases>
        <enabled>true</enabled>
        <checksumPolicy>ignore</checksumPolicy>
    </releases>
    <url>file://${project.basedir}/lib</url>
</repository>

Then, declare the dependencies like:

<dependency>
    <groupId>UNKNOWN</groupId>
    <artifactId>foo</artifactId>
    <version>UNKNOWN</version>
</dependency>

Move and/or rename the JARs, for instance from lib/foo.jar folder to the actual one, such as lib/UNKNOWN/foo/foo-UNKNOWN.jar.

Now it should be OK ;-).
In my case I prefered to add Maven Assembly plugin with the goal jar-with-dependencies, to be sure to build a unique JAR with complete exploded dependencies.

PostHeaderIcon (long tweet) Increase choice with mvn archetype:generate

By default, mvn archetype:generate offers ~50 template projects. How to offer more templates?

Actually, Maven bases itself on a archetype-catalog.xml file, in Maven’s local repository. Updating this file is possible, by mvn archetype:crawl (and/or archetype:update-local-catalog ?).
Anyway, Maven can base on a remote repository, using archetypeCatalog, such as:

mvn archetype:generate -DarchetypeCatalog=http://download.java.net/maven/2

You can hint at the remote repository available in settings.xml file, for instance.

PostHeaderIcon IntelliJ IDEA / Unsupported classpath format eclipse

Case

The project on which I work is built on Eclipse and Ant. I am trying to migrate it to Maven 3.0. I thought to do this within IntelliJ IDEA.
Once the pom.xml was created, I wanted to revert to a configuration based on Eclipse’s .classpath file.
Then IntelliJ IDEA crashes. On starting up again, I get the following error

Cannot load module file 'jonathanModule' Unsupported classpath format eclipse

Quick Fix

For a reason I ignore, Eclipse integration plugin was disabled. To restore Eclipse compatibility, simply do enable Eclipse integration in the plugin preference menu of IntelliJ IDEA.

PostHeaderIcon Maven 3 / properties-maven-plugin

Case

Maven 3 is stricter than Maven 2 on pom.xml compliancy with Maven’s XSD.
This induces more errors when a project is upgraded from Maven 2 to Maven 3.

For instance, I had the following block in my pom.xml:

			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>properties-maven-plugin</artifactId>
				<version>1.0-alpha-2</version>
				<executions>
					<execution>
						<phase>initialize</phase>
						<goals>
							<goal>read-project-properties</goal>
						</goals>
						<configuration>
							<files>
								<file>conf/deployment/${maven.user}.pom.properties</file>
							</files>
						</configuration>
					</execution>
				</executions>
			</plugin>

I got this errors, related to properties-maven-plugin:

Failed to execute goal org.codehaus.mojo:properties-maven-plugin:1.0-alpha-2:read-project-properties (default-cli) on project jonathan-lalou-web: The parameters 'files' for goal org.codehaus.mojo:properties-maven-plugin:1.0-alpha-2:read-project-properties are missing or invalid -> [Help 1]

Initially, I thought the propery maven.user was not dynamically set. This is why I wrote the actual path in hard. But I got that error:

The parameters 'files' for goal org.codehaus.mojo:properties-maven-plugin:1.0-alpha-2:read-project-properties are missing or invalid

Quick Fix

As a quick fix, I made the block a little lighter:

			<plugin>
				<groupId>org.codehaus.mojo</groupId>
                                <artifactId>properties-maven-plugin</artifactId>
                                <version>1.0-alpha-2</version>
                                <configuration>
                                    <files><file>conf/deployment/jlalou.pom.properties</file></files>
                                </configuration>
			</plugin>

This is a quick and dirty fix:

  1. I cannot configure the execution and restrict the plugin use to a single phase, as it was
  2. I have to run explicitly the goal. I mean: before, I ran mvn package weblogic:deploy, and now I have to run mvn org.codehaus.mojo:properties-maven-plugin:read-project-properties package com.oracle.weblogic:weblogic-maven-plugin:deploy (since I have upgraded Weblogic plugin at the same time)

PostHeaderIcon Weblogic plugin for Maven 3

Mojo’s Legacy

I am upgrading my application from Maven 2 to Maven 3. The migration is smooth, but some issues occur with Maven plugins. One of the issue is related to weblogic-maven-plugin.

Oracle advises to generate the plugin (which now replaces Mojo’s former one). The documentation is available here: Using the WebLogic Maven Plug-In for Deployment.

Once WebLogic 10.3.4 installed (with a default configuration), I executed the first command:

java -jar wljarbuilder.jar -profile weblogic-maven-plugin

But I got the following stacktrace:

Exception in thread "Main Thread" java.lang.NoClassDefFoundError: com/bea/jarbuilder/JarBuilder
Caused by: java.lang.ClassNotFoundException: com.bea.jarbuilder.JarBuilder
        at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:303)
        at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
Could not find the main class: com.bea.jarbuilder.JarBuilder. Program will exit.

Trouble of paths

I opened the jar wljarbuilder.jar. I contains only a manifest, hinting a JAR and a runnable class:

Manifest-Version: 1.0
Ant-Version: Apache Ant 1.7.1
Created-By: R28.1.1-14-139783-1.6.0_22-20101206-0241-windows-ia32 (Ora
 cle Corporation)
Main-Class: com.bea.jarbuilder.JarBuilder
Class-Path: ../../../modules/com.bea.core.jarbuilder_1.6.0.0.jar

I checked the path of the actual jar (../../../com.bea.core.jarbuilder_1.6.0.0.jar) and it was actual one step below (../../com.bea.core.jarbuilder_1.6.0.0.jar). I tried to run this command:

java -jar  com.bea.core.jarbuilder_1.6.0.0.jar -profile weblogic-maven-plugin

but once again I fell on a missing resource:

java.io.FileNotFoundException: C:\win32app\modules\com.bea.core.datasource6_1.9.0.0.jar
        at com.bea.jarbuilder.internal.CompositeJar.<init>(CompositeJar.java:69)
        at com.bea.jarbuilder.JarBuilder.createJar(JarBuilder.java:166)
        at com.bea.jarbuilder.JarBuilder.main(JarBuilder.java:53)
Error creating target jar

How to fix that?

  • Copy $WLS_HOME/server/lib/jarbuilder.properties as $WLS_HOME/server/lib/jarbuilder.properties.ORI
  • Edit $WLS_HOME/server/lib/jarbuilder.properties
  • For all properties starting with “weblogic-maven-plugin.”, adapt the relative paths: for instance, replace ../../../modules with ../../modules.

eg:

weblogic-maven-plugin.description=WebLogic maven plugin that supports deployment
weblogic-maven-plugin.target=weblogic-maven-plugin.jar
weblogic-maven-plugin.source=weblogic.jar,../../modules/com.bea.core.datasource6_1.9.0.0.jar,../../modules/com.bea.core.descriptor.wl_1.3.3.0.jar,../../modules/com.bea.core.utils.full_1.9.0.0.jar,../../modules/com.oracle.weblogic.maven.plugin_1.0.0.0.jar,../../modules/com.oracle.core.weblogic.msgcat_1.1.0.0.jar
weblogic-maven-plugin.includeNativeLibs=false
weblogic-maven-plugin.feature.1=../../modules/features/weblogic.client.modules_10.3.4.0.jar
weblogic-maven-plugin.exclude=../../modules/cryptoj.jar
weblogic-maven-plugin.manifest.Class-Path=cryptoj.jar
weblogic-maven-plugin.manifest.Implementation-Title=WebLogic Maven Plugin for WebLogic Server 10.3  Fri Dec 17 20:47:33 PST 2010 1384255
weblogic-maven-plugin.manifest.Implementation-Version=10.3.4.0
weblogic-maven-plugin.manifest.Implementation-Vendor=Oracle Corp.

Then run

java -jar wljarbuilder.jar -profile weblogic-maven-plugin -cp $WLS_HOME/modules/com.bea.core.jarbuilder_1.6.0.0.jar

You should get a trace similar to:

Creating new jar file: weblogic-maven-plugin.jar
Integrating jar -->(0)/(0)/C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(0)/(22924)/(22924)/C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar -->(0)/(22924)/C:\win32app\WLS_10.3.4\modules\com.bea.core.datasource6_1.9.0.0.jar
Ignoring Duplicate Entry utils/Schema.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry utils/dbping.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(0)/(23092)/(168)/C:\win32app\WLS_10.3.4\modules\com.bea.core.datasource6_1.9.0.0.jar
Integrating jar -->(0)/(23092)/C:\win32app\WLS_10.3.4\modules\com.bea.core.descriptor.wl_1.3.3.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(0)/(23313)/(221)/C:\win32app\WLS_10.3.4\modules\com.bea.core.descriptor.wl_1.3.3.0.jar
Integrating jar -->(0)/(23313)/C:\win32app\WLS_10.3.4\modules\com.bea.core.utils.full_1.9.0.0.jar
Skipping native/aix/ppc64/libterminalio.so
Skipping native/aix/ppc/libterminalio.so
Skipping native/hpux11/IPF32/libterminalio.so
Skipping native/hpux11/IPF64/libterminalio.so
Skipping native/hpux11/PA_RISC64/libterminalio.sl
Skipping native/hpux11/PA_RISC/libterminalio.sl
Skipping native/linux/i686/libterminalio.so
Skipping native/linux/ia64/libterminalio.so
Skipping native/linux/s390x/libterminalio.so
Skipping native/linux/s3990/libterminalio.so
Skipping native/linux/x86_64/libterminalio.so
Skipping native/macosx/libterminalio.jnilib
Skipping native/solaris/sparc64/libterminalio.so
Skipping native/solaris/sparc/libterminalio.so
Skipping native/solaris/x64/libterminalio.so
Skipping native/solaris/x86/libterminalio.so
Skipping native/win/32/terminalio.dll
Skipping native/win/64/terminalio.dll
Skipping native/win/x64/terminalio.dll
Integrating jar <--(0)/(23806)/(493)/C:\win32app\WLS_10.3.4\modules\com.bea.core.utils.full_1.9.0.0.jar
Integrating jar -->(0)/(23806)/C:\win32app\WLS_10.3.4\modules\com.oracle.weblogic.maven.plugin_1.0.0.0.jar
Integrating jar <--(0)/(23826)/(20)/C:\win32app\WLS_10.3.4\modules\com.oracle.weblogic.maven.plugin_1.0.0.0.jar
Integrating jar -->(0)/(23826)/C:\win32app\WLS_10.3.4\modules\com.oracle.core.weblogic.msgcat_1.1.0.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/i18ntools/DeploymentManagerLogLocalizer.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/i18ntools/DeploymentManagerLogLocalizerDetail.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/management/deploy/internal/DeploymentManagerLogger$MessageLoggerInitializer.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/management/deploy/internal/DeploymentManagerLogger.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(0)/(24240)/(414)/C:\win32app\WLS_10.3.4\modules\com.oracle.core.weblogic.msgcat_1.1.0.0.jar
Integrating jar -->(0)/(24240)/C:\win32app\WLS_10.3.4\modules\features\weblogic.client.modules_10.3.4.0.jar
Integrating jar <--(0)/(24240)/(0)/C:\win32app\WLS_10.3.4\modules\features\weblogic.client.modules_10.3.4.0.jar
Integrating jar -->(1)/(24240)/C:\win32app\WLS_10.3.4\modules\features\weblogic.client.modules.L10N_10.3.4.0.jar
Integrating jar <--(1)/(24240)/(0)/C:\win32app\WLS_10.3.4\modules\features\weblogic.client.modules.L10N_10.3.4.0.jar
Integrating jar -->(2)/(24240)/C:\win32app\WLS_10.3.4\modules\features\weblogic.client.modules.ja_10.3.4.0.jar
Integrating jar <--(2)/(24240)/(0)/C:\win32app\WLS_10.3.4\modules\features\weblogic.client.modules.ja_10.3.4.0.jar
Integrating jar -->(2)/(24240)/C:\win32app\WLS_10.3.4\modules\features\weblogic.client.modules.ko_10.3.4.0.jar
Integrating jar <--(2)/(24240)/(0)/C:\win32app\WLS_10.3.4\modules\features\weblogic.client.modules.ko_10.3.4.0.jar
Integrating jar -->(2)/(24240)/C:\win32app\WLS_10.3.4\modules\features\weblogic.client.modules.zh.CN_10.3.4.0.jar
Integrating jar <--(2)/(24240)/(0)/C:\win32app\WLS_10.3.4\modules\features\weblogic.client.modules.zh.CN_10.3.4.0.jar
Integrating jar -->(2)/(24240)/C:\win32app\WLS_10.3.4\modules\features\weblogic.client.modules.zh.TW_10.3.4.0.jar
Integrating jar <--(2)/(24240)/(0)/C:\win32app\WLS_10.3.4\modules\features\weblogic.client.modules.zh.TW_10.3.4.0.jar
Integrating jar -->(1)/(24240)/C:\win32app\WLS_10.3.4\modules\com.bea.core.antlr.runtime_2.7.7.jar
Integrating jar <--(1)/(24313)/(73)/C:\win32app\WLS_10.3.4\modules\com.bea.core.antlr.runtime_2.7.7.jar
Integrating jar -->(1)/(24313)/C:\win32app\WLS_10.3.4\modules\com.bea.core.logging_1.8.0.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(24411)/(98)/C:\win32app\WLS_10.3.4\modules\com.bea.core.logging_1.8.0.0.jar
Integrating jar -->(1)/(24411)/C:\win32app\WLS_10.3.4\modules\com.bea.core.xml.staxb.runtime_1.7.0.0.jar
Integrating jar <--(1)/(24971)/(560)/C:\win32app\WLS_10.3.4\modules\com.bea.core.xml.staxb.runtime_1.7.0.0.jar
Integrating jar -->(1)/(24971)/C:\win32app\WLS_10.3.4\modules\com.bea.core.annogen_1.3.0.0.jar
Integrating jar <--(1)/(25200)/(229)/C:\win32app\WLS_10.3.4\modules\com.bea.core.annogen_1.3.0.0.jar
Integrating jar -->(1)/(25200)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.i18n_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(25223)/(23)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.i18n_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(25223)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.xacml_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(25436)/(213)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.xacml_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(25436)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml2.utils_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(25452)/(16)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml2.utils_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(25452)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.engine.impl_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(25468)/(16)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.engine.impl_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(25468)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.engine.api_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(25480)/(12)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.engine.api_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(25480)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/spi/AuditRoleDeploymentEvent.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/security/spi/DeployableAuthorizationProvider.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/security/spi/DeployableRoleProvider.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(25704)/(224)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(25704)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.impl_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(26286)/(582)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.impl_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(26286)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.jdkutils_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(26299)/(13)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.jdkutils_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(26299)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.utils_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(26385)/(86)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.utils_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(26385)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml2_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/internal/legacy/helper/LoginSessionServiceConfigHelperImpl.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.impl_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/internal/legacy/helper/SAML2SingleSignOnServicesConfigHelperImpl$1.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.impl_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/internal/legacy/helper/SAML2SingleSignOnServicesConfigHelperImpl$SAML2ConfigImpl.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.impl_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/internal/legacy/helper/SAML2SingleSignOnServicesConfigHelperImpl$SingleSignOnServicesConfigCustomizerImpl.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.impl_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/internal/legacy/helper/SAML2SingleSignOnServicesConfigHelperImpl.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.impl_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/internal/service/LoginSessionServiceImpl$IdentityWrapperImpl.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.impl_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/internal/service/LoginSessionServiceImpl$LoginSessionImpl.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.impl_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/internal/service/LoginSessionServiceImpl.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.impl_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/servicecfg/SAML2ServiceConfig.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.impl_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(26491)/(106)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml2_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(26491)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml2.manage_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(26512)/(21)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml2.manage_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(26512)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.providers.utils_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(26579)/(67)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.providers.utils_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(26579)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(26640)/(61)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(26640)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.xacmlproviders.utils_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(27420)/(780)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.xacmlproviders.utils_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(27420)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.providers.env_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/saml/SAMLServlet.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/saml/utils/SAMLAbstractMemCache$CacheEntry.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/saml/utils/SAMLAbstractMemCache$CacheTimerTask.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/saml/utils/SAMLAbstractMemCache.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/saml/utils/SAMLAssertionStoreMemImpl.class also in
C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/saml/utils/SAMLContextHandler.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/saml/utils/SAMLProfile.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/saml/utils/SAMLSourceId.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/saml/utils/SAMLUsedAssertionCacheMemImpl.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/saml/utils/ServletIdentityHelper.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/common/security/saml/utils/ServletIdentityHelperImpl.class also in
C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/security/saml2/servlet/SAML2Filter.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml2.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/security/saml2/servlet/SAML2NoAuthCheckFilter.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml2.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/security/saml2/servlet/SAML2Servlet.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml2.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry com/bea/security/saml2/servlet/SAML2ServletConfigHelper.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml2.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/providers/saml/SAMLAssertionStore.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/providers/saml/SAMLAssertionStoreV2$AssertionInfo.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/providers/saml/SAMLAssertionStoreV2.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/providers/saml/SAMLUsedAssertionCache.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/providers/saml/registry/SAMLAssertingParty.class also in
C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/providers/saml/registry/SAMLCommonPartner.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/providers/saml/registry/SAMLPartner.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/providers/saml/registry/SAMLRelyingParty.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/providers/utils/CredMappingException.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.providers.utils_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(27532)/(112)/C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.providers.env_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(27532)/C:\win32app\WLS_10.3.4\modules\com.bea.core.certj_3.1.0.0.jar
Integrating jar <--(1)/(27915)/(383)/C:\win32app\WLS_10.3.4\modules\com.bea.core.certj_3.1.0.0.jar
Integrating jar -->(1)/(27915)/C:\win32app\WLS_10.3.4\modules\com.bea.core.ldapjdk_1.2.0.0.jar
Integrating jar <--(1)/(28099)/(184)/C:\win32app\WLS_10.3.4\modules\com.bea.core.ldapjdk_1.2.0.0.jar
Integrating jar -->(1)/(28099)/C:\win32app\WLS_10.3.4\modules\javax.activation_1.1.0.0_1-1.jar
Integrating jar <--(1)/(28145)/(46)/C:\win32app\WLS_10.3.4\modules\javax.activation_1.1.0.0_1-1.jar
Integrating jar -->(1)/(28145)/C:\win32app\WLS_10.3.4\modules\javax.annotation_1.0.0.0_1-0.jar
Integrating jar <--(1)/(28158)/(13)/C:\win32app\WLS_10.3.4\modules\javax.annotation_1.0.0.0_1-0.jar
Integrating jar -->(1)/(28158)/C:\win32app\WLS_10.3.4\modules\javax.interceptor_1.0.jar
Integrating jar <--(1)/(28164)/(6)/C:\win32app\WLS_10.3.4\modules\javax.interceptor_1.0.jar
Integrating jar -->(1)/(28164)/C:\win32app\WLS_10.3.4\modules\javax.ejb_3.0.1.jar
Integrating jar <--(1)/(28222)/(58)/C:\win32app\WLS_10.3.4\modules\javax.ejb_3.0.1.jar
Integrating jar -->(1)/(28222)/C:\win32app\WLS_10.3.4\modules\javax.jdo_2.0.1.jar
Integrating jar <--(1)/(28319)/(97)/C:\win32app\WLS_10.3.4\modules\javax.jdo_2.0.1.jar
Integrating jar -->(1)/(28319)/C:\win32app\WLS_10.3.4\modules\javax.enterprise.deploy_1.2.jar
Integrating jar <--(1)/(28362)/(43)/C:\win32app\WLS_10.3.4\modules\javax.enterprise.deploy_1.2.jar
Integrating jar -->(1)/(28362)/C:\win32app\WLS_10.3.4\modules\javax.jms_1.1.1.jar
Integrating jar <--(1)/(28421)/(59)/C:\win32app\WLS_10.3.4\modules\javax.jms_1.1.1.jar
Integrating jar -->(1)/(28421)/C:\win32app\WLS_10.3.4\modules\javax.jsp_1.2.0.0_2-1.jar
Integrating jar <--(1)/(28519)/(98)/C:\win32app\WLS_10.3.4\modules\javax.jsp_1.2.0.0_2-1.jar
Integrating jar -->(1)/(28519)/C:\win32app\WLS_10.3.4\modules\javax.jws_2.0.jar
Integrating jar <--(1)/(28535)/(16)/C:\win32app\WLS_10.3.4\modules\javax.jws_2.0.jar
Integrating jar -->(1)/(28535)/C:\win32app\WLS_10.3.4\modules\javax.mail_1.1.0.0_1-4-1.jar
Integrating jar <--(1)/(28808)/(273)/C:\win32app\WLS_10.3.4\modules\javax.mail_1.1.0.0_1-4-1.jar
Integrating jar -->(1)/(28808)/C:\win32app\WLS_10.3.4\modules\javax.management.j2ee_1.0.jar
Integrating jar <--(1)/(28843)/(35)/C:\win32app\WLS_10.3.4\modules\javax.management.j2ee_1.0.jar
Integrating jar -->(1)/(28843)/C:\win32app\WLS_10.3.4\modules\javax.persistence_1.0.0.0_1-0-2.jar
Integrating jar <--(1)/(28936)/(93)/C:\win32app\WLS_10.3.4\modules\javax.persistence_1.0.0.0_1-0-2.jar
Integrating jar -->(1)/(28936)/C:\win32app\WLS_10.3.4\modules\javax.resource_1.5.1.jar
Integrating jar <--(1)/(29005)/(69)/C:\win32app\WLS_10.3.4\modules\javax.resource_1.5.1.jar
Integrating jar -->(1)/(29005)/C:\win32app\WLS_10.3.4\modules\javax.security.jacc_1.0.0.0_1-1.jar
Integrating jar <--(1)/(29020)/(15)/C:\win32app\WLS_10.3.4\modules\javax.security.jacc_1.0.0.0_1-1.jar
Integrating jar -->(1)/(29020)/C:\win32app\WLS_10.3.4\modules\javax.servlet_1.0.0.0_2-5.jar
Integrating jar <--(1)/(29090)/(70)/C:\win32app\WLS_10.3.4\modules\javax.servlet_1.0.0.0_2-5.jar
Integrating jar -->(1)/(29090)/C:\win32app\WLS_10.3.4\modules\javax.transaction_1.0.0.0_1-1.jar
Integrating jar <--(1)/(29110)/(20)/C:\win32app\WLS_10.3.4\modules\javax.transaction_1.0.0.0_1-1.jar
Integrating jar -->(1)/(29110)/C:\win32app\WLS_10.3.4\modules\javax.xml.bind_2.1.1.jar
Integrating jar <--(1)/(29216)/(106)/C:\win32app\WLS_10.3.4\modules\javax.xml.bind_2.1.1.jar
Integrating jar -->(1)/(29216)/C:\win32app\WLS_10.3.4\modules\javax.xml.registry_1.0.0.0_1-0.jar
Integrating jar <--(1)/(29271)/(55)/C:\win32app\WLS_10.3.4\modules\javax.xml.registry_1.0.0.0_1-0.jar
Integrating jar -->(1)/(29271)/C:\win32app\WLS_10.3.4\modules\javax.xml.soap_1.3.1.0.jar
Integrating jar <--(1)/(29301)/(30)/C:\win32app\WLS_10.3.4\modules\javax.xml.soap_1.3.1.0.jar
Integrating jar -->(1)/(29301)/C:\win32app\WLS_10.3.4\modules\javax.xml.stream_1.1.1.0.jar
Integrating jar <--(1)/(29345)/(44)/C:\win32app\WLS_10.3.4\modules\javax.xml.stream_1.1.1.0.jar
Integrating jar -->(1)/(29345)/C:\win32app\WLS_10.3.4\modules\javax.xml.ws_2.1.1.jar
Integrating jar <--(1)/(29409)/(64)/C:\win32app\WLS_10.3.4\modules\javax.xml.ws_2.1.1.jar
Integrating jar -->(1)/(29409)/C:\win32app\WLS_10.3.4\modules\javax.xml.rpc_1.2.1.jar
Ignoring Duplicate Entry javax/xml/namespace/QName.class also in C:\win32app\WLS_10.3.4\modules\javax.xml.stream_1.1.1.0.jar
Integrating jar <--(1)/(29466)/(57)/C:\win32app\WLS_10.3.4\modules\javax.xml.rpc_1.2.1.jar
Integrating jar -->(1)/(29466)/C:\win32app\WLS_10.3.4\modules\com.oracle.jfr_1.0.0.0.jar
Integrating jar <--(1)/(29600)/(134)/C:\win32app\WLS_10.3.4\modules\com.oracle.jfr_1.0.0.0.jar
Integrating jar -->(1)/(29600)/C:\win32app\WLS_10.3.4\modules\com.bea.core.apache_1.2.0.1.jar
Integrating jar <--(1)/(31002)/(1402)/C:\win32app\WLS_10.3.4\modules\com.bea.core.apache_1.2.0.1.jar
Integrating jar -->(1)/(31002)/C:\win32app\WLS_10.3.4\modules\com.bea.core.beangen_1.7.0.0.jar
Integrating jar <--(1)/(31147)/(145)/C:\win32app\WLS_10.3.4\modules\com.bea.core.beangen_1.7.0.0.jar
Integrating jar -->(1)/(31147)/C:\win32app\WLS_10.3.4\modules\com.bea.core.beaninfo_2.4.0.0.jar
Integrating jar <--(1)/(31163)/(16)/C:\win32app\WLS_10.3.4\modules\com.bea.core.beaninfo_2.4.0.0.jar
Integrating jar -->(1)/(31163)/C:\win32app\WLS_10.3.4\modules\com.bea.core.descriptor_1.9.0.0.jar
Ignoring Duplicate Entry weblogic/descriptor/SettableBean.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.datasource6_1.9.0.0.jar
Ignoring Duplicate Entry weblogic/descriptor/beangen/LegalChecks.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.beangen_1.7.0.0.jar
Ignoring Duplicate Entry weblogic/descriptor/beangen/StringHelper.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.beangen_1.7.0.0.jar
Integrating jar <--(1)/(31270)/(107)/C:\win32app\WLS_10.3.4\modules\com.bea.core.descriptor_1.9.0.0.jar
Integrating jar -->(1)/(31270)/C:\win32app\WLS_10.3.4\modules\com.bea.core.diagnostics.core_2.5.0.0.jar
Ignoring Duplicate Entry weblogic/diagnostics/type/UnexpectedExceptionHandler.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(31313)/(43)/C:\win32app\WLS_10.3.4\modules\com.bea.core.diagnostics.core_2.5.0.0.jar
Integrating jar -->(1)/(31313)/C:\win32app\WLS_10.3.4\modules\com.bea.core.diagnostics.instrumentor_1.7.0.0.jar
Ignoring Duplicate Entry weblogic/diagnostics/instrumentation/engine/i18n/DiagnosticsInstrumentorLogger$MessageLoggerInitializer.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.diagnostics.instrumentor_1.7.0.0.jar
Ignoring Duplicate Entry weblogic/diagnostics/instrumentation/engine/i18n/DiagnosticsInstrumentorLogger.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.diagnostics.instrumentor_1.7.0.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(31372)/(59)/C:\win32app\WLS_10.3.4\modules\com.bea.core.diagnostics.instrumentor_1.7.0.0.jar
Integrating jar -->(1)/(31372)/C:\win32app\WLS_10.3.4\modules\com.bea.core.diagnostics.instrumentor.config_1.7.0.0.jar
Integrating jar <--(1)/(31497)/(125)/C:\win32app\WLS_10.3.4\modules\com.bea.core.diagnostics.instrumentor.config_1.7.0.0.jar
Integrating jar -->(1)/(31497)/C:\win32app\WLS_10.3.4\modules\com.bea.core.i18n_1.8.0.0.jar
Integrating jar <--(1)/(31531)/(34)/C:\win32app\WLS_10.3.4\modules\com.bea.core.i18n_1.8.0.0.jar
Integrating jar -->(1)/(31531)/C:\win32app\WLS_10.3.4\modules\com.bea.core.management.core_2.8.0.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(31573)/(42)/C:\win32app\WLS_10.3.4\modules\com.bea.core.management.core_2.8.0.0.jar
Integrating jar -->(1)/(31573)/C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Integrating jar <--(1)/(31619)/(46)/C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Integrating jar -->(1)/(31619)/C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.support_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/AbstractCommoConfigurationBean$Helper.class also
in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/AbstractCommoConfigurationBean.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/AbstractCommoConfigurationBeanBinder.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/AbstractCommoConfigurationBeanImplBeanInfo.class
also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/BaseModelMBean.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/Commo$Pair.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/Commo.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/CommoMBean.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/CommoMBeanInstance.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/CommoModelMBeanAttributeInfo.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/CommoModelMBeanConstructorInfo.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/CommoModelMBeanInfoSupport.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/CommoModelMBeanNotificationInfo.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/CommoModelMBeanOperationInfo.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/CommoOperationsException.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/DescriptorSupport$1.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/DescriptorSupport$Pair.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/DescriptorSupport$VoidValue.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/DescriptorSupport.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/DescriptorSupportBase.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/RequiredModelMBeanWrapper.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/SecurityMBeanData.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/StandardInterface.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/TypedMBeanData.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/ant/taskdefs/management/commo/antlib.xml also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/CustomMBeanImpl.j also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/DiabloCustomMBeanIntf.j also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/commo/commo.dtd also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/management/internal/mbean/SecurityReadOnlyMBean.template also in C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.maker_1.5.0.0.jar
Integrating jar <--(1)/(31619)/(0)/C:\win32app\WLS_10.3.4\modules\com.bea.core.mbean.support_1.5.0.0.jar
Integrating jar -->(1)/(31619)/C:\win32app\WLS_10.3.4\modules\com.bea.core.messaging.kernel_1.8.0.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(31783)/(164)/C:\win32app\WLS_10.3.4\modules\com.bea.core.messaging.kernel_1.8.0.0.jar
Integrating jar -->(1)/(31783)/C:\win32app\WLS_10.3.4\modules\com.bea.core.resourcepool_1.7.0.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry META-INF/msgcat/Common.xml also in C:\win32app\WLS_10.3.4\modules\com.oracle.core.weblogic.msgcat_1.1.0.0.jar
Ignoring Duplicate Entry META-INF/msgcat/CommonText.xml also in C:\win32app\WLS_10.3.4\modules\com.oracle.core.weblogic.msgcat_1.1.0.0.jar
Integrating jar <--(1)/(31821)/(38)/C:\win32app\WLS_10.3.4\modules\com.bea.core.resourcepool_1.7.0.0.jar
Integrating jar -->(1)/(31821)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.rmi.client_1.8.0.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/rmi/internal/HeartbeatHelperImplRTD.xml also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/rmi/internal/HeartbeatHelperImpl_1034_WLStub.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/rmi/internal/HeartbeatHelperImpl_WLSkel.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/rmi/internal/dgc/DGCServerImplRTD.xml also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/rmi/internal/dgc/DGCServerImpl_1034_WLStub.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/rmi/internal/dgc/DGCServerImpl_WLSkel.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/rmi/utils/collections/RemoteMapAdapterRTD.xml also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/rmi/utils/collections/RemoteMapAdapter_1034_WLStub.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/rmi/utils/collections/RemoteMapAdapter_WLSkel.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/rmi/internal/rmi.dtd also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(32216)/(395)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.rmi.client_1.8.0.0.jar
Integrating jar -->(1)/(32216)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.security.auth_1.1.0.0.jar
Integrating jar <--(1)/(32217)/(1)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.security.auth_1.1.0.0.jar
Integrating jar -->(1)/(32217)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.security.digest_1.0.0.0.jar
Integrating jar <--(1)/(32227)/(10)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.security.digest_1.0.0.0.jar
Integrating jar -->(1)/(32227)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.security.identity_1.1.2.1.jar
Integrating jar <--(1)/(32255)/(28)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.security.identity_1.1.2.1.jar
Integrating jar -->(1)/(32255)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.security.logger_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry META-INF/msgcat/Security.xml also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.i18n_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(32259)/(4)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.security.logger_1.5.0.0.jar
Integrating jar -->(1)/(32259)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.security.wls_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/AdminResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/ApplicationResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/AuditLogFile$1.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/AuditLogFile$RotateTimerTask.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/AuditLogFile.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/AuditLogFileException.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/COMResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/ConsumableResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/ConsumptionException.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/ContextElement.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/ContextElementMessageStream.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/ContextHandler.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/ControlResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/DeployHandleCreationException.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/EISResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/EJBResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/InvalidParameterException.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/InvocableResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/JDBCResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/JMSResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/JMXResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/JNDIResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/KerberosServiceResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/LegacyEnforceStrictURLPatternManager.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/LegacyWebAppFilesCaseInsensitiveManager.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/MBeanResource$ActionType.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/MBeanResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/RemoteResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/ResourceBase$1.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/ResourceBase.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/ResourceCreationException.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/ResourceRemovalException.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/RoleCreationException.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/RoleRemovalException.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/SecurityApplicationInfo.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/SecurityRole.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/SecurityServiceException.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/SecurityServiceRuntimeException.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/ServerResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/TestResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/URLResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/WebServiceResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/service/WorkContextResource.class also in C:\win32app\WLS_10.3.4\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar
Integrating jar <--(1)/(32576)/(317)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.security.wls_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(32576)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.saaj_1.6.0.0.jar
Integrating jar <--(1)/(32778)/(202)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.saaj_1.6.0.0.jar
Integrating jar -->(1)/(32778)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.socket.api_1.2.0.0.jar
Integrating jar <--(1)/(32786)/(8)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.socket.api_1.2.0.0.jar
Integrating jar -->(1)/(32786)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.stax_1.8.0.0.jar
Integrating jar <--(1)/(33112)/(326)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.stax_1.8.0.0.jar
Integrating jar -->(1)/(33112)/C:\win32app\WLS_10.3.4\modules\com.bea.core.store_1.7.0.0.jar
Skipping native/aix/ppc64/libwlfileio3.so
Skipping native/aix/ppc/libwlfileio3.so
Skipping native/hpux11/IPF32/libwlfileio3.so
Skipping native/hpux11/IPF64/libwlfileio3.so
Skipping native/hpux11/PA_RISC64/libwlfileio3.sl
Skipping native/hpux11/PA_RISC/libwlfileio3.sl
Skipping native/linux/i686/libwlfileio3.so
Skipping native/linux/s390x/libwlfileio3.so
Skipping native/linux/x86_64/libwlfileio3.so
Skipping native/solaris/sparc64/libwlfileio3.so
Skipping native/solaris/sparc/libwlfileio3.so
Skipping native/solaris/x64/libwlfileio3.so
Skipping native/win/32/wlfileio3.dll
Skipping native/win/x64/wlfileio3.dll
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(33234)/(122)/C:\win32app\WLS_10.3.4\modules\com.bea.core.store_1.7.0.0.jar
Integrating jar -->(1)/(33234)/C:\win32app\WLS_10.3.4\modules\com.bea.core.store.gxa_1.6.0.0.jar
Integrating jar <--(1)/(33268)/(34)/C:\win32app\WLS_10.3.4\modules\com.bea.core.store.gxa_1.6.0.0.jar
Integrating jar -->(1)/(33268)/C:\win32app\WLS_10.3.4\modules\com.bea.core.store.admintool_1.2.0.0.jar
Integrating jar <--(1)/(33299)/(31)/C:\win32app\WLS_10.3.4\modules\com.bea.core.store.admintool_1.2.0.0.jar
Integrating jar -->(1)/(33299)/C:\win32app\WLS_10.3.4\modules\com.bea.core.store.jdbc_1.3.0.0.jar
Integrating jar <--(1)/(33332)/(33)/C:\win32app\WLS_10.3.4\modules\com.bea.core.store.jdbc_1.3.0.0.jar
Integrating jar -->(1)/(33332)/C:\win32app\WLS_10.3.4\modules\com.bea.core.transaction_2.7.0.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(33519)/(187)/C:\win32app\WLS_10.3.4\modules\com.bea.core.transaction_2.7.0.0.jar
Integrating jar -->(1)/(33519)/C:\win32app\WLS_10.3.4\modules\com.bea.core.utils.classloaders_1.8.0.0.jar
Integrating jar <--(1)/(33568)/(49)/C:\win32app\WLS_10.3.4\modules\com.bea.core.utils.classloaders_1.8.0.0.jar
Integrating jar -->(1)/(33568)/C:\win32app\WLS_10.3.4\modules\com.bea.core.utils.expressions_1.4.0.0.jar
Integrating jar <--(1)/(33582)/(14)/C:\win32app\WLS_10.3.4\modules\com.bea.core.utils.expressions_1.4.0.0.jar
Integrating jar -->(1)/(33582)/C:\win32app\WLS_10.3.4\modules\com.bea.core.utils.wrapper_1.4.0.0.jar
Integrating jar <--(1)/(33703)/(121)/C:\win32app\WLS_10.3.4\modules\com.bea.core.utils.wrapper_1.4.0.0.jar
Integrating jar -->(1)/(33703)/C:\win32app\WLS_10.3.4\modules\com.bea.core.timers_1.7.0.0.jar
Ignoring Duplicate Entry commonj/timers/CancelTimerListener.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry commonj/timers/StopTimerListener.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry commonj/timers/Timer.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry commonj/timers/TimerListener.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry commonj/timers/TimerManager.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(33727)/(24)/C:\win32app\WLS_10.3.4\modules\com.bea.core.timers_1.7.0.0.jar
Integrating jar -->(1)/(33727)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.workmanager_1.9.0.0.jar
Ignoring Duplicate Entry commonj/work/RemoteWorkItem.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry commonj/work/Work.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry commonj/work/WorkCompletedException.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry commonj/work/WorkEvent.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry commonj/work/WorkException.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry commonj/work/WorkItem.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry commonj/work/WorkListener.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry commonj/work/WorkManager.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry commonj/work/WorkRejectedException.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/common/ResourceException.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(33824)/(97)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.workmanager_1.9.0.0.jar
Integrating jar -->(1)/(33824)/C:\win32app\WLS_10.3.4\modules\com.bea.core.workarea_1.7.0.0.jar
Integrating jar <--(1)/(33857)/(33)/C:\win32app\WLS_10.3.4\modules\com.bea.core.workarea_1.7.0.0.jar
Integrating jar -->(1)/(33857)/C:\win32app\WLS_10.3.4\modules\com.bea.core.jatmi_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/wtc/WTCLogLocalizer.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/wtc/WTCLogLocalizerDetail.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/wtc/WTCLogger$MessageLoggerInitializer.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/wtc/WTCLogger.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/wtc/jatmi/Usysfl32.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/wtc/jatmi/Usysflds.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/wtc/jatmi/evt_mib.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/wtc/jatmi/islflds.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/wtc/jatmi/mkfldclass.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/wtc/jatmi/mkfldclass32.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/wtc/jatmi/secflds.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/wtc/jatmi/tmibflds.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/wtc/jatmi/tmqflds.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Ignoring Duplicate Entry weblogic/wtc/jatmi/tpadm.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(34034)/(177)/C:\win32app\WLS_10.3.4\modules\com.bea.core.jatmi_1.5.0.0.jar
Integrating jar -->(1)/(34034)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.security_1.0.0.0_6-1-0-0.jar
Ignoring Duplicate Entry weblogic/security/auth/callback/GroupCallback.class also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(34098)/(64)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.security_1.0.0.0_6-1-0-0.jar
Integrating jar -->(1)/(34098)/C:\win32app\WLS_10.3.4\modules\com.bea.core.nodemanager.plugin_1.3.0.0.jar
Integrating jar <--(1)/(34107)/(9)/C:\win32app\WLS_10.3.4\modules\com.bea.core.nodemanager.plugin_1.3.0.0.jar
Integrating jar -->(1)/(34107)/C:\win32app\WLS_10.3.4\modules\com.bea.core.jmspool_1.7.0.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(34155)/(48)/C:\win32app\WLS_10.3.4\modules\com.bea.core.jmspool_1.7.0.0.jar
Integrating jar -->(1)/(34155)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.lifecycle_1.4.0.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(34172)/(17)/C:\win32app\WLS_10.3.4\modules\com.bea.core.weblogic.lifecycle_1.4.0.0.jar
Integrating jar -->(1)/(34172)/C:\win32app\WLS_10.3.4\modules\com.bea.core.management.jmx_1.4.1.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(34249)/(77)/C:\win32app\WLS_10.3.4\modules\com.bea.core.management.jmx_1.4.1.0.jar
Integrating jar -->(1)/(34249)/C:\win32app\WLS_10.3.4\modules\com.bea.core.descriptor.j2ee_1.5.0.0.jar
Integrating jar <--(1)/(34405)/(156)/C:\win32app\WLS_10.3.4\modules\com.bea.core.descriptor.j2ee_1.5.0.0.jar
Integrating jar -->(1)/(34405)/C:\win32app\WLS_10.3.4\modules\com.bea.core.descriptor.j2ee.binding_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(40186)/(5781)/C:\win32app\WLS_10.3.4\modules\com.bea.core.descriptor.j2ee.binding_1.5.0.0.jar
Integrating jar -->(1)/(40186)/C:\win32app\WLS_10.3.4\modules\com.bea.core.repackaged.asm_1.0.0.0_3-2-0.jar
Integrating jar <--(1)/(40212)/(26)/C:\win32app\WLS_10.3.4\modules\com.bea.core.repackaged.asm_1.0.0.0_3-2-0.jar
Integrating jar -->(1)/(40212)/C:\win32app\WLS_10.3.4\modules\com.bea.core.redef_1.5.0.0.jar
Ignoring Duplicate Entry weblogic/i18n/i18n.properties also in C:\win32app\WLS_10.3.4\server\lib\weblogic.jar
Integrating jar <--(1)/(40293)/(81)/C:\win32app\WLS_10.3.4\modules\com.bea.core.redef_1.5.0.0.jar
Integrating jar -->(1)/(40293)/C:\win32app\WLS_10.3.4\modules\com.bea.core.http.pubsub.mbean_1.6.0.0.jar
Integrating jar <--(1)/(40297)/(4)/C:\win32app\WLS_10.3.4\modules\com.bea.core.http.pubsub.mbean_1.6.0.0.jar
Integrating jar -->(1)/(40297)/C:\win32app\WLS_10.3.4\modules\com.bea.core.diagnostics.accessor_1.5.0.0.jar
Integrating jar <--(1)/(40393)/(96)/C:\win32app\WLS_10.3.4\modules\com.bea.core.diagnostics.accessor_1.5.0.0.jar
Created new jar file: C:\win32app\WLS_10.3.4\server\lib\weblogic-maven-plugin.jar

As expected, a jar named weblogic-maven-plugin.jar should be available in the folder $WLS_HOME/server/lib/.

Now you have to upload this plugin on your Maven 3 repository, cf. the same link as above: Using the WebLogic Maven Plug-In for Deployment