You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ol...@apache.org on 2011/05/11 10:31:46 UTC

svn commit: r1101782 - in /incubator/ognl/trunk: ./ pom.xml

Author: olamy
Date: Wed May 11 08:31:45 2011
New Revision: 1101782

URL: http://svn.apache.org/viewvc?rev=1101782&view=rev
Log:
ignore ide files
add a ci profile to skip gpg which can break on ci servers


Modified:
    incubator/ognl/trunk/   (props changed)
    incubator/ognl/trunk/pom.xml

Propchange: incubator/ognl/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed May 11 08:31:45 2011
@@ -0,0 +1,8 @@
+target
+# idea
+ognl.iml
+#eclipse
+build
+.project
+.settings
+.classpath

Modified: incubator/ognl/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/ognl/trunk/pom.xml?rev=1101782&r1=1101781&r2=1101782&view=diff
==============================================================================
--- incubator/ognl/trunk/pom.xml (original)
+++ incubator/ognl/trunk/pom.xml Wed May 11 08:31:45 2011
@@ -182,4 +182,23 @@
         </snapshotRepository>
     </distributionManagement>
 
+  <profiles>
+    <profile>
+      <id>ci</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-gpg-plugin</artifactId>
+            <version>1.2</version>
+            <configuration>
+              <skip>true</skip>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
+
 </project>