Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/huluvu424242/spring-boot-starter-jbehave
Spring Boot Starter für jbehave
https://github.com/huluvu424242/spring-boot-starter-jbehave
Last synced: 27 days ago
JSON representation
Spring Boot Starter für jbehave
- Host: GitHub
- URL: https://github.com/huluvu424242/spring-boot-starter-jbehave
- Owner: Huluvu424242
- License: lgpl-3.0
- Created: 2015-05-14T13:27:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-04-06T20:01:30.000Z (over 2 years ago)
- Last Synced: 2023-03-18T00:31:11.146Z (over 1 year ago)
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
== empty-project
:idprefix: id_
(choose one, do not modify, then add a second sentence with a brief description, starting with - "The empty-project addon enables blah blah...)
This addon provides *standalone* functionality, and *exports services* for use in other addons.
This addon provides *standalone* functionality.
This addon *exports services* for use in other addons.
This addon *provides classes* for use in other addons.
This addon is a 'Furnace container' that provides *lifecycle* and *service registry* support for dependent addons.
=== Dependencies: None (or)
=== Depends on
[options="header"]
|===
|Addon |Exported |Optional
|DEP1
|yes
|no
|DEP2
|yes
|yes
|===== Setup
This Addon requires the following installation steps.
=== Add configuration to pom.xml
To use this addon, you must add it as a dependency in the *pom.xml* of your `forge-addon` classified artifact:
(Make sure the dependency is put all the way to the left, and uses 3 spaces for indentation of GAV)
[source,xml]
----unknown
empty-project
forge-addon
${version}----
== Features
ABCFactory for simple ABC blah::
Allows for blah blah
+
[source,java]
----
@Inject private ABCFactory factory;
ABC abc = factory.createABC();
----
+
[TIP]
====
If your addon uses a container that does not support "@Inject" annotations, services such as the `ABCFactory` may also be
accessed via the `AddonRegistry`:
----
Imported imported = addonRegistry.getServices(ABCFactory.class);
ABCFactory factory = imported.get();
----
====
Creating a new XYZ instance::
Causes XYZ to occur
+
[source,java]
----
XYZ xyz = factory.createXYZ();
----