dev@glassfish.java.net

Re: svn commit: r34784 - trunk/v3/tests/embedded/maven-plugin/simple

From: Jerome Dochez <Jerome.Dochez_at_Sun.COM>
Date: Tue, 01 Dec 2009 12:00:10 -0800

it's obviously fine in time crunch like this but please remember to
clean this up after FCS, no binary should be checked in, you should
build the war as part of the test itself.

thanks, jerome

On Dec 1, 2009, at 11:57 AM, sirajg_at_dev.java.net wrote:

> Author: sirajg
> Date: 2009-12-01 19:57:02+0000
> New Revision: 34784
>
> Added:
> trunk/v3/tests/embedded/maven-plugin/simple/
> trunk/v3/tests/embedded/maven-plugin/simple/hello.war (contents,
> props changed)
> trunk/v3/tests/embedded/maven-plugin/simple/pom.xml
>
> Log:
> add a simple test case for prebuilt war
>
>
> Added: trunk/v3/tests/embedded/maven-plugin/simple/hello.war
> Url: https://glassfish-svn.dev.java.net/source/browse/glassfish-svn/trunk/v3/tests/embedded/maven-plugin/simple/hello.war?view=auto&rev=34784
> =
> =
> =
> =
> =
> =
> =
> =
> ======================================================================
> Binary file. No diff available.
>
> Added: trunk/v3/tests/embedded/maven-plugin/simple/pom.xml
> Url: https://glassfish-svn.dev.java.net/source/browse/glassfish-svn/trunk/v3/tests/embedded/maven-plugin/simple/pom.xml?view=auto&rev=34784
> =
> =
> =
> =
> =
> =
> =
> =
> ======================================================================
> --- (empty file)
> +++ trunk/v3/tests/embedded/maven-plugin/simple/pom.xml 2009-12-01
> 19:57:02+0000
> @@ -0,0 +1,96 @@
> +<?xml version="1.0" encoding="UTF-8"?>
> +<!--
> +/*
> +* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
> +*
> +* Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
> +*
> +* The contents of this file are subject to the terms of either the
> GNU
> +* General Public License Version 2 only ("GPL") or the Common
> Development
> +* and Distribution License("CDDL") (collectively, the "License").
> You
> +* may not use this file except in compliance with the License. You
> can obtain
> +* a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
> +* or glassfish/bootstrap/legal/LICENSE.txt. See the License for
> the specific
> +* language governing permissions and limitations under the License.
> +*
> +* When distributing the software, include this License Header
> Notice in each
> +* file and include the License file at glassfish/bootstrap/legal/
> LICENSE.txt.
> +* Sun designates this particular file as subject to the "Classpath"
> exception
> +* as provided by Sun in the GPL Version 2 section of the License
> file that
> +* accompanied this code. If applicable, add the following below
> the License
> +* Header, with the fields enclosed by brackets [] replaced by your
> own
> +* identifying information: "Portions Copyrighted [year]
> +* [name of copyright owner]"
> +*
> +* Contributor(s):
> +*
> +* If you wish your version of this file to be governed by only the
> CDDL or
> +* only the GPL Version 2, indicate your decision by adding
> "[Contributor]
> +* elects to include this software in this distribution under the
> [CDDL or GPL
> +* Version 2] license." If you don't indicate a single choice of
> license, a
> +* recipient has the option to distribute your version of this file
> under
> +* either the CDDL, the GPL Version 2 or to extend the choice of
> license to
> +* its licensees as provided above. However, if you add GPL Version
> 2 code
> +* and therefore, elected the GPL Version 2 license, then the option
> applies
> +* only if the new code is made subject to such option by the
> copyright
> +* holder.
> +*/
> +-->
> +<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>
> + <artifactId>maven-glassfish-plugin-tester-deploy</artifactId>
> + <packaging>pom</packaging>
> + <version>3.0-SNAPSHOT</version>
> + <parent>
> + <groupId>org.glassfish</groupId>
> + <artifactId>glassfish-parent</artifactId>
> + <version>3.0-SNAPSHOT</version>
> + </parent>
> +
> + <name>Maven deploy test</name>
> +
> + <build>
> +
> + <defaultGoal>install</defaultGoal>
> + <plugins>
> + <plugin>
> + <groupId>org.glassfish</groupId>
> + <artifactId>maven-embedded-glassfish-plugin</artifactId>
> + <configuration>
> + <goalPrefix>glassfish</goalPrefix>
> + <app>hello.war</app>
> + <port>8080</port>
> + </configuration>
> +
> + <executions>
> + <execution>
> + <phase>install</phase>
> + <goals>
> + <goal>run</goal>
> + </goals>
> + </execution>
> + </executions>
> + </plugin>
> + </plugins>
> +
> + </build>
> +
> + <dependencies>
> + <dependency>
> + <groupId>org.apache.maven</groupId>
> + <artifactId>maven-plugin-api</artifactId>
> + <version>2.0</version>
> + </dependency>
> + <dependency>
> + <groupId>org.apache.maven</groupId>
> + <artifactId>maven-project</artifactId>
> + <version>2.0</version>
> + </dependency>
> +
> + </dependencies>
> +
> +
> +
> +
> +</project>
> +
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: commits-unsubscribe_at_glassfish-svn.dev.java.net
> For additional commands, e-mail: commits-help_at_glassfish-svn.dev.java.net
>