You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2017/10/24 08:47:52 UTC

[45/50] [abbrv] ignite git commit: IGNITE-6718: Skipped upload of sqlline and compatibility modules into maven central during build. This closes #2911.

IGNITE-6718: Skipped upload of sqlline and compatibility modules into maven central during build. This closes #2911.


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

Branch: refs/heads/ignite-3478-tree
Commit: 8afeb67ffa71a2b3e97cfdfd7fc09b618a562a2e
Parents: 05e0762
Author: oleg-ostanin <oo...@gridgain.com>
Authored: Tue Oct 24 10:32:32 2017 +0300
Committer: devozerov <pp...@gmail.com>
Committed: Tue Oct 24 10:34:02 2017 +0300

----------------------------------------------------------------------
 modules/compatibility/pom.xml | 13 +++++++++++++
 modules/sqlline/pom.xml       |  9 +++++++++
 2 files changed, 22 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/8afeb67f/modules/compatibility/pom.xml
----------------------------------------------------------------------
diff --git a/modules/compatibility/pom.xml b/modules/compatibility/pom.xml
index 166848d..845d0cd 100644
--- a/modules/compatibility/pom.xml
+++ b/modules/compatibility/pom.xml
@@ -91,4 +91,17 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <version>2.8.2</version>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>

http://git-wip-us.apache.org/repos/asf/ignite/blob/8afeb67f/modules/sqlline/pom.xml
----------------------------------------------------------------------
diff --git a/modules/sqlline/pom.xml b/modules/sqlline/pom.xml
index bcb71ec..1c16a19 100644
--- a/modules/sqlline/pom.xml
+++ b/modules/sqlline/pom.xml
@@ -69,6 +69,15 @@
                     </execution>
                 </executions>
             </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <version>2.8.2</version>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>