# sprint-1 Removed GridGain from readme files.
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/029e96b2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/029e96b2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/029e96b2 Branch: refs/heads/ignite-112 Commit: 029e96b28647ae9b4b31e4afb941d6959c180d99 Parents: 673d11b Author: Dmitiry Setrakyan <dsetrak...@gridgain.com> Authored: Thu Jan 29 05:34:01 2015 +0000 Committer: Dmitiry Setrakyan <dsetrak...@gridgain.com> Committed: Thu Jan 29 05:34:01 2015 +0000 ---------------------------------------------------------------------- assembly/libs/readme.txt | 111 +++++++++--------------- examples/config/filesystem/readme.txt | 4 +- examples/config/hibernate/readme.txt | 4 +- examples/config/servlet/readme.txt | 2 +- ipc/readme.txt | 4 +- ipc/shmem/readme.txt | 10 +-- modules/aop/readme.txt | 12 +-- modules/aws/readme.txt | 12 +-- modules/core/src/test/resources/readme.txt | 2 +- modules/email/readme.txt | 12 +-- modules/hadoop/readme.txt | 12 +-- modules/hibernate/readme.txt | 14 +-- modules/indexing/readme.txt | 12 +-- modules/jcl/readme.txt | 12 +-- modules/jta/readme.txt | 12 +-- modules/log4j/readme.txt | 12 +-- modules/rest-http/readme.txt | 12 +-- modules/scalar/readme.txt | 8 +- modules/schedule/readme.txt | 12 +-- modules/slf4j/readme.txt | 12 +-- modules/spring/readme.txt | 12 +-- modules/ssh/readme.txt | 12 +-- modules/urideploy/readme.txt | 12 +-- modules/web/readme.txt | 16 ++-- 24 files changed, 157 insertions(+), 186 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/assembly/libs/readme.txt ---------------------------------------------------------------------- diff --git a/assembly/libs/readme.txt b/assembly/libs/readme.txt index ef6aed2..7595da9 100644 --- a/assembly/libs/readme.txt +++ b/assembly/libs/readme.txt @@ -1,14 +1,14 @@ -GridGain Dependencies ---------------------- +Apache Ignite Dependencies +-------------------------- -Current folder contains JAR files for all GridGain modules along with their dependencies. +Current folder contains JAR files for all Apache Ignite modules along with their dependencies. When node is started using 'ggstart.{sh|bat}' script, all JARs and classes located in 'libs' folder and all its sub-folders except 'optional' are added to classpath of the node. -By default, only GridGain core JAR and a minimum set of modules is enabled, while other +By default, only Apache Ignite core JAR and a minimum set of modules is enabled, while other modules are located in 'optional' folder and therefore disabled. -To enable any of optional GridGain modules when starting a standalone node, +To enable any of optional Ignite modules when starting a standalone node, move corresponding module folder from 'libs/optional' to 'libs' before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -17,43 +17,15 @@ If you need to add your own classes to classpath of the node (e.g., task classes to 'libs' folder. You can create a subfolder for convenience as well. -Importing GridGain Dependencies In Maven Project +Importing Ignite Dependencies In Maven Project ------------------------------------------------ If you are using Maven to manage dependencies of your project, there are two options: -1. Import one of the following predefined GridGain editions: - - gridgain-hpc - - gridgain-datagrid - - gridgain-streaming - - gridgain-fabric (all inclusive) +1. Import fabric edition: + - ignite-fabric (all inclusive) -2. Or import individual GridGain modules a la carte. - - -Importing GridGain Edition Dependencies ---------------------------------------- - -When importing editions, each edition automatically imports GridGain core module and -a set of additional modules needed for this edition to work. Specifically: - -- gridgain-hpc - - gridgain-core - - gridgain-spring (optional, add if you plan to use Spring configuration) - -- gridgain-datagrid - - gridgain-core - - gridgain-indexing (optional, add if you need SQL indexing) - - gridgain-spring (optional, add if you plan to use Spring configuration) - -- gridgain-streaming - - gridgain-core - - gridgain-spring (optional, add if you plan to use Spring configuration) - -- gridgain-fabric - - (all dependencies included in other editions) - -Here is how 'gridgain-datagrid' can be added to your POM file (replace '${ignite.version}' +Here is how 'ignite-fabric' can be added to your POM file (replace '${ignite.version}' with actual Ignite version you are interested in): <project xmlns="http://maven.apache.org/POM/4.0.0" @@ -64,8 +36,8 @@ with actual Ignite version you are interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-datagrid</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-fabric</artifactId> <version>${ignite.version}</version> </dependency> ... @@ -73,12 +45,11 @@ with actual Ignite version you are interested in): ... </project> +2. Or import individual Apache Ignite modules a la carte. -Importing Individual Modules A La Carte ---------------------------------------- -Alternatively you can import GridGain modules a la carte, one by one. -The only required module is 'gridgain-core', all others are optional. +Alternatively you can import Ignite modules a la carte, one by one. +The only required module is 'ignite-core', all others are optional. Here is how it can be imported into your POM file: <project xmlns="http://maven.apache.org/POM/4.0.0" @@ -89,8 +60,8 @@ Here is how it can be imported into your POM file: <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-core</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-core</artifactId> <version>${ignite.version}</version> </dependency> ... @@ -101,27 +72,27 @@ Here is how it can be imported into your POM file: All optional modules can be imported just like the core module, but with different artifact IDs. The following modules are available: -- gridgain-spring (for Spring-based configuration support) -- gridgain-indexing (for SQL querying and indexing) -- gridgain-hibernate (for Hibernate integration) -- gridgain-web (for Web Sessions Clustering) -- gridgain-schedule (for Cron-based task scheduling) -- gridgain-logj4 (for Log4j logging) -- gridgain-jcl (for Apache Commons logging) -- gridgain-jta (for XA integration) -- gridgain-hadoop (for Apache Hadoop Accelerator) -- gridgain-rest-http (for HTTP REST messages) -- gridgain-scalar (for GridGain Scala API) -- gridgain-sl4j (for SL4J logging) -- gridgain-ssh (for starting grid nodes on remote machines) -- gridgain-urideploy (for URI-based deployment) -- gridgain-aws (for seemless cluster discovery on AWS S3) -- gridgain-email (for email alerts) -- gridgain-aop (for AOP-based grid-enabling) -- gridgain-visor-console (open source command line management and monitoring tool) - -For example, if you want to use GridGain Spring-based configuration, -you should add 'gridgain-spring' module like this: +- ignite-spring (for Spring-based configuration support) +- ignite-indexing (for SQL querying and indexing) +- ignite-hibernate (for Hibernate integration) +- ignite-web (for Web Sessions Clustering) +- ignite-schedule (for Cron-based task scheduling) +- ignite-logj4 (for Log4j logging) +- ignite-jcl (for Apache Commons logging) +- ignite-jta (for XA integration) +- ignite-hadoop (for Apache Hadoop Accelerator) +- ignite-rest-http (for HTTP REST messages) +- ignite-scalar (for ignite Scala API) +- ignite-sl4j (for SL4J logging) +- ignite-ssh (for starting grid nodes on remote machines) +- ignite-urideploy (for URI-based deployment) +- ignite-aws (for seemless cluster discovery on AWS S3) +- ignite-email (for email alerts) +- ignite-aop (for AOP-based grid-enabling) +- ignite-visor-console (open source command line management and monitoring tool) + +For example, if you want to use Apache Ignite Spring-based configuration, +you should add 'ignite-spring' module like this: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" @@ -132,15 +103,15 @@ you should add 'gridgain-spring' module like this: ... <!-- Core module. --> <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-core</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-core</artifactId> <version>${ignite.version}</version> </dependency> <!-- Optional. --> <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-spring</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-spring</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/examples/config/filesystem/readme.txt ---------------------------------------------------------------------- diff --git a/examples/config/filesystem/readme.txt b/examples/config/filesystem/readme.txt index e4e74ec..c69b8fd 100644 --- a/examples/config/filesystem/readme.txt +++ b/examples/config/filesystem/readme.txt @@ -2,7 +2,7 @@ FileSystem Configuration Example -------------------------------- This folder contains configuration files for GGFS examples located in -org.gridgain.examples.ggfs package. +org.apache.ignite.examples.ggfs package. -- example-ggfs.xml file is used to start GridGain nodes with GGFS configured +- example-ggfs.xml file is used to start Apache Ignite nodes with GGFS configured - core-site.xml file is used to run Hadoop FS driver over GGFS http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/examples/config/hibernate/readme.txt ---------------------------------------------------------------------- diff --git a/examples/config/hibernate/readme.txt b/examples/config/hibernate/readme.txt index 216a6ec..5b7ab29 100644 --- a/examples/config/hibernate/readme.txt +++ b/examples/config/hibernate/readme.txt @@ -2,7 +2,7 @@ Hibernate L2 Cache Configuration Example ---------------------------------------- This folder contains example-hibernate-L2-cache.xml file that demonstrates -how to configure Hibernate to use GridGain cache as an L2 cache provider. +how to configure Hibernate to use Apache Ignite cache as an L2 cache provider. -This file is also used in Hibernate example located in org.gridgain.examples.datagrid.hibernate +This file is also used in Hibernate example located in org.apache.ignite.examples.datagrid.hibernate package. http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/examples/config/servlet/readme.txt ---------------------------------------------------------------------- diff --git a/examples/config/servlet/readme.txt b/examples/config/servlet/readme.txt index ed8785e..9bd1538 100644 --- a/examples/config/servlet/readme.txt +++ b/examples/config/servlet/readme.txt @@ -2,7 +2,7 @@ Servlet Configuration Example ----------------------------- This folder contains web.xml file that demonstrates how to configure any servlet container -to start a GridGain node inside a Web application. +to start a Apache Ignite node inside a Web application. For more information on available configuration properties, etc. refer to our documentation: http://doc.gridgain.org/latest/Web+Sessions+Caching http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/ipc/readme.txt ---------------------------------------------------------------------- diff --git a/ipc/readme.txt b/ipc/readme.txt index dadece2..3adc0dc 100644 --- a/ipc/readme.txt +++ b/ipc/readme.txt @@ -1,4 +1,4 @@ -GridGain IPC +Apache Ignite IPC ------------------- -Contains different Inter-process communication (IPC) implementations for GridGain. +Contains different Inter-process communication (IPC) implementations for Apache Ignite. http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/ipc/shmem/readme.txt ---------------------------------------------------------------------- diff --git a/ipc/shmem/readme.txt b/ipc/shmem/readme.txt index b0abe37..a21cbf8 100644 --- a/ipc/shmem/readme.txt +++ b/ipc/shmem/readme.txt @@ -1,7 +1,7 @@ -GridGain Shared memory IPC library -------------------- +Apache Ignite Shared memory IPC library +--------------------------------------- -GridGain shared memory IPC library implement exchange via shared memory for GridGain. +Apache Ignite shared memory IPC library implement exchange via shared memory for Apache Ignite. Building on Linux and Mac OS X ------------------- @@ -22,9 +22,9 @@ to see all available command line options. Once the configure script finishes, y This will build and install the shared memory library and the headers into the default location on your system (which is usually '/usr/local'). -Usage with GridGain +Usage with Apache Ignite ------------------- Copy compiled library to folder that already listed in 'java.library.path' -with name in form: 'libggshmem-<gridgain-version>.<extention>'. +with name in form: 'libggshmem-<ignite-version>.<extention>'. Note: Grid should be restarted. http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/aop/readme.txt ---------------------------------------------------------------------- diff --git a/modules/aop/readme.txt b/modules/aop/readme.txt index b72ad81..75c5f49 100644 --- a/modules/aop/readme.txt +++ b/modules/aop/readme.txt @@ -1,10 +1,10 @@ -GridGain AOP Module -------------------- +Apache Ignite AOP Module +------------------------ -GridGain AOP module provides capability to turn any Java method to a distributed closure by +Apache Ignite AOP module provides capability to turn any Java method to a distributed closure by adding @Gridify annotation to it. -To enable AOP module when starting a standalone node, move 'optional/gridgain-aop' folder to +To enable AOP module when starting a standalone node, move 'optional/ignite-aop' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -23,8 +23,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-aop</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-aop</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/aws/readme.txt ---------------------------------------------------------------------- diff --git a/modules/aws/readme.txt b/modules/aws/readme.txt index faa80a4..317369c 100644 --- a/modules/aws/readme.txt +++ b/modules/aws/readme.txt @@ -1,9 +1,9 @@ -GridGain AWS Module -------------------- +Apache Ignite AWS Module +------------------------ -GridGain AWS module provides S3-based implementations of checkpoint SPI and IP finder for TCP discovery. +Apache Ignite AWS module provides S3-based implementations of checkpoint SPI and IP finder for TCP discovery. -To enable AWS module when starting a standalone node, move 'optional/gridgain-aws' folder to +To enable AWS module when starting a standalone node, move 'optional/ignite-aws' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -22,8 +22,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-aws</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-aws</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/core/src/test/resources/readme.txt ---------------------------------------------------------------------- diff --git a/modules/core/src/test/resources/readme.txt b/modules/core/src/test/resources/readme.txt index c8664e0..195d655 100644 --- a/modules/core/src/test/resources/readme.txt +++ b/modules/core/src/test/resources/readme.txt @@ -1,5 +1,5 @@ This folder is created for test GridTaskUriDeploymentDeadlockSelfTest. It contains helloworld.gar and helloworld1.gar -which are the same and were copied from GridGain GAR example. +which are the same and were copied from Apache Ignite GAR example. We put two files here to have a collision and make deployment SPI to unregister class loaders. http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/email/readme.txt ---------------------------------------------------------------------- diff --git a/modules/email/readme.txt b/modules/email/readme.txt index 789ebd6..9fd9108 100644 --- a/modules/email/readme.txt +++ b/modules/email/readme.txt @@ -1,11 +1,11 @@ -GridGain Email Module ---------------------- +Apache Ignite Email Module +-------------------------- -GridGain email module enables GridGain to send emails in critical situations such as license +Apache Ignite email module enables Apache Ignite to send emails in critical situations such as license expiration or fatal system errors (this should be also configured via 'GridConfiguration.setSmtpXXX(..)' configuration properties). -To enable email module when starting a standalone node, move 'optional/gridgain-email' folder to +To enable email module when starting a standalone node, move 'optional/ignite-email' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -24,8 +24,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-email</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-email</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/hadoop/readme.txt ---------------------------------------------------------------------- diff --git a/modules/hadoop/readme.txt b/modules/hadoop/readme.txt index 5fcc040..0212371 100644 --- a/modules/hadoop/readme.txt +++ b/modules/hadoop/readme.txt @@ -1,10 +1,10 @@ -GridGain Hadoop Module ----------------------- +Apache Ignite Hadoop Module +--------------------------- -GridGain Hadoop module provides In-Memory MapReduce engine and driver to use GGFS as Hadoop file system +Apache Ignite Hadoop module provides In-Memory MapReduce engine and driver to use GGFS as Hadoop file system which are 100% compatible with HDFS and YARN. -To enable Hadoop module when starting a standalone node, move 'optional/gridgain-hadoop' folder to +To enable Hadoop module when starting a standalone node, move 'optional/ignite-hadoop' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -23,8 +23,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-hadoop</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-hadoop</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/hibernate/readme.txt ---------------------------------------------------------------------- diff --git a/modules/hibernate/readme.txt b/modules/hibernate/readme.txt index e1a913a..7b4b70a 100644 --- a/modules/hibernate/readme.txt +++ b/modules/hibernate/readme.txt @@ -1,10 +1,10 @@ -GridGain Hibernate Module -------------------------- +Apache Ignite Hibernate Module +------------------------------ -GridGain Hibernate module provides Hibernate second-level cache (L2 cache) implementation based -on GridGain In-Memory Data Grid. +Apache Ignite Hibernate module provides Hibernate second-level cache (L2 cache) implementation based +on Apache Ignite In-Memory Data Grid. -To enable Hibernate module when starting a standalone node, move 'optional/gridgain-hibernate' folder to +To enable Hibernate module when starting a standalone node, move 'optional/ignite-hibernate' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -23,8 +23,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-hibernate</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-hibernate</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/indexing/readme.txt ---------------------------------------------------------------------- diff --git a/modules/indexing/readme.txt b/modules/indexing/readme.txt index 9e87ede..699b2ee 100644 --- a/modules/indexing/readme.txt +++ b/modules/indexing/readme.txt @@ -1,10 +1,10 @@ -GridGain Indexing Module ------------------------- +Apache Ignite Indexing Module +----------------------------- -GridGain indexing module provides capabilities to index cache context and run SQL, full text or +Apache Ignite indexing module provides capabilities to index cache context and run SQL, full text or individual field queries against these indexes. -To enable indexing module when starting a standalone node, move 'optional/gridgain-indexing' folder to +To enable indexing module when starting a standalone node, move 'optional/ignite-indexing' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -23,8 +23,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-indexing</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-indexing</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/jcl/readme.txt ---------------------------------------------------------------------- diff --git a/modules/jcl/readme.txt b/modules/jcl/readme.txt index 878c7d3..0f713dc 100644 --- a/modules/jcl/readme.txt +++ b/modules/jcl/readme.txt @@ -1,10 +1,10 @@ -GridGain JCL Module -------------------- +Apache Ignite JCL Module +------------------------ -GridGain JCL module provides GridLogger implementation that can delegate to any logger based +Apache Ignite JCL module provides GridLogger implementation that can delegate to any logger based on Jakarta Commons Logging (JCL). -To enable JCL module when starting a standalone node, move 'optional/gridgain-jcl' folder to +To enable JCL module when starting a standalone node, move 'optional/ignite-jcl' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -23,8 +23,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-jcl</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-jcl</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/jta/readme.txt ---------------------------------------------------------------------- diff --git a/modules/jta/readme.txt b/modules/jta/readme.txt index 67cf2ea..5893824 100644 --- a/modules/jta/readme.txt +++ b/modules/jta/readme.txt @@ -1,9 +1,9 @@ -GridGain JTA Module -------------------- +Apache Ignite JTA Module +------------------------ -GridGain JTA module provides capabilities to integrate GridGain cache transactions with JTA. +Apache Ignite JTA module provides capabilities to integrate Apache Ignite cache transactions with JTA. -To enable JTA module when starting a standalone node, move 'optional/gridgain-jta' folder to +To enable JTA module when starting a standalone node, move 'optional/ignite-jta' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -22,8 +22,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-jta</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-jta</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/log4j/readme.txt ---------------------------------------------------------------------- diff --git a/modules/log4j/readme.txt b/modules/log4j/readme.txt index b03294e..8d8ff4f 100644 --- a/modules/log4j/readme.txt +++ b/modules/log4j/readme.txt @@ -1,9 +1,9 @@ -GridGain Log4J Module ---------------------- +Apache Ignite Log4J Module +-------------------------- -GridGain Log4J module provides GridLogger implementation based on Apache Log4J. +Apache Ignite Log4J module provides GridLogger implementation based on Apache Log4J. -To enable Log4J module when starting a standalone node, move 'optional/gridgain-log4j' folder to +To enable Log4J module when starting a standalone node, move 'optional/ignite-log4j' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -22,8 +22,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-log4j</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-log4j</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/rest-http/readme.txt ---------------------------------------------------------------------- diff --git a/modules/rest-http/readme.txt b/modules/rest-http/readme.txt index 07c35ad..139f287 100644 --- a/modules/rest-http/readme.txt +++ b/modules/rest-http/readme.txt @@ -1,10 +1,10 @@ -GridGain REST-HTTP Module -------------------------- +Apache Ignite REST-HTTP Module +------------------------------ -GridGain REST-HTTP module provides Jetty-based server which can be used to execute tasks and/or cache commands +Apache Ignite REST-HTTP module provides Jetty-based server which can be used to execute tasks and/or cache commands in grid using REST approach via HTTP protocol. -To enable REST-HTTP module when starting a standalone node, move 'optional/gridgain-rest-http' folder to +To enable REST-HTTP module when starting a standalone node, move 'optional/ignite-rest-http' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -23,8 +23,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-rest-http</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-rest-http</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/scalar/readme.txt ---------------------------------------------------------------------- diff --git a/modules/scalar/readme.txt b/modules/scalar/readme.txt index 6f32a08..88bb921 100644 --- a/modules/scalar/readme.txt +++ b/modules/scalar/readme.txt @@ -1,9 +1,9 @@ -GridGain Scalar Module ----------------------- +Apache Ignite Scalar Module +--------------------------- -GridGain Scalar module provides Scala-based DSL with extensions and shortcuts for GridGain API. +Apache Ignite Scalar module provides Scala-based DSL with extensions and shortcuts for Apache Ignite API. -To enable Scalar module when starting a standalone node, move 'optional/gridgain-scalar' folder to +To enable Scalar module when starting a standalone node, move 'optional/ignite-scalar' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/schedule/readme.txt ---------------------------------------------------------------------- diff --git a/modules/schedule/readme.txt b/modules/schedule/readme.txt index 43c01e3..ba51203 100644 --- a/modules/schedule/readme.txt +++ b/modules/schedule/readme.txt @@ -1,9 +1,9 @@ -GridGain Schedule Module ------------------------- +Apache Ignite Schedule Module +----------------------------- -GridGain Schedule module provides functionality for scheduling jobs locally using UNIX cron-based syntax. +Apache Ignite Schedule module provides functionality for scheduling jobs locally using UNIX cron-based syntax. -To enable Schedule module when starting a standalone node, move 'optional/gridgain-schedule' folder to +To enable Schedule module when starting a standalone node, move 'optional/ignite-schedule' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -22,8 +22,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-schedule</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-schedule</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/slf4j/readme.txt ---------------------------------------------------------------------- diff --git a/modules/slf4j/readme.txt b/modules/slf4j/readme.txt index c4255ae..c6fadc3 100644 --- a/modules/slf4j/readme.txt +++ b/modules/slf4j/readme.txt @@ -1,9 +1,9 @@ -GridGain SLF4J Module ---------------------- +Apache Ignite SLF4J Module +-------------------------- -GridGain SLF4J module provides GridLogger implementation based on SLF4J. +Apache Ignite SLF4J module provides GridLogger implementation based on SLF4J. -To enable SLF4J module when starting a standalone node, move 'optional/gridgain-slf4j' folder to +To enable SLF4J module when starting a standalone node, move 'optional/ignite-slf4j' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -22,8 +22,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-slf4j</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-slf4j</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/spring/readme.txt ---------------------------------------------------------------------- diff --git a/modules/spring/readme.txt b/modules/spring/readme.txt index 6b9cbd8..93eade9 100644 --- a/modules/spring/readme.txt +++ b/modules/spring/readme.txt @@ -1,10 +1,10 @@ -GridGain Spring Module ----------------------- +Apache Ignite Spring Module +--------------------------- -GridGain Spring module provides resources injection capabilities and parser for Spring-based +Apache Ignite Spring module provides resources injection capabilities and parser for Spring-based configuration XML files. -To enable Spring module when starting a standalone node, move 'optional/gridgain-spring' folder to +To enable Spring module when starting a standalone node, move 'optional/ignite-spring' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -23,8 +23,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-spring</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-spring</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/ssh/readme.txt ---------------------------------------------------------------------- diff --git a/modules/ssh/readme.txt b/modules/ssh/readme.txt index 073ae51..e69c896 100644 --- a/modules/ssh/readme.txt +++ b/modules/ssh/readme.txt @@ -1,9 +1,9 @@ -GridGain SSH Module -------------------- +Apache Ignite SSH Module +------------------------ -GridGain SSH module provides capabilities to start GridGain nodes on remote machines via SSH. +Apache Ignite SSH module provides capabilities to start Apache Ignite nodes on remote machines via SSH. -To enable SSH module when starting a standalone node, move 'optional/gridgain-ssh' folder to +To enable SSH module when starting a standalone node, move 'optional/ignite-ssh' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -22,8 +22,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-ssh</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-ssh</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/urideploy/readme.txt ---------------------------------------------------------------------- diff --git a/modules/urideploy/readme.txt b/modules/urideploy/readme.txt index b334838..a641ddf 100644 --- a/modules/urideploy/readme.txt +++ b/modules/urideploy/readme.txt @@ -1,10 +1,10 @@ -GridGain URI Deploy Module --------------------------- +Apache Ignite URI Deploy Module +------------------------------- -GridGain URI Deploy module provides capabilities to deploy tasks from different sources like +Apache Ignite URI Deploy module provides capabilities to deploy tasks from different sources like File System, HTTP, FTP, or even Email. -To enable URI Deploy module when starting a standalone node, move 'optional/gridgain-urideploy' folder to +To enable URI Deploy module when starting a standalone node, move 'optional/ignite-urideploy' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -23,8 +23,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-urideploy</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-urideploy</artifactId> <version>${ignite.version}</version> </dependency> ... http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/029e96b2/modules/web/readme.txt ---------------------------------------------------------------------- diff --git a/modules/web/readme.txt b/modules/web/readme.txt index 86c8620..5acdf40 100644 --- a/modules/web/readme.txt +++ b/modules/web/readme.txt @@ -1,11 +1,11 @@ -GridGain Web Module -------------------- +Apache Ignite Web Module +------------------------ -GridGain Web module provides GridGain node startups based on servlet and servlet context listener -which allow to start GridGain inside any web container. Additionally this module provides -capabilities to cache web sessions in GridGain cache. +Apache Ignite Web module provides Apache Ignite node startups based on servlet and servlet context listener +which allow to start Apache Ignite inside any web container. Additionally this module provides +capabilities to cache web sessions in Apache Ignite cache. -To enable Web module when starting a standalone node, move 'optional/gridgain-web' folder to +To enable Web module when starting a standalone node, move 'optional/ignite-web' folder to 'libs' folder before running 'ggstart.{sh|bat}' script. The content of the module folder will be added to classpath in this case. @@ -24,8 +24,8 @@ interested in): <dependencies> ... <dependency> - <groupId>org.gridgain</groupId> - <artifactId>gridgain-web</artifactId> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-web</artifactId> <version>${ignite.version}</version> </dependency> ...