You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by an...@apache.org on 2019/03/12 03:46:27 UTC

[ignite] branch master updated: IGNITE-11519 Pack configuration tests in test-jar. (#6253)

This is an automated email from the ASF dual-hosted git repository.

anovikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 890d056  IGNITE-11519 Pack configuration tests in test-jar. (#6253)
890d056 is described below

commit 890d05600894952b2fafb60b92e23c61b387d11e
Author: Vasiliy Sisko <vs...@gridgain.com>
AuthorDate: Tue Mar 12 10:46:17 2019 +0700

    IGNITE-11519 Pack configuration tests in test-jar. (#6253)
---
 modules/web-console/DEVNOTES.txt |  2 +-
 modules/web-console/pom.xml      | 12 ++++++++----
 2 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/modules/web-console/DEVNOTES.txt b/modules/web-console/DEVNOTES.txt
index e7c5eb3..6119d64 100644
--- a/modules/web-console/DEVNOTES.txt
+++ b/modules/web-console/DEVNOTES.txt
@@ -35,7 +35,7 @@ How to migrate model:
 Ignite Web Console Direct-Install Maven Build Instructions
 ==========================================================
 To build direct-install archive from sources run following command in Ignite project root folder:
-"mvn clean package -pl :ignite-web-console -am -P web-console,direct-install -DskipTests=true -DskipClientDocs -Dmaven.javadoc.skip=true"
+"mvn clean package -pl :ignite-web-console -am -P web-console,direct-install,lgpl -DskipTests=true -DskipClientDocs -Dmaven.javadoc.skip=true"
 
 Assembled archive can be found here: `modules/web-console/target/ignite-web-console-direct-install-*.zip`.
 
diff --git a/modules/web-console/pom.xml b/modules/web-console/pom.xml
index c72e32d..5e026ec 100644
--- a/modules/web-console/pom.xml
+++ b/modules/web-console/pom.xml
@@ -68,7 +68,7 @@
 
         <dependency>
             <groupId>org.apache.ignite</groupId>
-            <artifactId>ignite-hibernate_4.2</artifactId>
+            <artifactId>ignite-hibernate_5.1</artifactId>
             <version>${project.version}</version>
             <scope>test</scope>
         </dependency>
@@ -410,9 +410,13 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-jar-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                </configuration>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>test-jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
             </plugin>
 
             <plugin>