You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2009/04/22 04:15:35 UTC

svn commit: r767346 - /openejb/trunk/openejb3/examples/webservice-security/pom.xml

Author: dblevins
Date: Wed Apr 22 02:15:34 2009
New Revision: 767346

URL: http://svn.apache.org/viewvc?rev=767346&view=rev
Log:
Yanked some unneeded configuration.  Added the "deploy to null" technique so 'mvn clean deploy' completes when executed from the root.

Modified:
    openejb/trunk/openejb3/examples/webservice-security/pom.xml

Modified: openejb/trunk/openejb3/examples/webservice-security/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/examples/webservice-security/pom.xml?rev=767346&r1=767345&r2=767346&view=diff
==============================================================================
--- openejb/trunk/openejb3/examples/webservice-security/pom.xml (original)
+++ openejb/trunk/openejb3/examples/webservice-security/pom.xml Wed Apr 22 02:15:34 2009
@@ -60,17 +60,6 @@
   </dependencies>
   <build>
     <defaultGoal>install</defaultGoal>
-
-    <pluginManagement>
-      <plugins>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-surefire-plugin</artifactId>
-          <version>2.2</version>
-        </plugin>
-      </plugins>
-    </pluginManagement>
-
     <plugins>
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
@@ -79,29 +68,24 @@
           <target>1.5</target>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-clover-plugin</artifactId>
-        <configuration>
-          <jdk>1.5</jdk>
-          <excludes>
-            <exclude>**/package-info.java</exclude>
-          </excludes>
-        </configuration>
-        <executions>
-          <execution>
-            <id>site</id>
-            <phase>pre-site</phase>
-            <goals>
-              <goal>instrument</goal>
-              <goal>aggregate</goal>
-              <goal>save-history</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
     </plugins>
   </build>
 
+  <!--
+  This section allows you to configure where to publish libraries for sharing.
+  It is not required and may be deleted.  For more information see:
+  http://maven.apache.org/plugins/maven-deploy-plugin/
+  -->
+  <distributionManagement>
+    <repository>
+      <id>localhost</id>
+      <url>file://${basedir}/target/repo/</url>
+    </repository>
+    <snapshotRepository>
+      <id>localhost</id>
+      <url>file://${basedir}/target/snapshot-repo/</url>
+    </snapshotRepository>
+  </distributionManagement>
+
 </project>