Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-230 [created] 232735575


Ignite-230 Implementation


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

Branch: refs/heads/ignite-230
Commit: 2327355755215f5f458bb32b69222ea76cec447b
Parents: a66a89d
Author: avinogradov <avinogra...@gridgain.com>
Authored: Fri Feb 13 14:10:43 2015 +0300
Committer: avinogradov <avinogra...@gridgain.com>
Committed: Fri Feb 13 14:10:43 2015 +0300

----------------------------------------------------------------------
 modules/core/pom.xml | 10 ++++++++++
 pom.xml              | 19 +++++++++++++++++++
 2 files changed, 29 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/23273557/modules/core/pom.xml
----------------------------------------------------------------------
diff --git a/modules/core/pom.xml b/modules/core/pom.xml
index 0bf638a..481afe4 100644
--- a/modules/core/pom.xml
+++ b/modules/core/pom.xml
@@ -170,6 +170,16 @@
                     </execution>
                 </executions>
             </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <version>2.8.2</version>
+                <inherited>false</inherited>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/23273557/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index fd6d59f..ad3441f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1280,6 +1280,25 @@
                                     </target>
                                 </configuration>
                             </execution>
+
+                            <execution>
+                                <id>deploy-core</id>
+                                <goals>
+                                    <goal>run</goal>
+                                </goals>
+                                <phase>deploy</phase>
+                                <configuration>
+                                    <target>
+                                        <exec 
executable="${env.M2_HOME}/bin/mvn" failonerror="true">
+                                            <arg 
value="org.apache.maven.plugins:maven-deploy-plugin:2.8.2:deploy-file"/>
+                                            <arg 
value="-Durl=${distributionManagement.repository.url}"/>
+                                            <arg 
value="-DrepositoryId=${distributionManagement.repository.name}"/>
+                                            <arg 
value="-DpomFile=${basedir}/modules/core/pom.xml"/>
+                                            <arg 
value="-Dfile=${basedir}/target/ignite-core-${ignite.version}.jar"/>
+                                        </exec>
+                                    </target>
+                                </configuration>
+                            </execution>
                         </executions>
                     </plugin>
 

Reply via email to