Skip to content
This repository has been archived by the owner on Feb 2, 2024. It is now read-only.

Commit

Permalink
Prepare 1.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalijr2 committed Dec 30, 2023
1 parent 0172399 commit be14d84
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 56 deletions.
27 changes: 14 additions & 13 deletions maven-plugin/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,20 @@ Example of full configuration:
<executions>
<execution>
<configuration>
<!-- At least one file or directory is required. -->
<directories>
<directory>src/test/resources</directory>
</directories>
<environmentFile>public-env.json</environmentFile>
<environmentName>dev</environmentName>
<files>
<file>sample-1-queries.http</file>
<file>sample-2-queries.http</file>
</files>
<logLevel>HEADERS</logLevel>
<report>true</report>
<workingDirectory>target</workingDirectory>
<!-- At least one file or directory is required. -->
<directories>
<directory>src/test/resources</directory>
</directories>
<environmentFile>public-env.json</environmentFile>
<environmentName>dev</environmentName>
<!-- At least one file or directory is required. -->
<files>
<file>sample-1-queries.http</file>
<file>sample-2-queries.http</file>
</files>
<logLevel>HEADERS</logLevel>
<report>true</report>
<workingDirectory>target</workingDirectory>
</configuration>
<goals>
<goal>run</goal>
Expand Down
25 changes: 13 additions & 12 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ thanks [@GoncaloPT][GoncaloPT] for [his idea][leverage-test].
Table of Contents
=================

* [Getting started](#getting-started)
* [Usage](#usage)
* [Maven plugin](#maven-plugin)
* [Spring Boot Test autoconfiguration](#spring-boot-test-autoconfiguration)
* [Contributing](#contributing)
* [History](#history)
* [License](#license)
* [Getting started](#getting-started)
* [Directories (extra feature)](#directories-extra-feature)
* [Usage](#usage)
* [Maven plugin](#maven-plugin)
* [Spring Boot Test autoconfiguration](#spring-boot-test-autoconfiguration)
* [Contributing](#contributing)
* [History](#history)
* [License](#license)

Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)

Expand Down Expand Up @@ -54,18 +55,18 @@ Content-Type: application/json
}
```

### Directories (extra feature)

**IntelliJ HTTP Client** needs HTTP files to work.
With **HTTP Client Command Line** you can set directories that contain such files.

## Usage

**Important!** Both plugin and autoconfiguration do not contain the HTTP client: you need
to install it by yourself then add to `PATH`. You can also set the full path to the ijhttp
via the parameter `executable`. The [HTTP Client Demo][demo] has some examples
how to download the HTTP client.

### Directories

**IntelliJ HTTP Client** needs HTTP files to work.
With **HTTP Client Command Line** you can set directories that contain such files.

### Maven plugin

[![Maven Central](https://img.shields.io/maven-central/v/uk.bot-by.ijhttp-tools/ijhttp-maven-plugin)](https://search.maven.org/artifact/uk.bot-by.ijhttp-tools/ijhttp-maven-plugin)
Expand Down
10 changes: 0 additions & 10 deletions spring-boot-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,16 +90,6 @@
<groupId>org.springframework.boot</groupId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<!--
CVE-2023-6378: A serialization vulnerability in
logback receiver component part of logback version 1.4.11 allows an attacker
to mount a Denial-Of-Service attack by sending poisoned data.
-->
<artifactId>logback-classic</artifactId>
<groupId>ch.qos.logback</groupId>
<version>1.4.14</version>
</dependency>
<dependency>
<artifactId>spring-boot-configuration-processor</artifactId>
<groupId>org.springframework.boot</groupId>
Expand Down
10 changes: 0 additions & 10 deletions spring-boot-test/src/it/autoconfiguration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,6 @@
<artifactId>spring-boot-starter-web</artifactId>
<groupId>org.springframework.boot</groupId>
</dependency>
<dependency>
<!--
Avoid transitive vulnerable dependency maven:org.yaml:snakeyaml:1.33
CVE-2022-41854 6.5 Out-of-bounds Write vulnerability with medium severity found
CVE-2022-1471 9.8 Deserialization of Untrusted Data vulnerability with high severity found
-->
<artifactId>snakeyaml</artifactId>
<groupId>org.yaml</groupId>
<version>2.2</version>
</dependency>
<dependency>
<artifactId>spring-boot-starter-test</artifactId>
<groupId>org.springframework.boot</groupId>
Expand Down
10 changes: 0 additions & 10 deletions spring-boot-test/src/it/manual-configuration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,6 @@
<artifactId>spring-boot-starter-web</artifactId>
<groupId>org.springframework.boot</groupId>
</dependency>
<dependency>
<!--
Avoid transitive vulnerable dependency maven:org.yaml:snakeyaml:1.33
CVE-2022-41854 6.5 Out-of-bounds Write vulnerability with medium severity found
CVE-2022-1471 9.8 Deserialization of Untrusted Data vulnerability with high severity found
-->
<artifactId>snakeyaml</artifactId>
<groupId>org.yaml</groupId>
<version>2.2</version>
</dependency>
<dependency>
<artifactId>spring-boot-starter-test</artifactId>
<groupId>org.springframework.boot</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/site/markdown/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Content-Type: application/json
}
```

### Directories
### Directories (extra feature)

**IntelliJ HTTP Client** needs HTTP files to work.
With **HTTP Client Command Line** you can set directories that contain such files.
Expand Down

0 comments on commit be14d84

Please sign in to comment.