LaPasse (Parent)

CQRS and Redux inspired library for Java.

Лицензия

Лицензия

Группа

Группа

com.cookingfox
Идентификатор

Идентификатор

lapasse-parent
Последняя версия

Последняя версия

0.5.6
Дата

Дата

Тип

Тип

pom
Описание

Описание

LaPasse (Parent)
CQRS and Redux inspired library for Java.
Ссылка на сайт

Ссылка на сайт

https://github.com/cookingfox/lapasse-java
Организация-разработчик

Организация-разработчик

Cooking Fox
Система контроля версий

Система контроля версий

http://github.com/cookingfox/lapasse-java

Скачать lapasse-parent

Имя Файла Размер
lapasse-parent-0.5.6.pom 5 KB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.cookingfox/lapasse-parent/ -->
<dependency>
    <groupId>com.cookingfox</groupId>
    <artifactId>lapasse-parent</artifactId>
    <version>0.5.6</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.cookingfox/lapasse-parent/
implementation 'com.cookingfox:lapasse-parent:0.5.6'
// https://jarcasting.com/artifacts/com.cookingfox/lapasse-parent/
implementation ("com.cookingfox:lapasse-parent:0.5.6")
'com.cookingfox:lapasse-parent:pom:0.5.6'
<dependency org="com.cookingfox" name="lapasse-parent" rev="0.5.6">
  <artifact name="lapasse-parent" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.cookingfox', module='lapasse-parent', version='0.5.6')
)
libraryDependencies += "com.cookingfox" % "lapasse-parent" % "0.5.6"
[com.cookingfox/lapasse-parent "0.5.6"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

  • lapasse
  • lapasse-compiler
  • lapasse-rx
  • lapasse-samples

LaPasse for Java

CQRS and Redux inspired library for Java.

LaPasse requires at minimum Java 7.

Build Status codecov Dependency Status

Note: proper documentation is in the works!

Download

Download Maven Central

The distribution is hosted on Bintray. To include the package in your projects, you can add the jCenter repository.

Gradle

Add jCenter to your repositories block (not necessary for Android - jCenter is the default repository):

repositories {
    jcenter()
}

and add the project to the dependencies block in your build.gradle:

dependencies {
    compile 'com.cookingfox:lapasse:0.5.6'
}

Maven

Add jCenter to your repositories in pom.xml or settings.xml:

<repositories>
    <repository>
        <id>jcenter</id>
        <url>http://jcenter.bintray.com</url>
    </repository>
</repositories>

and add the project to the dependencies block in your pom.xml:

<dependency>
    <groupId>com.cookingfox</groupId>
    <artifactId>lapasse</artifactId>
    <version>0.5.6</version>
</dependency>

Rx extension

There is also an RxJava extension for the library. To download it, replace lapasse with lapasse-rx in the above dependency declarations.

Usage

Javadocs (hosted on javadoc.io):

Samples

You can find the following sample applications in the lapasse-samples folder:

Версии библиотеки

Версия
0.5.6
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
0.4.2
0.4.1
0.4.0
0.3.8
0.3.7
0.3.6
0.3.5
0.3.4
0.3.2
0.3.1
0.3.0
0.2.0
0.1.0