devlib-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.softsmithy.devlib</groupId>
<artifactId>devlib-core</artifactId>
<version>0.1</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>org.softsmithy.lib</groupId>
<artifactId>lib-parent</artifactId>
<version>0.1</version>
<relativePath>../../lib-parent</relativePath>
</parent>
<groupId>org.softsmithy.devlib</groupId>
<artifactId>devlib-core</artifactId>
<packaging>jar</packaging>
<version>0.1</version>
<name>SoftSmithy Development Utility Library - Core</name>
<url>http://www.softsmithy.org</url>
<description>A Java development utility library.</description>
<inceptionYear>2010</inceptionYear>
<scm>
<connection>${scm.connection}</connection>
<developerConnection>${scm.developerConnection}</developerConnection>
<url>${scm.url}</url>
</scm>
<properties>
<scm.connection>${scm.parent.connection}</scm.connection>
<scm.developerConnection>${scm.parent.developerConnection}</scm.developerConnection>
<scm.url>${scm.parent.url}</scm.url>
</properties>
<!-- Not inherited!?? -->
<prerequisites>
<maven>${maven.version}</maven>
</prerequisites>
<dependencies>
<dependency>
<groupId>org.softsmithy.lib</groupId>
<artifactId>lib-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<detectLinks>true</detectLinks>
<links>
<!-- javadoc link for javax.persistence -->
<link>http://java.sun.com/javaee/6/docs/api</link>
</links>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.4</version>
</plugin>
</plugins>
</reporting>
</project>