You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/07/01 17:58:19 UTC

svn commit: r673112 - /myfaces/myfaces-build-tools/trunk/other/checkstyle-rules/pom.xml

Author: skitching
Date: Tue Jul  1 08:58:18 2008
New Revision: 673112

URL: http://svn.apache.org/viewvc?rev=673112&view=rev
Log:
Add a parent pom which defines distributionManagement so that "mvn deploy" works

Modified:
    myfaces/myfaces-build-tools/trunk/other/checkstyle-rules/pom.xml

Modified: myfaces/myfaces-build-tools/trunk/other/checkstyle-rules/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/myfaces-build-tools/trunk/other/checkstyle-rules/pom.xml?rev=673112&r1=673111&r2=673112&view=diff
==============================================================================
--- myfaces/myfaces-build-tools/trunk/other/checkstyle-rules/pom.xml (original)
+++ myfaces/myfaces-build-tools/trunk/other/checkstyle-rules/pom.xml Tue Jul  1 08:58:18 2008
@@ -1,6 +1,19 @@
 <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>
+
+  <parent>
+    <!--
+      - Note that this parent declaration is a little weird; the checkstyle plugin configuration in
+      - the parent pom references this artifact. Possibly the parent pom should be refactored into
+      - two parts; the bits we want to inherit here (distributionManagement, mailingLists etc) and
+      - a separate pom that references this artifact. However this works for now.
+      -->
+    <groupId>org.apache.myfaces</groupId>
+    <artifactId>myfaces</artifactId>
+    <version>5</version>
+  </parent>
+
   <groupId>org.apache.myfaces.buildtools</groupId>
   <artifactId>checkstyle-rules</artifactId>
   <packaging>jar</packaging>