All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download JAR files tagged by objects with all dependencies

Search JAR files by class name

solidblue3 from group it.tidalwave.solidblue3 (version 1.1)

A tool for data backup and consistency. Architecture and technologies: + the classic three-tier architecture is used: Model, DAO, Presentation; + [Spring 6 / Spring Boot 3](https://spring.io/) is the reference framework; + [SQLite](https://sqlite.org/) is the underlying database; + [Spring Data JPA](https://docs.spring.io/spring-data/jpa/docs/current/reference/html/) with [Hibernate](https://hibernate.org/) is used as ORM; + JPA entities are separated objects; + `Finder` and DCI roles from [TheseFoolishThings](http://tidalwave.it/projects/thesefoolishthings) are used; + [SLF4J](https://slf4j.org) and [Logback](https://logback.qos.ch) are used for logging; + [TestNG](https://testng.org) and [Mockito](https://site.mockito.org/) are used for testing; + [Lombok](https://projectlombok.org) is used for cleaner code.

Group: it.tidalwave.solidblue3 Artifact: solidblue3
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact solidblue3
Group it.tidalwave.solidblue3
Version 1.1
Last update 04. May 2023
Organization not specified
URL https://tidalwave.bitbucket.io/solidblue3j/
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

solidblue3-model from group it.tidalwave.solidblue3 (version 1.1)

Group: it.tidalwave.solidblue3 Artifact: solidblue3-model
Show all versions Show documentation Show source 
 

0 downloads
Artifact solidblue3-model
Group it.tidalwave.solidblue3
Version 1.1
Last update 04. May 2023
Organization not specified
URL Not specified
License not specified
Dependencies amount 5
Dependencies it-tidalwave-util, solidblue3-commons, spring-context, jakarta.transaction-api, jakarta.inject-api,
There are maybe transitive dependencies!

solidblue3-dao from group it.tidalwave.solidblue3 (version 1.1)

Group: it.tidalwave.solidblue3 Artifact: solidblue3-dao
Show all versions Show documentation Show source 
 

0 downloads
Artifact solidblue3-dao
Group it.tidalwave.solidblue3
Version 1.1
Last update 04. May 2023
Organization not specified
URL Not specified
License not specified
Dependencies amount 4
Dependencies solidblue3-model, solidblue3-commons, it-tidalwave-util, spring-boot-starter-data-jpa,
There are maybe transitive dependencies!

solidblue3-commons from group it.tidalwave.solidblue3 (version 1.1)

Group: it.tidalwave.solidblue3 Artifact: solidblue3-commons
Show all versions Show documentation Show source 
 

0 downloads
Artifact solidblue3-commons
Group it.tidalwave.solidblue3
Version 1.1
Last update 04. May 2023
Organization not specified
URL Not specified
License not specified
Dependencies amount 7
Dependencies it-tidalwave-util, spring-data-commons, spring-data-jpa, spring-context, spring-orm, jakarta.transaction-api, jakarta.persistence-api,
There are maybe transitive dependencies!

solidblue3-application-nogui from group it.tidalwave.solidblue3 (version 1.1)

Group: it.tidalwave.solidblue3 Artifact: solidblue3-application-nogui
Show all versions Show documentation Show source 
 

0 downloads
Artifact solidblue3-application-nogui
Group it.tidalwave.solidblue3
Version 1.1
Last update 04. May 2023
Organization not specified
URL Not specified
License not specified
Dependencies amount 6
Dependencies solidblue3-model, solidblue3-dao, it-tidalwave-role, it-tidalwave-role-spring, logback-classic, solidblue3-model,
There are maybe transitive dependencies!

modules from group it.tidalwave.solidblue3 (version 1.1)

Group: it.tidalwave.solidblue3 Artifact: modules
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact modules
Group it.tidalwave.solidblue3
Version 1.1
Last update 04. May 2023
Organization not specified
URL Not specified
License not specified
Dependencies amount 2
Dependencies jakarta.annotation-api, spotbugs-annotations,
There are maybe transitive dependencies!

getopt-databind from group pro.johndunlap (version 0.5.6)

This is a Java library which provides a flexible and customizable way to bind command line arguments to Java objects, in a similar manner to how JSON, XML, and YAML can be bound to Java objects. You can easily define Java classes that represent the data structure of your command line arguments, and use annotations to specify how those arguments should be parsed and bound to the corresponding fields in your Java object. This allows you to write command line interfaces that are more intuitive and easier to use, while also reducing the amount of boilerplate code that is needed to parse and validate command line arguments.

Group: pro.johndunlap Artifact: getopt-databind
Show documentation Show source 
 

0 downloads
Artifact getopt-databind
Group pro.johndunlap
Version 0.5.6
Last update 20. April 2023
Organization not specified
URL https://github.com/johndunlap/getopt-databind
License MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

rome from group com.rometools (version 2.1.0)

All Roads Lead to ROME. ROME is a set of Atom/RSS Java utilities that make it easy to work in Java with most syndication formats. Today it accepts all flavors of RSS (0.90, 0.91, 0.92, 0.93, 0.94, 1.0 and 2.0), Atom 0.3 and Atom 1.0 feeds. Rome includes a set of parsers and generators for the various flavors of feeds, as well as converters to convert from one format to another. The parsers can give you back Java objects that are either specific for the format you want to work with, or a generic normalized SyndFeed object that lets you work on with the data without bothering about the underlying format.

Group: com.rometools Artifact: rome
Show all versions Show documentation Show source 
 

240 downloads
Artifact rome
Group com.rometools
Version 2.1.0
Last update 12. March 2023
Organization not specified
URL Not specified
License The Apache Software License, Version 2.0
Dependencies amount 3
Dependencies rome-utils, jdom2, slf4j-api,
There are maybe transitive dependencies!

jpasecurity from group org.jpasecurity (version 1.0.3)

JPA Security is an Access Control Solution for the Java Persistence API (JPA). With JPA Security your access control can be performed in the database. You may query the database for all objects of a certain type and will receive only the objects you have read access for. This filtering is performed in the database. Unaccessible queried objects will not be loaded into memory. JPA Security enables you to completely remove security-related code from your code-base. All access control may be configured via Annotations or XML. With JPA Security you do not have to change your access control paradigm (but maybe you want to, when you see the great capability of JPA Security). You even can mix access control paradigms easily. JPA Security is not designed to replace current security solutions, but to extend them. It integrates smoothly into the security mechanisms of the Java EE Platform, but may be used with third-party frameworks like Spring Security or in Java SE, too. With the extensibility of JPA Security it is easy to provide your own access control paradigm, access rules storage or login mechanism.

Group: org.jpasecurity Artifact: jpasecurity
Show all versions Show documentation Show source 
 

0 downloads
Artifact jpasecurity
Group org.jpasecurity
Version 1.0.3
Last update 04. January 2023
Organization not specified
URL https://jpasecurity.org
License The Apache License, Version 2.0
Dependencies amount 3
Dependencies assertj-core, jsr250-api, slf4j-api,
There are maybe transitive dependencies!

fastutil-core from group co.datadome (version 8.5.11.1)

fastutil extends the Java Collections Framework by providing type-specific maps, sets, lists, and queues with a small memory footprint and fast operations; it provides also big (64-bit) arrays, sets, and lists, sorting algorithms, fast, practical I/O classes for binary and text files, and facilities for memory mapping large files. This jar (fastutil-core.jar) contains data structures based on integers, longs, doubles, and objects, only; fastutil.jar contains all classes. If you have both jars in your dependencies, this jar should be excluded.

Group: co.datadome Artifact: fastutil-core
Show documentation Show source 
 

0 downloads
Artifact fastutil-core
Group co.datadome
Version 8.5.11.1
Last update 25. December 2022
Organization not specified
URL http://fastutil.di.unimi.it/
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!



Page 255 from 261 (items total 2607)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy