Skip to content

Commit

Permalink
chore: build and doc updates (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
manikmagar authored Feb 29, 2024
1 parent 6cf51c4 commit 0ca4793
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 6 deletions.
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

0 comments on commit 0ca4793

Please sign in to comment.