Coder Social home page Coder Social logo

jframework's Introduction

JFramework

Build Status Codacy Badge Language grade: Java codecov

Framework for Java

Description

JFramework is a Java framework containing several features, with the aim of simplifying application development. It provides the following functionalities:

  • Authentication
  • Cryptography: the entry point class is Crypto. Its protocol is based on server-client model.
  • Network
  • ORM: supported database: MySQL (Network Server) and Derby (Embedded Server)
  • System
  • Utility

For every parts it is generated an independent jar (with all its dependencies included) in case of it is necessary doing a partial usage of JFramework. The compiled components are placed into release folder.

Get Started

Import in your project

To get JFramework into your project, you can use:

  • JFramework Github
Repository Visibility Version
JitPack Public stable
JFramework Github Github Users all

Add the JitPack repository to your maven build file

On JitPack repo are published only stable versions and the release scope is public.

<repositories>
	<repository>
	    <id>jitpack.io</id>
	    <url>https://jitpack.io</url>
	</repository>
	...
</repositories>
Add the dependency

For all the framework:

<dependency>
    <groupId>com.github.richkmeli</groupId>
    <artifactId>JFramework</artifactId>
    <version>TAG</version>
</dependency>

For a specific module (auth, crypto, ...) of the framework:

<dependency>
    <groupId>com.github.richkmeli.JFramework</groupId>
    <artifactId>MODULE_NAME</artifactId>
    <version>TAG</version>
</dependency> 

Add the JFramework Github repository to your build file

On JFramework Github repo are published all versions and the release scope is Github user only. (Configuring Apache Maven or Gradle for use with GitHub Packages)

 <repositories>
        <repository>
            <id>github</id>
            <url>https://maven.pkg.github.com/richkmeli/JFramework</url>
        </repository>
        ...
    </repositories>
Add the dependency

For all the framework:

<dependency>
    <groupId>it.richkmeli.jframework</groupId>
    <artifactId>JFramework</artifactId>
    <version>TAG</version>
</dependency>

For a specific module (auth, crypto, ...) of the framework:

<dependency>
    <groupId>it.richkmeli.jframework</groupId>
    <artifactId>MODULE_NAME</artifactId>
    <version>TAG</version>
</dependency> 

Compile

JFramework uses maven as build automation tool, the root (parent) project is a maven multimodules project, namely JFramework-multimodules, in which are contained JFramework and all its sub projects as modules.

To get the jar files, you can download it from the JFramework Releases, instead if you want to build the jar files by yourself, you need to download:

  • java
  • maven

To compile the project and generate the jar file, you have to run:

mvn package

The jar files are located into the folder "release".

jframework's People

Contributors

codacy-badger avatar mmzitarosa avatar richkmeli avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.