|
8 | 8 | <artifactId>fhir-repository</artifactId> |
9 | 9 | <packaging>pom</packaging> |
10 | 10 | <version>3.0</version> |
| 11 | + |
| 12 | + <name>OnFHIR Secure FHIR Repository</name> |
| 13 | + <description>onFHIR is an HL7 FHIR compliant secure, high-performance and scalable health data repository that can be used as the central data service for HL7 FHIR compliant healthcare applications.</description> |
| 14 | + <url>https://onfhir.io</url> |
| 15 | + |
| 16 | + <licenses> |
| 17 | + <license> |
| 18 | + <name>GNU General Public License v3.0</name> |
| 19 | + <url>https://www.gnu.org/licenses/gpl-3.0.en.html</url> |
| 20 | + </license> |
| 21 | + </licenses> |
| 22 | + |
| 23 | + <developers> |
| 24 | + <developer> |
| 25 | + <id>tnamli</id> |
| 26 | + <name>Tuncay Namlı</name> |
| 27 | + |
| 28 | + <organization>SRDC Corp.</organization> |
| 29 | + <organizationUrl>https://www.srdc.com.tr</organizationUrl> |
| 30 | + </developer> |
| 31 | + <developer> |
| 32 | + <id>msfyuksel</id> |
| 33 | + <name>Mustafa Yüksel</name> |
| 34 | + |
| 35 | + <organization>SRDC Corp.</organization> |
| 36 | + <organizationUrl>https://www.srdc.com.tr</organizationUrl> |
| 37 | + </developer> |
| 38 | + <developer> |
| 39 | + <id>sinaci</id> |
| 40 | + <name>Ali Anıl Sınacı</name> |
| 41 | + |
| 42 | + <organization>SRDC Corp.</organization> |
| 43 | + <organizationUrl>https://www.srdc.com.tr</organizationUrl> |
| 44 | + </developer> |
| 45 | + <developer> |
| 46 | + <id>postaci</id> |
| 47 | + <name>Şenan Postacı</name> |
| 48 | + |
| 49 | + <organization>SRDC Corp.</organization> |
| 50 | + <organizationUrl>https://www.srdc.com.tr</organizationUrl> |
| 51 | + </developer> |
| 52 | + <developer> |
| 53 | + <id>ozankose1992</id> |
| 54 | + <name>Ozan Köse</name> |
| 55 | + |
| 56 | + </developer> |
| 57 | + </developers> |
| 58 | + |
| 59 | + <scm> |
| 60 | + <connection>scm:git:git://github.com/srdc/onfhir.git</connection> |
| 61 | + <developerConnection>scm:git:ssh://github.com:srdc/onfhir.git</developerConnection> |
| 62 | + <url>https://github.com/srdc/onfhir/tree/master</url> |
| 63 | + </scm> |
| 64 | + |
11 | 65 | <modules> |
12 | 66 | <module>onfhir-common</module> |
13 | 67 | <module>onfhir-core</module> |
|
18 | 72 | <module>onfhir-path</module> |
19 | 73 | <module>onfhir-validation</module> |
20 | 74 | </modules> |
21 | | - <name>Onfhir Secure FHIR Repository</name> |
22 | 75 |
|
23 | 76 | <repositories> |
24 | | - <repository> |
| 77 | + <!--repository> |
25 | 78 | <id>maven-releases</id> |
26 | 79 | <url>http://nexus.srdc.com.tr/repository/maven-releases/</url> |
27 | 80 | </repository> |
28 | 81 | <repository> |
29 | 82 | <id>maven-snapshots</id> |
30 | 83 | <url>http://nexus.srdc.com.tr/repository/maven-snapshots/</url> |
31 | | - </repository> |
| 84 | + </repository--> |
32 | 85 | <repository> |
33 | 86 | <id>oss-snapshots</id> |
34 | 87 | <snapshots> |
|
68 | 121 | <nimbus-jose.version>7.9</nimbus-jose.version> |
69 | 122 | <nimbus-oidc.version>5.22</nimbus-oidc.version> |
70 | 123 | <apache-commons-io.version>2.6</apache-commons-io.version> |
| 124 | + |
| 125 | + <!-- release plugin versions --> |
| 126 | + <version.plugin.source>3.2.1</version.plugin.source> |
| 127 | + <version.plugin.javadoc>3.2.0</version.plugin.javadoc> |
| 128 | + <version.plugin.gpg>1.6</version.plugin.gpg> |
| 129 | + <version.plugin.nexus-staging>1.6.8</version.plugin.nexus-staging> |
71 | 130 | </properties> |
72 | 131 |
|
73 | 132 | <build> |
|
154 | 213 | <artifactId>maven-compiler-plugin</artifactId> |
155 | 214 | <version>3.8.1</version> |
156 | 215 | </plugin> |
| 216 | + <plugin> |
| 217 | + <groupId>org.apache.maven.plugins</groupId> |
| 218 | + <artifactId>maven-source-plugin</artifactId> |
| 219 | + <version>${version.plugin.source}</version> |
| 220 | + </plugin> |
| 221 | + <plugin> |
| 222 | + <groupId>org.apache.maven.plugins</groupId> |
| 223 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 224 | + <version>${version.plugin.javadoc}</version> |
| 225 | + </plugin> |
| 226 | + <plugin> |
| 227 | + <groupId>org.apache.maven.plugins</groupId> |
| 228 | + <artifactId>maven-gpg-plugin</artifactId> |
| 229 | + <version>${version.plugin.gpg}</version> |
| 230 | + </plugin> |
| 231 | + <plugin> |
| 232 | + <groupId>org.sonatype.plugins</groupId> |
| 233 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 234 | + <version>${version.plugin.nexus-staging}</version> |
| 235 | + </plugin> |
157 | 236 | </plugins> |
158 | 237 | </pluginManagement> |
159 | 238 | </build> |
160 | 239 |
|
| 240 | + <profiles> |
| 241 | + <profile> |
| 242 | + <id>release</id> |
| 243 | + <activation> |
| 244 | + <property> |
| 245 | + <name>gpg.passphrase</name> |
| 246 | + </property> |
| 247 | + </activation> |
| 248 | + <build> |
| 249 | + <plugins> |
| 250 | + <plugin> |
| 251 | + <groupId>org.apache.maven.plugins</groupId> |
| 252 | + <artifactId>maven-source-plugin</artifactId> |
| 253 | + <executions> |
| 254 | + <execution> |
| 255 | + <id>attach-source</id> |
| 256 | + <phase>compile</phase> |
| 257 | + <goals> |
| 258 | + <goal>jar-no-fork</goal> |
| 259 | + </goals> |
| 260 | + </execution> |
| 261 | + </executions> |
| 262 | + </plugin> |
| 263 | + <plugin> |
| 264 | + <groupId>net.alchim31.maven</groupId> |
| 265 | + <artifactId>scala-maven-plugin</artifactId> |
| 266 | + <executions> |
| 267 | + <execution> |
| 268 | + <id>attach-javadocs</id> |
| 269 | + <goals> |
| 270 | + <goal>doc-jar</goal> |
| 271 | + </goals> |
| 272 | + </execution> |
| 273 | + </executions> |
| 274 | + </plugin> |
| 275 | + <plugin> |
| 276 | + <groupId>org.apache.maven.plugins</groupId> |
| 277 | + <artifactId>maven-gpg-plugin</artifactId> |
| 278 | + <executions> |
| 279 | + <execution> |
| 280 | + <id>sign-artifacts</id> |
| 281 | + <phase>verify</phase> |
| 282 | + <goals> |
| 283 | + <goal>sign</goal> |
| 284 | + </goals> |
| 285 | + <configuration> |
| 286 | + <gpgArguments> |
| 287 | + <arg>--pinentry-mode</arg> |
| 288 | + <arg>loopback</arg> |
| 289 | + </gpgArguments> |
| 290 | + </configuration> |
| 291 | + </execution> |
| 292 | + </executions> |
| 293 | + </plugin> |
| 294 | + <plugin> |
| 295 | + <groupId>org.sonatype.plugins</groupId> |
| 296 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 297 | + <extensions>true</extensions> |
| 298 | + <configuration> |
| 299 | + <serverId>ossrh</serverId> |
| 300 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 301 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 302 | + </configuration> |
| 303 | + </plugin> |
| 304 | + </plugins> |
| 305 | + </build> |
| 306 | + </profile> |
| 307 | + </profiles> |
| 308 | + |
161 | 309 | <dependencyManagement> |
162 | 310 | <dependencies> |
163 | 311 | <!-- Scala Language --> |
|
370 | 518 | </dependencies> |
371 | 519 |
|
372 | 520 | <distributionManagement> |
| 521 | + <snapshotRepository> |
| 522 | + <id>ossrh</id> |
| 523 | + <name>Sonatype Nexus Snapshots</name> |
| 524 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 525 | + </snapshotRepository> |
| 526 | + <repository> |
| 527 | + <id>ossrh</id> |
| 528 | + <name>Nexus Release Repository</name> |
| 529 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
| 530 | + </repository> |
| 531 | + </distributionManagement> |
| 532 | + |
| 533 | + <!--distributionManagement> |
373 | 534 | <snapshotRepository> |
374 | 535 | <id>maven-snapshots</id> |
375 | 536 | <url>https://nexus.srdc.com.tr/repository/maven-snapshots/</url> |
|
378 | 539 | <id>maven-releases</id> |
379 | 540 | <url>https://nexus.srdc.com.tr/repository/maven-releases/</url> |
380 | 541 | </repository> |
381 | | - </distributionManagement> |
| 542 | + </distributionManagement--> |
382 | 543 |
|
383 | | - <!--repositories> |
384 | | - <repository> |
385 | | - <id>local-repo</id> |
386 | | - <name>Local JAR Repository</name> |
387 | | - <url>file://${project.basedir}/lib</url> |
388 | | - </repository> |
389 | | - </repositories--> |
390 | 544 | </project> |
0 commit comments