Skip to content

Commit

Permalink
IVIS-46: Deleted project structure from SDK. Updated project structur…
Browse files Browse the repository at this point in the history
…e only (stay only maven configuration).
  • Loading branch information
RuslanPopenko committed Dec 15, 2016
1 parent 9c64be8 commit caf8811
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 73 deletions.
74 changes: 15 additions & 59 deletions docs/sdk/get_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,14 @@
Get started
===========

* `Add repository`_
* `Maven <http://docs.ivis.se/en/latest/sdk/get_started.html#mvn1>`_
* `Gradle <http://docs.ivis.se/en/latest/sdk/get_started.html#grdl1>`_
* `Add dependencies`_
* `Maven <http://docs.ivis.se/en/latest/sdk/get_started.html#mvn2>`_
* `Gradle <http://docs.ivis.se/en/latest/sdk/get_started.html#grdl2>`_
* `Add Maven repository`_
* `Add Maven dependencies`_

iVIS SDK consists of ivis-core, ivis-services and ivis-sdk dependencies.
To use them you need include dependencies from Imcode |copy| maven repository to your Maven configuration file (pom.xml).

iVIS SDK consists of ivis-core and ivis-sdk dependencies.
To use them you need include dependencies from Imcode |copy| maven repository to your Maven or Gradle configuration file.

Add repository
--------------

.. _`mvn1`:

Maven
~~~~~

Write in your pom.xml
Add Maven repository
--------------------

.. code-block:: xml
Expand All @@ -40,61 +28,29 @@ Write in your pom.xml
</repository>
</repositories>
.. _`grdl1`:

Gradle
~~~~~~

Write in your build.gradle

.. code-block:: js
repositories {
maven { url "http://repo.imcode.com/maven2" }
mavenCentral()
}
Add dependencies
----------------

.. _`mvn2`:

Maven
~~~~~

Write in your pom.xml
Add Maven dependencies
----------------------

.. code-block:: xml
<properties>
<ivis.version>1.0.0-alpha2</ivis.version>
</properties>
<dependencies>
<dependency>
<groupId>com.imcode.ivis</groupId>
<artifactId>ivis-core</artifactId>
<version>1.0.0-alpha1</version>
<version>${ivis.version}</version>
</dependency>
<dependency>
<groupId>com.imcode.ivis</groupId>
<artifactId>ivis-sdk</artifactId>
<version>1.0.0-alpha1</version>
<version>${ivis.version}</version>
</dependency>
<dependency>
<groupId>com.imcode.ivis</groupId>
<artifactId>ivis-services</artifactId>
<version>1.0.0-alpha1</version>
<version>${ivis.version}</version>
</dependency>
</dependencies>
.. _`grdl2`:

Gradle
~~~~~~

Write in your build.gradle

.. code-block:: js
dependencies {
compile group:'com.imcode.ivis', name:'ivis-core', version:'1.0.0-alpha1'
compile group:'com.imcode.ivis', name:'ivis-sdk', version:'1.0.0-alpha1'
compile group:'com.imcode.ivis', name:'ivis-services', version:'1.0.0-alpha1'
}
1 change: 0 additions & 1 deletion docs/sdk/routines.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ And as conclusion we will create simple web application which calls iVIS API. So
.. toctree::
:titlesonly:

routines/project_structure
routines/build_configuration
routines/configuration_properties
routines/beans_configuration
Expand Down
13 changes: 0 additions & 13 deletions docs/sdk/routines/project_structure.rst

This file was deleted.

0 comments on commit caf8811

Please sign in to comment.