Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: build and doc updates #3

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 2-Clause License

Copyright (c) 2023, AVIO Consulting
Copyright (c) 2024, AVIO Consulting

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ This extension allows to use [MockServer](https://www.mock-server.com/#what-is-m
Add this dependency to your application pom.xml

```
<groupId>com.avioconsulting.munit</groupId>
<artifactId>munit-http-mockserver</artifactId>
<version>${munit-http-mockserver.version}</version>
<classifier>mule-plugin</classifier>
<scope>test</scope>
<dependency>
<groupId>com.avioconsulting.munit</groupId>
<artifactId>munit-http-mockserver</artifactId>
<version>${munit-http-mockserver.version}</version>
<classifier>mule-plugin</classifier>
<scope>test</scope>
</dependency>
```

See latest version on [Maven Central](https://central.sonatype.com/search?namespace=com.avioconsulting.munit&name=munit-http-mockserver).
Expand Down
68 changes: 68 additions & 0 deletions jreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
project:
name: munit-http-mockserver
description: HTTP MockServer Extension for MUnit
longDescription: |
This extension allows to use [MockServer](https://www.mock-server.com/#what-is-mockserver) in MUnit Testing for mocking and verifying HTTP invocations from the application flows.

links:
homepage: https://github.com/avioconsulting/
documentation: https://avioconsulting.github.io/munit-http-mockserver/
license: https://github.com/avioconsulting/munit-http-mockserver/blob/main/LICENSE
contribute: https://github.com/avioconsulting/munit-http-mockserver/blob/main/CONTRIBUTING.adoc
authors:
- Adam DesJardin
- Manik Magar
license: BSD 2-Clause
inceptionYear: "2024"
tags:
- mule
- opentelemetry
java:
groupId: com.avioconsulting.mule
version: 8

release:
github:
owner: 'avioconsulting'
overwrite: true
draft: false
sign: true
releaseName: '{{tagName}}'
skipTag: false
milestone:
close: false
changelog:
skipMergeCommits: true
formatted: ALWAYS
preset: conventional-commits
format: '- {{commitShortHash}} {{commitTitle}}'
contributors:
format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'
labelers:
- label: 'dependencies'
title: 'chore(deps):'
order: 130
categories:
- title: '⚙️ Dependencies'
key: 'dependencies'
order: 80
labels:
- 'dependencies'
hide:
categories:
- 'merge'
contributors:
- 'GitHub'

checksum:
individual: true

signing:
active: ALWAYS
armored: true
mode: MEMORY

distributions:
mule-module:
artifacts:
- path: target/munit-http-mockserver-{{projectVersion}}-mule-plugin.jar
Loading