Ok basic pom for building using appc follows (please note that you have to
install weblogic files in to your repo):

<project xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance";
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd";>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.mycompany.app</groupId>
  <artifactId>my-webapp</artifactId>
  <packaging>war</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>Maven Webapp Archetype</name>
  <url>http://maven.apache.org</url>


  <pluginRepositories>
  <pluginRepository>
    <id>snapshots</id>
    <url>http://snapshots.maven.codehaus.org/maven2</url>
  </pluginRepository>
</pluginRepositories>


  <build>
    <finalName>my-webapp</finalName>

    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>weblogic-maven-plugin</artifactId>
        <version>2.8.0-SNAPSHOT</version>
    <executions>
      <execution>
          <phase>package</phase>
              <goals>
             <goal>appc</goal>
          </goals>
      </execution>
    </executions>
      </plugin>
    </plugins>

  </build>
</project>

On 4/10/06, mjohnsonaz74 <[EMAIL PROTECTED]> wrote:
>
>
> Yes, this is a Maven 2 plugin.  "This plugin provides support for Weblogic
> 9.0 deployment capabilities as well as artifact (EAR, WAR, RAR, etc.)
> compilation within the maven 2 environment."  It also supports Weblogic
> 8.x.
> You can find this plugin at
> http://mojo.codehaus.org/weblogic-maven-plugin/index.html
>
> --MJ
> --
> View this message in context:
> http://www.nabble.com/-m2-Weblogic-J2EE-Plugin-t1408033.html#a3844699
> Sent from the Maven - Users forum at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to