-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
👷 build(All): Release 3.0 stable version
- Loading branch information
Showing
2 changed files
with
175 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,60 @@ | |
<artifactId>fhir-repository</artifactId> | ||
<packaging>pom</packaging> | ||
<version>3.0</version> | ||
|
||
<name>OnFHIR Secure FHIR Repository</name> | ||
<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> | ||
<url>https://onfhir.io</url> | ||
|
||
<licenses> | ||
<license> | ||
<name>GNU General Public License v3.0</name> | ||
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<id>tnamli</id> | ||
<name>Tuncay Namlı</name> | ||
<email>[email protected]</email> | ||
<organization>SRDC Corp.</organization> | ||
<organizationUrl>https://www.srdc.com.tr</organizationUrl> | ||
</developer> | ||
<developer> | ||
<id>msfyuksel</id> | ||
<name>Mustafa Yüksel</name> | ||
<email>[email protected]</email> | ||
<organization>SRDC Corp.</organization> | ||
<organizationUrl>https://www.srdc.com.tr</organizationUrl> | ||
</developer> | ||
<developer> | ||
<id>sinaci</id> | ||
<name>Ali Anıl Sınacı</name> | ||
<email>[email protected]</email> | ||
<organization>SRDC Corp.</organization> | ||
<organizationUrl>https://www.srdc.com.tr</organizationUrl> | ||
</developer> | ||
<developer> | ||
<id>postaci</id> | ||
<name>Şenan Postacı</name> | ||
<email>[email protected]</email> | ||
<organization>SRDC Corp.</organization> | ||
<organizationUrl>https://www.srdc.com.tr</organizationUrl> | ||
</developer> | ||
<developer> | ||
<id>ozankose1992</id> | ||
<name>Ozan Köse</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/srdc/onfhir.git</connection> | ||
<developerConnection>scm:git:ssh://github.com:srdc/onfhir.git</developerConnection> | ||
<url>https://github.com/srdc/onfhir/tree/master</url> | ||
</scm> | ||
|
||
<modules> | ||
<module>onfhir-common</module> | ||
<module>onfhir-core</module> | ||
|
@@ -18,17 +72,16 @@ | |
<module>onfhir-path</module> | ||
<module>onfhir-validation</module> | ||
</modules> | ||
<name>Onfhir Secure FHIR Repository</name> | ||
|
||
<repositories> | ||
<repository> | ||
<!--repository> | ||
<id>maven-releases</id> | ||
<url>http://nexus.srdc.com.tr/repository/maven-releases/</url> | ||
</repository> | ||
<repository> | ||
<id>maven-snapshots</id> | ||
<url>http://nexus.srdc.com.tr/repository/maven-snapshots/</url> | ||
</repository> | ||
</repository--> | ||
<repository> | ||
<id>oss-snapshots</id> | ||
<snapshots> | ||
|
@@ -68,6 +121,12 @@ | |
<nimbus-jose.version>7.9</nimbus-jose.version> | ||
<nimbus-oidc.version>5.22</nimbus-oidc.version> | ||
<apache-commons-io.version>2.6</apache-commons-io.version> | ||
|
||
<!-- release plugin versions --> | ||
<version.plugin.source>3.2.1</version.plugin.source> | ||
<version.plugin.javadoc>3.2.0</version.plugin.javadoc> | ||
<version.plugin.gpg>1.6</version.plugin.gpg> | ||
<version.plugin.nexus-staging>1.6.8</version.plugin.nexus-staging> | ||
</properties> | ||
|
||
<build> | ||
|
@@ -154,10 +213,99 @@ | |
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.8.1</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>${version.plugin.source}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>${version.plugin.javadoc}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>${version.plugin.gpg}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>${version.plugin.nexus-staging}</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
|
||
<profiles> | ||
<profile> | ||
<id>release</id> | ||
<activation> | ||
<property> | ||
<name>gpg.passphrase</name> | ||
</property> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>attach-source</id> | ||
<phase>compile</phase> | ||
<goals> | ||
<goal>jar-no-fork</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>net.alchim31.maven</groupId> | ||
<artifactId>scala-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>doc-jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
<configuration> | ||
<gpgArguments> | ||
<arg>--pinentry-mode</arg> | ||
<arg>loopback</arg> | ||
</gpgArguments> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>ossrh</serverId> | ||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
<autoReleaseAfterClose>false</autoReleaseAfterClose> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<!-- Scala Language --> | ||
|
@@ -370,6 +518,19 @@ | |
</dependencies> | ||
|
||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<name>Sonatype Nexus Snapshots</name> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>ossrh</id> | ||
<name>Nexus Release Repository</name> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<!--distributionManagement> | ||
<snapshotRepository> | ||
<id>maven-snapshots</id> | ||
<url>https://nexus.srdc.com.tr/repository/maven-snapshots/</url> | ||
|
@@ -378,13 +539,6 @@ | |
<id>maven-releases</id> | ||
<url>https://nexus.srdc.com.tr/repository/maven-releases/</url> | ||
</repository> | ||
</distributionManagement> | ||
</distributionManagement--> | ||
|
||
<!--repositories> | ||
<repository> | ||
<id>local-repo</id> | ||
<name>Local JAR Repository</name> | ||
<url>file://${project.basedir}/lib</url> | ||
</repository> | ||
</repositories--> | ||
</project> |