ucum
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.fhir</groupId> <artifactId>ucum</artifactId> <version>1.0.9</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <packaging>jar</packaging> <groupId>org.fhir</groupId> <artifactId>ucum</artifactId> <version>1.0.9</version> <name>Ucum-java</name> <description>FHIR Java library providing UCUM Services</description> <url>http://fhir.org</url> <properties> <junit_jupiter_version>5.9.2</junit_jupiter_version> </properties> <repositories> <repository> <id>oss-snapshot</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>github-releases</id> <url>https://maven.pkg.github.com/FHIR/Ucum-java/</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <scm> <connection>scm:git:git@github.com:FHIR/Ucum-java.git</connection> <developerConnection>scm:git:git@github.com:FHIR/Ucum-java.git</developerConnection> <url>git@github.com:FHIR/Ucum-java.git</url> </scm> <licenses> <license> <name>BSD 3 Clause</name> <url>http://opensource.org/licenses/BSD-3-Clause</url> </license> </licenses> <developers> <developer> <name>Grahame Grieve</name> </developer> <developer> <name>James Agnew</name> </developer> </developers> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${junit_jupiter_version}</version> <type>pom</type> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit_jupiter_version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit_jupiter_version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <version>11.1.1</version> <configuration> <nvdApiKeyEnvironmentVariable>NVD_API_KEY</nvdApiKeyEnvironmentVariable> <suppressionFiles> <suppressionFile>cve-suppression.xml</suppressionFile> </suppressionFiles> <formats>sarif,html</formats> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.5.0</version> <executions> <execution> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <mainClass>org.fhir.ucum.UcumFunctionalTests</mainClass> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> <configuration> <systemPropertyVariables> <definitions>${definitions}</definitions> <tests>${tests}</tests> </systemPropertyVariables> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>empty-javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <classesDirectory>${basedir}/javadoc</classesDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.2.0</version> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>ossrh-repo</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>deployToSonatype</name> </property> </activation> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.keyname}</keyname> <passphraseServerId>${gpg.keyname}</passphraseServerId> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>github-repo</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>deployToGitHub</name> </property> </activation> <distributionManagement> <snapshotRepository> <id>github</id> <url>https://maven.pkg.github.com/FHIR/Ucum-java</url> </snapshotRepository> <repository> <id>github</id> <url>https://maven.pkg.github.com/FHIR/Ucum-java</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.keyname}</keyname> <passphraseServerId>${gpg.keyname}</passphraseServerId> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>CHECKSTYLE</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <skip>false</skip> </configuration> <executions> <execution> <phase>process-sources</phase> <goals> <goal>checkstyle</goal> </goals> <configuration> <failsOnError>true</failsOnError> <suppressionsLocation>${project.basedir}/checkstyle_suppressions.xml</suppressionsLocation> <enableRulesSummary>true</enableRulesSummary> <enableSeveritySummary>true</enableSeveritySummary> <consoleOutput>true</consoleOutput> <configLocation>${project.basedir}/checkstyle.xml</configLocation> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>OWASP_CHECK</id> <build> <plugins> <plugin> <groupId>org.owasp</groupId> <artifactId>dependency-check-maven</artifactId> <configuration> <suppressionFiles> <suppressionFile>owasp-suppression-file.xml</suppressionFile> </suppressionFiles> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> <configuration> <failBuildOnCVSS>10</failBuildOnCVSS> <skipTestScope>true</skipTestScope> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>