|
6 | 6 |
|
7 | 7 | <groupId>io.github.sideshowcoder</groupId> |
8 | 8 | <artifactId>dropwizard-openfeature</artifactId> |
9 | | - <version>0.0.2-SNAPSHOT</version> |
| 9 | + <version>0.0.2</version> |
10 | 10 | <packaging>jar</packaging> |
11 | 11 |
|
12 | 12 | <name>dropwizard-openfeature</name> |
|
30 | 30 | <maven-surefire-plugin.version>3.5.3</maven-surefire-plugin.version> |
31 | 31 | <maven-failsafe-plugin.version>3.5.3</maven-failsafe-plugin.version> |
32 | 32 | <mockito.version>5.17.0</mockito.version> |
| 33 | + <central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version> |
33 | 34 | </properties> |
34 | 35 |
|
35 | 36 | <developers> |
36 | 37 | <developer> |
| 38 | + <id>philipp.fehre</id> |
37 | 39 | <name>Philipp Fehre</name> |
38 | 40 | <url>https://github.com/sideshowcoder</url> |
39 | 41 | </developer> |
|
47 | 49 | </license> |
48 | 50 | </licenses> |
49 | 51 |
|
| 52 | + <issueManagement> |
| 53 | + <system>github</system> |
| 54 | + <url>https://github.com/sideshowcoder/dropwizard-openfeature/issues</url> |
| 55 | + </issueManagement> |
| 56 | + |
50 | 57 | <scm> |
51 | 58 | <url>https://github.com/sideshowcoder/dropwizard-openfeature/tree/master</url> |
52 | 59 | < connection>scm:git: [email protected]:sideshowcoder/dropwizard-openfeature.git</ connection> |
|
73 | 80 | </dependencyManagement> |
74 | 81 |
|
75 | 82 | <distributionManagement> |
76 | | - <snapshotRepository> |
77 | | - <id>github</id> |
78 | | - <name>GitHub dropwizard-openfeature Apache Maven Packages</name> |
79 | | - <url>https://maven.pkg.github.com/sideshowcoder/dropwizard-openfeature</url> |
80 | | - </snapshotRepository> |
| 83 | + <repository> |
| 84 | + <id>central</id> |
| 85 | + <name>Maven Central</name> |
| 86 | + <url>https://central.sonatype.com</url> |
| 87 | + </repository> |
81 | 88 | </distributionManagement> |
82 | 89 |
|
83 | 90 | <dependencies> |
|
156 | 163 | <target>${java.version}</target> |
157 | 164 | </configuration> |
158 | 165 | </plugin> |
159 | | - |
160 | 166 | <plugin> |
161 | 167 | <groupId>org.jacoco</groupId> |
162 | 168 | <artifactId>jacoco-maven-plugin</artifactId> |
|
187 | 193 | <profile> |
188 | 194 | <id>release</id> |
189 | 195 |
|
190 | | - <activation> |
191 | | - <property> |
192 | | - <name>release</name> |
193 | | - </property> |
194 | | - </activation> |
195 | | - |
196 | 196 | <build> |
197 | 197 | <plugins> |
| 198 | + <plugin> |
| 199 | + <groupId>org.sonatype.central</groupId> |
| 200 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 201 | + <version>${central-publishing-maven-plugin.version}</version> |
| 202 | + <extensions>true</extensions> |
| 203 | + <configuration> |
| 204 | + <publishingServerId>central</publishingServerId> |
| 205 | + <autoPublish>true</autoPublish> |
| 206 | + </configuration> |
| 207 | + </plugin> |
198 | 208 | <plugin> |
199 | 209 | <groupId>org.apache.maven.plugins</groupId> |
200 | 210 | <artifactId>maven-source-plugin</artifactId> |
|
0 commit comments