I'm using the weblogic maven plugin to deploy my app on the server.
I'm not sure if I've done a mistake at the configuration.
The first maven build of the day takes a long time (~30 minutes) because the plugin seems to have a huge amount of dependencies to the complete weblogic stack and updates the maven-metadata.xml
files.
My configuration looks like this:
<plugin>
<groupId>com.oracle.weblogic</groupId>
<artifactId>weblogic-maven-plugin</artifactId>
<version>12.1.3-0-0</version>
<configuration>
<adminurl>t3://localhost:7001</adminurl>
<user>admin</user>
<password>pass</password>
<upload>true</upload>
<action>deploy</action>
<remote>false</remote>
<verbose>true</verbose>
<source>${project.build.directory}/${project.build.finalName}.${project.packaging}</source>
<name>${project.build.finalName}</name>
<targets>myserver</targets>
</configuration>
</plugin>
Maybe our Nexus-repo is too slow. ;-)
Thanks in advance