Skip to content
This repository was archived by the owner on May 3, 2023. It is now read-only.

Commit 7a0f414

Browse files
add: more information about package in pom.xml
1 parent d9f25ce commit 7a0f414

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

.github/workflows/deploy-github-repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Maven deployments
1+
name: Maven deployment to GitHub Package
22

33
on: [release]
44

pom.xml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,29 @@
66

77
<groupId>net.httpclient.wrapper</groupId>
88
<artifactId>httpclient-wrapper</artifactId>
9-
<version>1.0</version>
9+
<version>1.0.0</version>
10+
<url>https://github.com/florianepitech/httpclient-wrapper</url>
11+
<description>Stunning wrapper for apache httpclient</description>
12+
13+
<build>
14+
<plugins>
15+
<!-- Need at least 2.22.0 to support JUnit 5 -->
16+
<plugin>
17+
<groupId>org.apache.maven.plugins</groupId>
18+
<artifactId>maven-surefire-plugin</artifactId>
19+
<version>3.0.0-M3</version>
20+
</plugin>
21+
<plugin>
22+
<groupId>org.apache.maven.plugins</groupId>
23+
<artifactId>maven-compiler-plugin</artifactId>
24+
<version>3.8.1</version>
25+
<configuration>
26+
<source>17</source>
27+
<target>17</target>
28+
</configuration>
29+
</plugin>
30+
</plugins>
31+
</build>
1032

1133
<distributionManagement>
1234
<repository>

0 commit comments

Comments
 (0)