classifier
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.jlgrock.snp</groupId>
<artifactId>classifier</artifactId>
<version>0.3</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.jlgrock.snp</groupId>
<artifactId>snp</artifactId>
<version>0.3</version>
</parent>
<artifactId>classifier</artifactId>
<name>classifier</name>
<packaging>jar</packaging>
<properties>
<project.rootdir>${project.parent.basedir}</project.rootdir>
</properties>
<dependencies>
<dependency>
<groupId>com.github.jlgrock.snp</groupId>
<artifactId>apis</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aop</artifactId>
</dependency>
<dependency>
<groupId>gov.vha.isaac.newtons-cradle.modules</groupId>
<artifactId>newtons-cradle-extension</artifactId>
</dependency>
<dependency>
<groupId>gov.vha.isaac.query-service.modules</groupId>
<artifactId>query-implementation</artifactId>
</dependency>
<dependency>
<groupId>gov.vha.isaac.logic.modules</groupId>
<artifactId>logic</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>1.7.10</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<configuration>
<aspectLibraries>
<aspectLibrary>
<groupId>com.github.jlgrock.snp</groupId>
<artifactId>aop</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>codeQuality</id>
<build>
<plugins>
<!-- Check the project for issues in style guidelines -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<!-- check for significant bugs that might have been missed in development -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
</plugin>
<!-- check for significant bugs that might have been missed in development -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>