Skip to content

Commit fefde25

Browse files
authored
Deps upgrade (#23)
* Added reporting plugins * Bump asciidoctorj-epub3 from 1.5.0-alpha.8.1 to 1.5.0-alpha.9 Bumps [asciidoctorj-epub3](https://github.com/asciidoctor/asciidoctorj-diagram) from 1.5.0-alpha.8.1 to 1.5.0-alpha.9. - [Release notes](https://github.com/asciidoctor/asciidoctorj-diagram/releases) - [Commits](https://github.com/asciidoctor/asciidoctorj-diagram/commits) Signed-off-by: dependabot[bot] <[email protected]> * Bump junit-jupiter.version from 5.4.1 to 5.4.2 Bumps `junit-jupiter.version` from 5.4.1 to 5.4.2. Updates `junit-jupiter-api` from 5.4.1 to 5.4.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit-framework@r5.4.1...r5.4.2) Updates `junit-jupiter-engine` from 5.4.1 to 5.4.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit-framework@r5.4.1...r5.4.2) Updates `junit-jupiter-params` from 5.4.1 to 5.4.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit-framework@r5.4.1...r5.4.2) Signed-off-by: dependabot[bot] <[email protected]> * Bump junit-platform.version from 1.4.1 to 1.4.2 Bumps `junit-platform.version` from 1.4.1 to 1.4.2. Updates `junit-platform-commons` from 1.4.1 to 1.4.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/commits) Updates `junit-platform-launcher` from 1.4.1 to 1.4.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/commits) Signed-off-by: dependabot[bot] <[email protected]> * Bump jruby-complete from 9.2.6.0 to 9.2.7.0 Bumps jruby-complete from 9.2.6.0 to 9.2.7.0. Signed-off-by: dependabot[bot] <[email protected]> * Bump commons-lang3 from 3.8.1 to 3.9 Bumps commons-lang3 from 3.8.1 to 3.9. Signed-off-by: dependabot[bot] <[email protected]> * Sort pom
1 parent 16f7eb1 commit fefde25

File tree

3 files changed

+61
-15
lines changed

3 files changed

+61
-15
lines changed

docs/index.adoc

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
An HTTP Request snippet generator for many languages & tools. It can generate code for over twelve different languages and currently supports cURL, Javascript, Node, C, Java, Objective-C, Swift, Python, Ruby, C#, Go, OCaml and more!.
55

6-
<<<<<<< HEAD
76
==== Usage
87
Enable maven snapshots in `~/.m2/settings.xml`
98
```xml
@@ -85,13 +84,11 @@ public class Main {
8584
For integrating with other third party i.e ```spring```, ```redoc```, ```swagger``` such as checkout the demo.
8685

8786
```bash
88-
https://github.com/atkawa7/httpsnippet
87+
git clone https://github.com/atkawa7/httpsnippet
8988
cd httpsnippet
9089
mvn clean install
9190
java -jar httpsnippet-demo/target/httpsnippet-demo-0.0.1-SNAPSHOT.jar
9291
```
93-
=======
94-
>>>>>>> a8855cf526135b93537ab2d47373d4b463b942f3
9592

9693
==== Har Request
9794

httpsnippet/pom.xml

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,11 +211,39 @@
211211
</build>
212212
<reporting>
213213
<plugins>
214+
<plugin>
215+
<groupId>com.github.spotbugs</groupId>
216+
<artifactId>spotbugs-maven-plugin</artifactId>
217+
<version>${spotbugs-maven-plugin.version}</version>
218+
<configuration>
219+
<xmlOutput>true</xmlOutput>
220+
</configuration>
221+
</plugin>
222+
<plugin>
223+
<groupId>org.apache.maven.plugins</groupId>
224+
<artifactId>maven-javadoc-plugin</artifactId>
225+
<version>${maven-javadoc-plugin.version}</version>
226+
</plugin>
227+
<plugin>
228+
<groupId>org.apache.maven.plugins</groupId>
229+
<artifactId>maven-jxr-plugin</artifactId>
230+
<version>${maven-jxr-plugin.version}</version>
231+
</plugin>
232+
<plugin>
233+
<groupId>org.apache.maven.plugins</groupId>
234+
<artifactId>maven-pmd-plugin</artifactId>
235+
<version>${maven-pmd-plugin.version}</version>
236+
</plugin>
214237
<plugin>
215238
<groupId>org.apache.maven.plugins</groupId>
216239
<artifactId>maven-project-info-reports-plugin</artifactId>
217-
<version>3.0.0</version>
240+
<version>${maven-project-info-reports-plugin.version}</version>
241+
</plugin>
242+
<plugin>
243+
<groupId>org.jacoco</groupId>
244+
<artifactId>jacoco-maven-plugin</artifactId>
245+
<version>${jacoco-maven-plugin.version}</version>
218246
</plugin>
219247
</plugins>
220248
</reporting>
221-
</project>
249+
</project>

pom.xml

Lines changed: 30 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,18 @@
3131
<properties>
3232
<animal-sniffer-maven-plugin.version>1.17</animal-sniffer-maven-plugin.version>
3333
<animal-sniffer-signature.version>1.0</animal-sniffer-signature.version>
34+
<asciidoclet.version>1.5.6</asciidoclet.version>
3435
<asciidoctor-maven-plugin.version>2.0.0-RC.1</asciidoctor-maven-plugin.version>
3536
<asciidoctorj-diagram.version>1.5.16</asciidoctorj-diagram.version>
36-
<asciidoctorj-epub3.version>1.5.0-alpha.8.1</asciidoctorj-epub3.version>
37+
<asciidoctorj-epub3.version>1.5.0-alpha.9</asciidoctorj-epub3.version>
3738
<asciidoctorj-pdf.version>1.5.0-alpha.16</asciidoctorj-pdf.version>
3839
<build-number-maven-plugin.version>1.4</build-number-maven-plugin.version>
3940
<checksum-maven-plugin.version>1.8</checksum-maven-plugin.version>
4041
<clover-maven-plugin.version>4.3.1</clover-maven-plugin.version>
4142
<cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
4243
<codecov.token>${env.CODECOV_TOKEN}</codecov.token>
4344
<commons-io.version>2.6</commons-io.version>
44-
<commons-lang3.version>3.8.1</commons-lang3.version>
45+
<commons-lang3.version>3.9</commons-lang3.version>
4546
<commons-text.version>1.6</commons-text.version>
4647
<copy-rename-maven-plugin.version>1.0.1</copy-rename-maven-plugin.version>
4748
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
@@ -67,9 +68,9 @@
6768
<jackson.version>2.9.8</jackson.version>
6869
<jacoco-maven-plugin.version>0.8.3</jacoco-maven-plugin.version>
6970
<java.faker.version>0.17.2</java.faker.version>
70-
<jruby-complete.version>9.2.6.0</jruby-complete.version>
71-
<junit-jupiter.version>5.4.1</junit-jupiter.version>
72-
<junit-platform.version>1.4.1</junit-platform.version>
71+
<jruby-complete.version>9.2.7.0</jruby-complete.version>
72+
<junit-jupiter.version>5.4.2</junit-jupiter.version>
73+
<junit-platform.version>1.4.2</junit-platform.version>
7374
<lombok.version>1.18.6</lombok.version>
7475
<maven-assembly-plugin.version>3.1.1</maven-assembly-plugin.version>
7576
<maven-changelog-plugin.version>2.3</maven-changelog-plugin.version>
@@ -98,6 +99,7 @@
9899
<maven.compiler.target>1.8</maven.compiler.target>
99100
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
100101
<ossindex-maven-plugin.version>3.0.4</ossindex-maven-plugin.version>
102+
<pmd-core.version>6.13.0</pmd-core.version>
101103
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
102104
<reflections.version>0.9.11</reflections.version>
103105
<slf4j.version>1.7.26</slf4j.version>
@@ -402,11 +404,11 @@
402404
<goals>
403405
<goal>jar</goal>
404406
</goals>
405-
<configuration>
406-
<additionalJOption>-Xdoclint:none</additionalJOption>
407-
</configuration>
408407
</execution>
409408
</executions>
409+
<configuration>
410+
<additionalJOption>-Xdoclint:none</additionalJOption>
411+
</configuration>
410412
</plugin>
411413
<plugin>
412414
<groupId>org.apache.maven.plugins</groupId>
@@ -417,6 +419,25 @@
417419
<groupId>org.apache.maven.plugins</groupId>
418420
<artifactId>maven-pmd-plugin</artifactId>
419421
<version>${maven-pmd-plugin.version}</version>
422+
<dependencies>
423+
<dependency>
424+
<groupId>net.sourceforge.pmd</groupId>
425+
<artifactId>pmd-core</artifactId>
426+
<version>${pmd-core.version}</version>
427+
</dependency>
428+
<dependency>
429+
<groupId>net.sourceforge.pmd</groupId>
430+
<artifactId>pmd-java</artifactId>
431+
<version>${pmd-core.version}</version>
432+
</dependency>
433+
</dependencies>
434+
<configuration>
435+
<linkXRef>false</linkXRef>
436+
<sourceEncoding>utf-8</sourceEncoding>
437+
<minimumTokens>100</minimumTokens>
438+
<targetJdk>${maven.compiler.target}</targetJdk>
439+
<verbose>true</verbose>
440+
</configuration>
420441
</plugin>
421442
<plugin>
422443
<groupId>org.apache.maven.plugins</groupId>
@@ -643,4 +664,4 @@
643664
</build>
644665
</profile>
645666
</profiles>
646-
</project>
667+
</project>

0 commit comments

Comments
 (0)