Skip to content

Commit aa1f079

Browse files
committed
chore: build and doc updates
1 parent 6cf51c4 commit aa1f079

File tree

3 files changed

+76
-6
lines changed

3 files changed

+76
-6
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 2-Clause License
22

3-
Copyright (c) 2023, AVIO Consulting
3+
Copyright (c) 2024, AVIO Consulting
44

55
Redistribution and use in source and binary forms, with or without
66
modification, are permitted provided that the following conditions are met:

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ This extension allows to use [MockServer](https://www.mock-server.com/#what-is-m
99
Add this dependency to your application pom.xml
1010

1111
```
12-
<groupId>com.avioconsulting.munit</groupId>
13-
<artifactId>munit-http-mockserver</artifactId>
14-
<version>${munit-http-mockserver.version}</version>
15-
<classifier>mule-plugin</classifier>
16-
<scope>test</scope>
12+
<dependency>
13+
<groupId>com.avioconsulting.munit</groupId>
14+
<artifactId>munit-http-mockserver</artifactId>
15+
<version>${munit-http-mockserver.version}</version>
16+
<classifier>mule-plugin</classifier>
17+
<scope>test</scope>
18+
</dependency>
1719
```
1820

1921
See latest version on [Maven Central](https://central.sonatype.com/search?namespace=com.avioconsulting.munit&name=munit-http-mockserver).

jreleaser.yml

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
project:
2+
name: munit-http-mockserver
3+
description: HTTP MockServer Extension for MUnit
4+
longDescription: |
5+
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.
6+
7+
links:
8+
homepage: https://github.com/avioconsulting/
9+
documentation: https://avioconsulting.github.io/munit-http-mockserver/
10+
license: https://github.com/avioconsulting/munit-http-mockserver/blob/main/LICENSE
11+
contribute: https://github.com/avioconsulting/munit-http-mockserver/blob/main/CONTRIBUTING.adoc
12+
authors:
13+
- Adam DesJardin
14+
- Manik Magar
15+
license: BSD 2-Clause
16+
inceptionYear: "2024"
17+
tags:
18+
- mule
19+
- opentelemetry
20+
java:
21+
groupId: com.avioconsulting.mule
22+
version: 8
23+
24+
release:
25+
github:
26+
owner: 'avioconsulting'
27+
overwrite: true
28+
draft: false
29+
sign: true
30+
releaseName: '{{tagName}}'
31+
skipTag: false
32+
milestone:
33+
close: false
34+
changelog:
35+
skipMergeCommits: true
36+
formatted: ALWAYS
37+
preset: conventional-commits
38+
format: '- {{commitShortHash}} {{commitTitle}}'
39+
contributors:
40+
format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'
41+
labelers:
42+
- label: 'dependencies'
43+
title: 'chore(deps):'
44+
order: 130
45+
categories:
46+
- title: '⚙️ Dependencies'
47+
key: 'dependencies'
48+
order: 80
49+
labels:
50+
- 'dependencies'
51+
hide:
52+
categories:
53+
- 'merge'
54+
contributors:
55+
- 'GitHub'
56+
57+
checksum:
58+
individual: true
59+
60+
signing:
61+
active: ALWAYS
62+
armored: true
63+
mode: MEMORY
64+
65+
distributions:
66+
mule-module:
67+
artifacts:
68+
- path: target/munit-http-mockserver-{{projectVersion}}-mule-plugin.jar

0 commit comments

Comments
 (0)