org.immutables.dependency.technology

Dependencies of all technologies used. Used as optional in common modules and as transitive dependencies in quickstart poms

Лицензия

Лицензия

Категории

Категории

Immutables Библиотеки уровня приложения Code Generators
Группа

Группа

org.immutables.dependency
Идентификатор

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

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

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

1.1.3
Дата

Дата

Тип

Тип

pom
Описание

Описание

org.immutables.dependency.technology
Dependencies of all technologies used. Used as optional in common modules and as transitive dependencies in quickstart poms
Организация-разработчик

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

The Immutables.org authors

Скачать technology

Имя Файла Размер
technology-1.1.3.pom 3 KB
Обзор

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

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

Зависимости

compile (13)

Идентификатор библиотеки Тип Версия
org.immutables.dependency : utility pom 1.1.3
javax.inject : javax.inject jar 1
com.fasterxml.jackson.core : jackson-core jar 2.4.4
com.fasterxml.jackson.core : jackson-databind jar 2.4.4
com.fasterxml.jackson.core : jackson-annotations jar 2.4.4
org.mongodb : mongo-java-driver jar 2.12.4
de.undercouch : bson4jackson jar 2.4.0
org.jdbi : jdbi jar 2.55
org.sonatype.sisu : sisu-guice jar 3.2.4
org.sonatype.sisu.inject : guice-multibindings jar 3.2.4
org.glassfish.hk2 : guice-bridge jar 2.3.0-b10
org.glassfish.jersey.containers : jersey-container-grizzly2-http jar 2.11
org.glassfish.jersey.core : jersey-client jar 2.11

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

Данный проект не имеет модулей.

Read full documentation at http://immutables.org

CI

// Define abstract value type using interface, abstract class or annotation
@Value.Immutable
public interface ValueObject extends WithValueObject {
  // extend not-yet-generated WithValueObject to inherit `with*` method signatures
  String getName();
  List<Integer> getCounts();
  Optional<String> getDescription();

  class Builder extends ImmutableValueObject.Builder {}
  // ImmutableValueObject.Builder will be generated and
  // our builder will inherit and reexport methods as it's own
}

// Use generated immutable implementation and builder
ValueObject v =
    new ValueObject.Builder()
        .name("Nameless")
        .description("present")
        .addCounts(1)
        .addCounts(2)
        .build();

v = v.withName("Doe");

License

   Copyright 2013-2018 Immutables Authors and Contributors

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

Changelog

See changelog for release history.

org.immutables.dependency

Immutables

Java toolkits around immutability, annotation processing and high performance

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

Версия
1.1.3
1.1.2
1.1.1
1.1
1.1.0-rc1
1.0.1
1.0