lvgdist
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>gov.nih.nlm.nls.lvg</groupId> <artifactId>lvgdist</artifactId> <version>2020.0</version> </dependency>
<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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <groupId>gov.nih.nlm.nls.lvg</groupId> <artifactId>lvgdist</artifactId> <version>2020.0</version> <name>NLM LVG Distribution</name> <description>NLM LVG Distribution</description> <url>http://lexsrv3.nlm.nih.gov/LexSysGroup/Projects/lvg/current/web/download.html</url> <packaging>pom</packaging> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Brian Carlsen</name> <email>bcarlsen@westcoastinformatics.com</email> <organization>West Coast Informatics, LLC</organization> <organizationUrl>http://www.westcoastinformatics.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:bcarlsenca/lvgdist.git</connection> <developerConnection>scm:git:git@github.com:bcarlsenca/lvgdist.git</developerConnection> <url>git@github.com:bcarlsenca/lvgdist</url> </scm> <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> <!-- the Staging Maven plugin (see distributionManagement) --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!-- Attach lvg2020dist.jar --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>attach-artifact</id> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>${basedir}/src/main/resources/lvg2020dist.jar</file> <type>jar</type> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> <!-- Profiles --> <profiles> <!-- Isolate release process from normal build configuration --> <profile> <id>release</id> <build> <plugins> <!-- Maven GPG plugin is used to sign the components --> <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> </plugins> </build> </profile> </profiles> </project>