Skip to content

Commit bed7914

Browse files
authored
BS-4057: Final configuration for Maven Central with v0.3.3 (#22)
These changes have been hosted on Maven Central, with a new version -- v0.3.3
1 parent 41e2772 commit bed7914

File tree

1 file changed

+70
-3
lines changed

1 file changed

+70
-3
lines changed

pom.xml

+70-3
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,86 @@
1010
<relativePath/> <!-- lookup parent from repository -->
1111
</parent>
1212

13-
<groupId>build.security</groupId>
13+
<groupId>io.github.build-security</groupId>
1414
<artifactId>policy-decision-point</artifactId>
15-
<version>0.3.2</version>
15+
<version>0.3.3</version>
1616
<name>OPA Spring Boot middleware</name>
1717
<description>Spring Boot middleware for authorizing requests using OPA as Policy Decision Point (PDP)</description>
1818
<url>https://docs.build.security/documentation/getting-started</url>
1919

2020
<scm>
2121
<connection>scm:git:git://github.com/build-security/opa-java-spring-client.git</connection>
2222
<developerConnection>scm:git:ssh://github.com:build-security/opa-java-spring-client.git</developerConnection>
23-
<url>http://github.com/build-security/opa-java-spring-client/tree/main</url>
23+
<url>https://github.com/build-security/opa-java-spring-client/tree/main</url>
2424
</scm>
2525

26+
<distributionManagement>
27+
<snapshotRepository>
28+
<id>ossrh</id>
29+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
30+
</snapshotRepository>
31+
<repository>
32+
<id>ossrh</id>
33+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
34+
</repository>
35+
</distributionManagement>
36+
37+
<build>
38+
<plugins>
39+
<plugin>
40+
<groupId>org.sonatype.plugins</groupId>
41+
<artifactId>nexus-staging-maven-plugin</artifactId>
42+
<version>1.6.7</version>
43+
<extensions>true</extensions>
44+
<configuration>
45+
<serverId>ossrh</serverId>
46+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
47+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
48+
</configuration>
49+
</plugin>
50+
<plugin>
51+
<groupId>org.apache.maven.plugins</groupId>
52+
<artifactId>maven-source-plugin</artifactId>
53+
<version>2.2.1</version>
54+
<executions>
55+
<execution>
56+
<id>attach-sources</id>
57+
<goals>
58+
<goal>jar-no-fork</goal>
59+
</goals>
60+
</execution>
61+
</executions>
62+
</plugin>
63+
<plugin>
64+
<groupId>org.apache.maven.plugins</groupId>
65+
<artifactId>maven-javadoc-plugin</artifactId>
66+
<version>2.9.1</version>
67+
<executions>
68+
<execution>
69+
<id>attach-javadocs</id>
70+
<goals>
71+
<goal>jar</goal>
72+
</goals>
73+
</execution>
74+
</executions>
75+
</plugin>
76+
<plugin>
77+
<groupId>org.apache.maven.plugins</groupId>
78+
<artifactId>maven-gpg-plugin</artifactId>
79+
<version>1.5</version>
80+
<executions>
81+
<execution>
82+
<id>sign-artifacts</id>
83+
<phase>verify</phase>
84+
<goals>
85+
<goal>sign</goal>
86+
</goals>
87+
</execution>
88+
</executions>
89+
</plugin>
90+
</plugins>
91+
</build>
92+
2693
<licenses>
2794
<license>
2895
<name>Apache License, Version 2.0</name>

0 commit comments

Comments
 (0)