|
6 | 6 |
|
7 | 7 | <groupId>io.github.jacopocarlini</groupId> |
8 | 8 | <artifactId>fast-feature-flags-provider</artifactId> |
9 | | - <version>1.1.1</version> |
| 9 | + <version>1.1.2-1</version> |
| 10 | + <name>${project.groupId}:${project.artifactId}</name> |
10 | 11 | <packaging>jar</packaging> |
11 | | - |
| 12 | + <url>https://github.com/jacopocarlini/fast-feature-flags-provider</url> |
| 13 | + <description>A MongoDB provider for openfeature.</description> |
12 | 14 |
|
13 | 15 | <properties> |
14 | 16 | <java.version>17</java.version> |
15 | 17 | <maven.compiler.source>17</maven.compiler.source> |
16 | 18 | <maven.compiler.target>17</maven.compiler.target> |
17 | 19 | </properties> |
18 | 20 |
|
| 21 | + <developers> |
| 22 | + <developer> |
| 23 | + <id>jacopocarlini</id> |
| 24 | + <name>Jacopo Carlini</name> |
| 25 | + <email>jacopo1395@gmail.com</email> |
| 26 | + </developer> |
| 27 | + </developers> |
| 28 | + <licenses> |
| 29 | + <license> |
| 30 | + <name>MIT License</name> |
| 31 | + <url>https://opensource.org/licenses/MIT</url> |
| 32 | + <distribution>repo</distribution> |
| 33 | + </license> |
| 34 | + </licenses> |
| 35 | + <scm> |
| 36 | + <connection>scm:git:git://github.com/jacopocarlini/fast-feature-flags-provider.git</connection> |
| 37 | + <developerConnection>scm:git:ssh://github.com/jacopocarlini/fast-feature-flags-provider.git</developerConnection> |
| 38 | + <url>https://github.com/jacopocarlini/fast-feature-flags-provider/tree/main</url> |
| 39 | + </scm> |
| 40 | + |
| 41 | + <distributionManagement> |
| 42 | + <snapshotRepository> |
| 43 | + <id>ossrh</id> |
| 44 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 45 | + </snapshotRepository> |
| 46 | + <repository> |
| 47 | + <id>ossrh</id> |
| 48 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 49 | + </repository> |
| 50 | + </distributionManagement> |
19 | 51 |
|
20 | 52 | <dependencyManagement> |
21 | 53 | <dependencies> |
|
28 | 60 | </dependency> |
29 | 61 | </dependencies> |
30 | 62 | </dependencyManagement> |
31 | | - |
32 | 63 | <dependencies> |
33 | 64 | <dependency> |
34 | 65 | <groupId>org.springframework.boot</groupId> |
|
62 | 93 | </dependency> |
63 | 94 |
|
64 | 95 | </dependencies> |
| 96 | + |
65 | 97 | <repositories> |
66 | 98 | <repository> |
67 | 99 | <snapshots> |
|
72 | 104 | <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> |
73 | 105 | </repository> |
74 | 106 | </repositories> |
| 107 | + |
75 | 108 | <build> |
76 | 109 | <plugins> |
77 | 110 | <plugin> |
|
87 | 120 | </configuration> |
88 | 121 | </plugin> |
89 | 122 | <plugin> |
90 | | - <artifactId>maven-release-plugin</artifactId> |
91 | | - <version>3.1.1</version> |
| 123 | + <groupId>org.apache.maven.plugins</groupId> |
| 124 | + <artifactId>maven-source-plugin</artifactId> |
| 125 | + <version>3.2.1</version> |
| 126 | + <executions> |
| 127 | + <execution> |
| 128 | + <id>attach-sources</id> |
| 129 | + <goals> |
| 130 | + <goal>jar-no-fork</goal> |
| 131 | + </goals> |
| 132 | + </execution> |
| 133 | + </executions> |
| 134 | + </plugin> |
| 135 | + <plugin> |
| 136 | + <groupId>org.apache.maven.plugins</groupId> |
| 137 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 138 | + <version>3.4.1</version> |
| 139 | + <executions> |
| 140 | + <execution> |
| 141 | + <id>attach-javadocs</id> |
| 142 | + <goals> |
| 143 | + <goal>jar</goal> |
| 144 | + </goals> |
| 145 | + </execution> |
| 146 | + </executions> |
| 147 | + </plugin> |
| 148 | + <plugin> |
| 149 | + <groupId>org.apache.maven.plugins</groupId> |
| 150 | + <artifactId>maven-gpg-plugin</artifactId> |
| 151 | + <version>1.5</version> |
| 152 | + <executions> |
| 153 | + <execution> |
| 154 | + <id>sign-artifacts</id> |
| 155 | + <phase>verify</phase> |
| 156 | + <goals> |
| 157 | + <goal>sign</goal> |
| 158 | + </goals> |
| 159 | + </execution> |
| 160 | + </executions> |
92 | 161 | <configuration> |
93 | | - <scmCommentPrefix>[ci skip]</scmCommentPrefix> |
| 162 | + <gpgArguments> |
| 163 | + <gpgArgument>--batch</gpgArgument> |
| 164 | + <gpgArgument>--pinentry-mode</gpgArgument> |
| 165 | + <gpgArgument>loopback</gpgArgument> |
| 166 | + </gpgArguments> |
| 167 | + </configuration> |
| 168 | + </plugin> |
| 169 | + <plugin> |
| 170 | + <groupId>org.sonatype.central</groupId> |
| 171 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 172 | + <version>0.7.0</version> |
| 173 | + <extensions>true</extensions> |
| 174 | + <configuration> |
| 175 | + <publishingServerId>central</publishingServerId> |
| 176 | + <autoPublish>true</autoPublish> |
94 | 177 | </configuration> |
95 | 178 | </plugin> |
96 | 179 | </plugins> |
97 | 180 | </build> |
98 | | - |
99 | | - <scm> |
100 | | - <connection>scm:git:${project.scm.url}</connection> |
101 | | - <developerConnection>scm:git:${project.scm.url}</developerConnection> |
102 | | - <url>https://github.com/jacopocarlini/fast-feature-flags-provider.git</url> |
103 | | - <tag>HEAD</tag> |
104 | | - </scm> |
105 | 181 | </project> |
0 commit comments