All Projects → MatteoJoliveau → Plugface

MatteoJoliveau / Plugface

Licence: mit
Next generation Java general purpose plugin framework

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Plugface

Wordless
All the power of Pug, Sass, Coffeescript and WebPack in your WordPress theme. Stop writing themes like it's 1998.
Stars: ✭ 1,374 (+3251.22%)
Mutual labels:  framework, plugin
Smqtk
Python toolkit for pluggable algorithms and data structures for multimedia-based machine learning.
Stars: ✭ 69 (+68.29%)
Mutual labels:  framework, plugin
Virtualapp
Virtual Engine for Android(Support 12.0 in business version)
Stars: ✭ 8,413 (+20419.51%)
Mutual labels:  framework, plugin
Cp Ddd Framework
A lightweight flexible development framework for complex business architecture with full ecosystem!轻量级业务中台开发框架,中台架构的顶层设计和完整解决方案!
Stars: ✭ 566 (+1280.49%)
Mutual labels:  framework, plugin
Go Xserver
Go 服务器框架(go-x.v2)
Stars: ✭ 137 (+234.15%)
Mutual labels:  framework, plugin
Dddplus
🔥 A lightweight flexible development framework for complex business architecture with full ecosystem!轻量级业务中台开发框架,中台架构的顶层设计和完整解决方案!
Stars: ✭ 107 (+160.98%)
Mutual labels:  framework, plugin
Push Fcm Plugin
Official Firebase Cloud Messaging plugin for Push.js v1.0 🔥
Stars: ✭ 37 (-9.76%)
Mutual labels:  framework, plugin
Android Plugin Framework
Android插件框架,免安装运行插件APK ,支持独立插件和非独立插件
Stars: ✭ 1,630 (+3875.61%)
Mutual labels:  framework, plugin
Juce
JUCE is an open-source cross-platform C++ application framework for desktop and mobile applications, including VST, VST3, AU, AUv3, RTAS and AAX audio plug-ins.
Stars: ✭ 3,841 (+9268.29%)
Mutual labels:  framework, plugin
Intellij jahia plugin
Jahia's definitions.cnd files syntax highlighting, code completion, and other amazing stuff
Stars: ✭ 19 (-53.66%)
Mutual labels:  framework, plugin
Jbuilder
Generate JSON objects with a Builder-style DSL, inspired by jbuilder
Stars: ✭ 37 (-9.76%)
Mutual labels:  framework
Fluent Bit Go Loki
[Deprecated] The predessor of fluent-bit output plugin for Loki. https://github.com/grafana/loki
Stars: ✭ 38 (-7.32%)
Mutual labels:  plugin
Unitypluginwithwsl
Unity native plugin with WSL (Windows Subsystem for Linux)
Stars: ✭ 39 (-4.88%)
Mutual labels:  plugin
Duct
Server-side application framework for Clojure
Stars: ✭ 998 (+2334.15%)
Mutual labels:  framework
Wbounce
wBounce improves bounce rate to boost conversions and sales. The free alternative to Bounce Exchange for WordPress. WordPress plugin.
Stars: ✭ 38 (-7.32%)
Mutual labels:  plugin
Sparql Engine
🚂 A framework for building SPARQL query engines in Javascript/Typescript
Stars: ✭ 39 (-4.88%)
Mutual labels:  framework
Grav Plugin Diagrams
Diagrams is a Grav plugin that adds simple and powerful diagrams functionality
Stars: ✭ 37 (-9.76%)
Mutual labels:  plugin
Decko
Start with a deck of wiki cards. Develop it into a rich web app.
Stars: ✭ 37 (-9.76%)
Mutual labels:  framework
Kinecttopin
(Eyebeam #1 of 13) Developed with @FakeGreenDress. Record, stream, and export Kinect mocap data to After Effects puppet pins. Record directly from the Kinect or over OSC. Compiling or running from source requires SimpleOpenNI.
Stars: ✭ 40 (-2.44%)
Mutual labels:  plugin
Cm3d2.maidfiddler
A real-time game editor for CM3D2
Stars: ✭ 39 (-4.88%)
Mutual labels:  plugin

PlugFace Framework

License: MIT Maven Central Build Status

PLUGFACE IS STILL IN EARLY DEVELOPMENT. WAIT FOR THE 1.0.0-RELEASE FOR PRODUCTION USE
This README refers to versions 0.6.0+ which has undergone a major rewrite

PlugFace is a simple, lightweight, high abstraction plugin framework for Java applications. It focuses on simplicity, easy and clean API and modularity. Visit the Documentation for more in-depth information.

Browse the Javadoc here

Core Concepts

  • Simple Plugin annotation to mark entry points to be loaded and registered in the classpath at runtime.
  • PluginManager utility class to load, configure and register plugins. It should be the primary way for applications to manage the PlugFace echosystems.
  • A PluginContext that acts as a repository for registered plugins and managers. It holds the reference to all the plugins that have been registered.
  • Pluggable source mechanism. Implementing the PluginSource interface allows for nearly infinite possibilities as to from where plugins are loaded.
  • Dependency injection: plugins can require other plugins using the standard Java @Inject annotation. If using the plugface-spring module for Spring integration, plugins can also have Spring bean injected in their constructors (but not the other way around). (See Dependency Injection)

Download

There are many ways to download PlugFace. The easiest one is to use a build management system like Maven or Gradle.
Check out the Download section of the Docs for the full list.
If using Spring Framework you may want to use plugface-spring instead of plugface-core for an out-of-the-box integration

To download the latest stable release in Maven, add the following snippet to the <dependencies> section of your pom.xml:

<dependency>
    <groupId>org.plugface</groupId>
    <artifactId>plugface-core</artifactId>
    <version>${release.version}</version>
</dependency>

For Gradle, add the following lines to build.gradle:

repositories {
    mavenCentral()
}

Then add:

dependencies {
    compile 'org.plugface:plugface-core:$RELEASEVERSION'
}

Quick Start

Check out the Quickstart guides for more detailed instructions.

License

The MIT License
Copyright 2017 Matteo Joliveau

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].