smi-common-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>au.gov.nehta</groupId> <artifactId>smi-common-utils</artifactId> <version>1.2.1</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> <groupId>au.gov.nehta</groupId> <artifactId>smi-common-utils</artifactId> <version>1.2.1</version> <name>SMI Common Utils</name> <description>Java classes to assist with CDA library development</description> <url>https://github.com/AuDigitalHealth/smi-common-utils-java</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Admin Open Source</name> <email>admin.opensource@digitalhealth.gov.au</email> <organization>Australian Digital Health Agency</organization> <url>www.digitalhealth.gov.au</url> <organizationUrl>www.digitalhealth.gov.au</organizationUrl> <roles> <role>Admin</role> </roles> <timezone>UTC+10:00</timezone> </developer> </developers> <scm> <connection>scm:git:https://github.com/AuDigitalHealth/smi-common-utils-java.git </connection> <developerConnection> scm:git:https://github.com/AuDigitalHealth/smi-common-utils-java.git </developerConnection> <url>https://github.com/AuDigitalHealth/smi-common-utils-java.git</url> <tag>smi-common-utils-1.2.1</tag> </scm> <distributionManagement> <snapshotRepository> <id>nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>nexus-releases</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.30</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.30</version> </dependency> </dependencies> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <encoding>UTF-8</encoding> <project.build.sourceEncoding>${encoding}</project.build.sourceEncoding> <project.reporting.outputEncoding>${encoding}</project.reporting.outputEncoding> <project.resources.sourceEncoding>${encoding}</project.resources.sourceEncoding> <archetype.encoding>${encoding}</archetype.encoding> </properties> <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> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <verbose>true</verbose> <!--<skip>true</skip>--> <doclint>none</doclint> <encoding>${encoding}</encoding> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0-M1</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>nexus-releases</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>3.0.0-M4</version> <configuration> <showSuccess>false</showSuccess> <title>CDA Schema Java Tests Output</title> <outputDirectory>${basedir}/target/surefire-reports</outputDirectory> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <encoding>UTF-8</encoding> <enableAssertions>true</enableAssertions> <forkCount>3</forkCount> <reuseForks>true</reuseForks> <argLine>-Xmx1024m</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.0-M1</version> <configuration> <branchName>mavenization</branchName> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <localCheckout>true</localCheckout> <dryRun>false</dryRun> <goals>deploy</goals> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <compilerArgs> <arg>-Xlint:unchecked</arg> <arg>-verbose</arg> </compilerArgs> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <encoding>${project.build.sourceEncoding}</encoding> <debug>true</debug><!--By default it is set to true--> <debuglevel>lines,vars,source</debuglevel> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> <verbose>true</verbose> </configuration> </plugin> </plugins> </build> </project>