Skip to content

Commit 3644a51

Browse files
committed
ci: fixed build
1 parent edaf54f commit 3644a51

File tree

1 file changed

+40
-30
lines changed

1 file changed

+40
-30
lines changed

pom.xml

Lines changed: 40 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,45 @@ SOFTWARE.
125125
</dependency>
126126
</dependencies>
127127

128+
<build>
129+
<plugins>
130+
<plugin>
131+
<groupId>org.apache.maven.plugins</groupId>
132+
<artifactId>maven-surefire-plugin</artifactId>
133+
<version>3.0.0-M5</version>
134+
</plugin>
135+
<plugin>
136+
<groupId>org.apache.maven.plugins</groupId>
137+
<artifactId>maven-source-plugin</artifactId>
138+
<version>3.2.0</version>
139+
<executions>
140+
<execution>
141+
<id>attach-sources</id>
142+
<goals>
143+
<goal>jar-no-fork</goal>
144+
</goals>
145+
</execution>
146+
</executions>
147+
</plugin>
148+
<plugin>
149+
<groupId>org.apache.maven.plugins</groupId>
150+
<artifactId>maven-javadoc-plugin</artifactId>
151+
<version>3.3.0</version>
152+
<executions>
153+
<execution>
154+
<id>attach-javadocs</id>
155+
<goals>
156+
<goal>jar</goal>
157+
</goals>
158+
<configuration>
159+
<doclint>none</doclint>
160+
</configuration>
161+
</execution>
162+
</executions>
163+
</plugin>
164+
</plugins>
165+
</build>
166+
128167
<profiles>
129168
<profile>
130169
<id>release</id>
@@ -141,39 +180,10 @@ SOFTWARE.
141180
<autoReleaseAfterClose>true</autoReleaseAfterClose>
142181
</configuration>
143182
</plugin>
144-
<plugin>
145-
<groupId>org.apache.maven.plugins</groupId>
146-
<artifactId>maven-source-plugin</artifactId>
147-
<version>3.2.0</version>
148-
<executions>
149-
<execution>
150-
<id>attach-sources</id>
151-
<goals>
152-
<goal>jar-no-fork</goal>
153-
</goals>
154-
</execution>
155-
</executions>
156-
</plugin>
157-
<plugin>
158-
<groupId>org.apache.maven.plugins</groupId>
159-
<artifactId>maven-javadoc-plugin</artifactId>
160-
<version>3.2.0</version>
161-
<executions>
162-
<execution>
163-
<id>attach-javadocs</id>
164-
<goals>
165-
<goal>jar</goal>
166-
</goals>
167-
<configuration>
168-
<doclint>none</doclint>
169-
</configuration>
170-
</execution>
171-
</executions>
172-
</plugin>
173183
<plugin>
174184
<groupId>org.apache.maven.plugins</groupId>
175185
<artifactId>maven-gpg-plugin</artifactId>
176-
<version>1.6</version>
186+
<version>3.0.1</version>
177187
<executions>
178188
<execution>
179189
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)