You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@onami.apache.org by si...@apache.org on 2013/03/02 10:21:34 UTC

svn commit: r1451861 - /incubator/onami/trunk/scopes/pom.xml

Author: simonetripodi
Date: Sat Mar  2 09:21:34 2013
New Revision: 1451861

URL: http://svn.apache.org/r1451861
Log:
@releng
 * configured SCM, Issue and CI management
 * added missing site deployment plugins

Modified:
    incubator/onami/trunk/scopes/pom.xml

Modified: incubator/onami/trunk/scopes/pom.xml
URL: http://svn.apache.org/viewvc/incubator/onami/trunk/scopes/pom.xml?rev=1451861&r1=1451860&r2=1451861&view=diff
==============================================================================
--- incubator/onami/trunk/scopes/pom.xml (original)
+++ incubator/onami/trunk/scopes/pom.xml Sat Mar  2 09:21:34 2013
@@ -32,6 +32,40 @@
 
   <name>Apache Onami-Scopes</name>
   <description>Apache Onami-Scopes adds useful Scopes to Google Guice</description>
+  <inceptionYear>2013</inceptionYear>
+
+  <scm>
+    <url>https://svn.apache.org/viewvc/incubator/onami/trunk/scopes</url>
+    <connection>scm:svn:https://svn.apache.org/repos/asf/incubator/onami/trunk/scopes</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/onami/trunk/scopes</developerConnection>
+    <tag>HEAD</tag>
+  </scm>
+  <issueManagement>
+    <system>JIRA</system>
+    <url>https://issues.apache.org/jira/browse/ONAMI/component/12320395</url>
+  </issueManagement>
+  <ciManagement>
+    <system>Jenkins</system>
+    <url>https://builds.apache.org/job/Onami-Scopes/</url>
+    <notifiers>
+      <notifier>
+        <type>mail</type>
+        <sendOnError>true</sendOnError>
+        <sendOnFailure>true</sendOnFailure>
+        <sendOnSuccess>false</sendOnSuccess>
+        <sendOnWarning>false</sendOnWarning>
+        <configuration>
+          <address>dev@onami.incubator.apache.org</address>
+        </configuration>
+      </notifier>
+    </notifiers>
+  </ciManagement>
+  <distributionManagement>
+    <site>
+      <id>apache.website.svnpub</id>
+      <url>scm:svn:https://svn.apache.org/repos/asf/incubator/onami/site/scopes</url>
+    </site>
+  </distributionManagement>
 
   <dependencies>
     <dependency>
@@ -59,4 +93,55 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <configuration>
+          <locales>en</locales>
+          <skipDeploy>true</skipDeploy>
+        </configuration>
+        <executions>
+          <execution>
+            <id>attach-descriptor</id>
+            <goals>
+              <goal>attach-descriptor</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>stage-for-scm-publish</id>
+            <phase>post-site</phase>
+            <goals>
+              <goal>stage</goal>
+            </goals>
+            <configuration>
+              <skipDeploy>false</skipDeploy>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-scm-publish-plugin</artifactId>
+        <inherited>false</inherited>
+        <configuration>
+          <checkinComment>Onami Scheduler site deployment</checkinComment>
+          <checkoutDirectory>${user.home}/onami-sites/onami-scopes-site</checkoutDirectory>
+        </configuration>
+        <executions>
+          <execution>
+            <id>scm-publish</id>
+            <phase>site-deploy</phase>
+            <goals>
+              <goal>publish-scm</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>