org.immutables.dependency.technology

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

License

License

Categories

Categories

Immutables Application Layer Libs Code Generators
GroupId

GroupId

org.immutables.dependency
ArtifactId

ArtifactId

technology
Last Version

Last Version

1.1.3
Release Date

Release Date

Type

Type

pom
Description

Description

org.immutables.dependency.technology
Dependencies of all technologies used. Used as optional in common modules and as transitive dependencies in quickstart poms
Project Organization

Project Organization

The Immutables.org authors

Download technology

Filename Size
technology-1.1.3.pom 3 KB
Browse

How to add to project

<!-- 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"]

Dependencies

compile (13)

Group / Artifact Type Version
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

Project Modules

There are no modules declared in this project.

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

Versions

Version
1.1.3
1.1.2
1.1.1
1.1
1.1.0-rc1
1.0.1
1.0