You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2016/05/05 10:12:05 UTC

[5/9] wicket git commit: Disable arquillian for release profile

Disable arquillian for release profile


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/fadf279b
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/fadf279b
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/fadf279b

Branch: refs/heads/wicket-7.x
Commit: fadf279b935f26dfca29ddd2ecc38138aac98cf7
Parents: 52e8f38
Author: Martijn Dashorst <da...@apache.org>
Authored: Mon Apr 25 10:56:49 2016 +0200
Committer: Martijn Dashorst <da...@apache.org>
Committed: Mon Apr 25 10:59:13 2016 +0200

----------------------------------------------------------------------
 testing/wicket-arquillian/pom.xml | 37 ++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/fadf279b/testing/wicket-arquillian/pom.xml
----------------------------------------------------------------------
diff --git a/testing/wicket-arquillian/pom.xml b/testing/wicket-arquillian/pom.xml
index 7943672..832b280 100644
--- a/testing/wicket-arquillian/pom.xml
+++ b/testing/wicket-arquillian/pom.xml
@@ -334,5 +334,42 @@
             </plugin>
         </plugins>
 	</build>
+	<profiles>
+		<profile>
+			<id>release</id>
+			<build>
+				<plugins>
+				    <plugin>
+		                <groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-deploy-plugin</artifactId>
+						<configuration>
+							<skip>true</skip>
+						</configuration>
+					</plugin>
+				    <plugin>
+		                <groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-javadoc-plugin</artifactId>
+						<configuration>
+							<skip>true</skip>
+						</configuration>
+					</plugin>
+				    <plugin>
+		                <groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-release-plugin</artifactId>
+						<configuration>
+							<skip>true</skip>
+						</configuration>
+					</plugin>
+				    <plugin>
+		                <groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-surefire-plugin</artifactId>
+						<configuration>
+							<skip>true</skip>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
+	</profiles>
 </project>