Skip to content

Commit 64ecfb2

Browse files
committed
🔧 Mise à jour config pom.xml
1 parent cc946d9 commit 64ecfb2

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

pom.xml

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555

5656
<licenses>
5757
<license>
58-
<name>MIT License</name>
59-
<url>http://www.opensource.org/licenses/mit-license.php</url>
58+
<name>Apache Software License, Version 2.0</name>
59+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
6060
</license>
6161
</licenses>
6262

@@ -96,9 +96,10 @@
9696

9797
<profiles>
9898
<profile>
99-
<id>release</id>
99+
<id>deploy</id>
100100
<build>
101101
<plugins>
102+
102103
<plugin>
103104
<groupId>org.apache.maven.plugins</groupId>
104105
<artifactId>maven-source-plugin</artifactId>
@@ -107,11 +108,12 @@
107108
<execution>
108109
<id>attach-sources</id>
109110
<goals>
110-
<goal>jar</goal>
111+
<goal>jar-no-fork</goal>
111112
</goals>
112113
</execution>
113114
</executions>
114115
</plugin>
116+
115117
<plugin>
116118
<groupId>org.apache.maven.plugins</groupId>
117119
<artifactId>maven-javadoc-plugin</artifactId>
@@ -125,6 +127,7 @@
125127
</execution>
126128
</executions>
127129
</plugin>
130+
128131
<plugin>
129132
<groupId>org.apache.maven.plugins</groupId>
130133
<artifactId>maven-gpg-plugin</artifactId>
@@ -136,26 +139,36 @@
136139
<goals>
137140
<goal>sign</goal>
138141
</goals>
142+
<configuration>
143+
<gpgArguments>
144+
<arg>--pinentry-mode</arg>
145+
<arg>loopback</arg>
146+
</gpgArguments>
147+
</configuration>
139148
</execution>
140149
</executions>
141150
</plugin>
151+
142152
</plugins>
143153
</build>
144154
</profile>
145155
</profiles>
146156

147157
<build>
148158
<plugins>
159+
149160
<plugin>
150161
<groupId>org.apache.maven.plugins</groupId>
151162
<artifactId>maven-surefire-plugin</artifactId>
152163
<version>3.0.0-M5</version>
153164
</plugin>
165+
154166
<plugin>
155167
<groupId>org.apache.maven.plugins</groupId>
156168
<artifactId>maven-failsafe-plugin</artifactId>
157169
<version>3.0.0-M5</version>
158170
</plugin>
171+
159172
<plugin>
160173
<groupId>org.apache.maven.plugins</groupId>
161174
<artifactId>maven-compiler-plugin</artifactId>
@@ -166,6 +179,7 @@
166179
<encoding>${project.build.sourceEncoding}</encoding>
167180
</configuration>
168181
</plugin>
182+
169183
<plugin>
170184
<groupId>org.sonatype.plugins</groupId>
171185
<artifactId>nexus-staging-maven-plugin</artifactId>
@@ -177,6 +191,7 @@
177191
<autoReleaseAfterClose>true</autoReleaseAfterClose>
178192
</configuration>
179193
</plugin>
194+
180195
<plugin>
181196
<groupId>org.jacoco</groupId>
182197
<artifactId>jacoco-maven-plugin</artifactId>
@@ -197,6 +212,7 @@
197212
</execution>
198213
</executions>
199214
</plugin>
215+
200216
</plugins>
201217
</build>
202218
</project>

0 commit comments

Comments
 (0)