Skip to content

Commit afc64b0

Browse files
committed
plugins for GPG signing
1 parent 1d5eeba commit afc64b0

File tree

1 file changed

+34
-5
lines changed

1 file changed

+34
-5
lines changed

msal4j-brokers/pom.xml

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,40 @@
1414
<artifactId>msal4j</artifactId>
1515
<version>1.13.1</version>
1616
</dependency>
17-
<dependency>
18-
<groupId>net.java.dev.jna</groupId>
19-
<artifactId>jna-platform</artifactId>
20-
<version>5.12.1</version>
21-
</dependency>
2217
</dependencies>
2318

19+
<build>
20+
<plugins>
21+
<plugin>
22+
<groupId>org.apache.maven.plugins</groupId>
23+
<artifactId>maven-javadoc-plugin</artifactId>
24+
<version>3.1.0</version>
25+
<configuration>
26+
<sourcepath>${project.build.directory}/delombok</sourcepath>
27+
</configuration>
28+
<executions>
29+
<execution>
30+
<id>attach-javadocs</id>
31+
<goals>
32+
<goal>jar</goal>
33+
</goals>
34+
</execution>
35+
</executions>
36+
</plugin>
37+
<plugin>
38+
<groupId>org.apache.maven.plugins</groupId>
39+
<artifactId>maven-source-plugin</artifactId>
40+
<version>2.2.1</version>
41+
<executions>
42+
<execution>
43+
<id>attach-sources</id>
44+
<goals>
45+
<goal>jar</goal>
46+
</goals>
47+
</execution>
48+
</executions>
49+
</plugin>
50+
</plugins>
51+
</build>
52+
2453
</project>

0 commit comments

Comments
 (0)