|
10 | 10 | <relativePath/> <!-- lookup parent from repository -->
|
11 | 11 | </parent>
|
12 | 12 |
|
13 |
| - <groupId>build.security</groupId> |
| 13 | + <groupId>io.github.build-security</groupId> |
14 | 14 | <artifactId>policy-decision-point</artifactId>
|
15 |
| - <version>0.3.2</version> |
| 15 | + <version>0.3.3</version> |
16 | 16 | <name>OPA Spring Boot middleware</name>
|
17 | 17 | <description>Spring Boot middleware for authorizing requests using OPA as Policy Decision Point (PDP)</description>
|
18 | 18 | <url>https://docs.build.security/documentation/getting-started</url>
|
19 | 19 |
|
20 | 20 | <scm>
|
21 | 21 | <connection>scm:git:git://github.com/build-security/opa-java-spring-client.git</connection>
|
22 | 22 | <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> |
24 | 24 | </scm>
|
25 | 25 |
|
| 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 | + |
26 | 93 | <licenses>
|
27 | 94 | <license>
|
28 | 95 | <name>Apache License, Version 2.0</name>
|
|
0 commit comments