Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/epomatti/arquillian-demo
A showcase demo project with Arquillian.
https://github.com/epomatti/arquillian-demo
arquillian jakarta jakartaee java javaee jboss jpa maven resteasy wildlfy
Last synced: 25 days ago
JSON representation
A showcase demo project with Arquillian.
- Host: GitHub
- URL: https://github.com/epomatti/arquillian-demo
- Owner: epomatti
- License: mit
- Created: 2020-08-16T20:34:06.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-24T22:30:33.000Z (almost 3 years ago)
- Last Synced: 2024-11-17T00:23:51.480Z (3 months ago)
- Topics: arquillian, jakarta, jakartaee, java, javaee, jboss, jpa, maven, resteasy, wildlfy
- Language: Java
- Homepage:
- Size: 41 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Arquillian Demo
![build and tests](https://github.com/epomatti/arquillian-demo/workflows/maven/badge.svg)
A demo project for Arquillian with WildFly.
## Getting Started
Running with standalone remote WildFly:
```
mvn test
```Or... let Arquillian handle the infrastructure for you 😎
```
mvn -Pmanaged test
```## Setup
You'll need Maven and the JDK:
```
sudo apt update
sudo apt install maven openjdk-11-jdk
```## Development
Coding tools:
- **(Required)** You need Lombok installed on your IDE. [All major IDEs are supported](https://projectlombok.org/setup/overview).
- Add the JBoss/RedHat Server Connector plugin for your IDE.## References
[Arquillian Core](http://arquillian.org/arquillian-core/)
[Arquillian Example](https://github.com/tolis-e/arquillian-wildfly-example)