softsmithy-devlib-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.softsmithy.devlib</groupId>
<artifactId>softsmithy-devlib-core</artifactId>
<version>2.1.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Notice
The contents of this file are subject to the COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)
Version 1.0 (the "License"); you may not use this file except in
compliance with the License. A copy of the License is available at
http://www.opensource.org/licenses/cddl1.txt
The Original Code is SoftSmithy Utility Library. The Initial Developer of the
Original Code is Florian Brunner (Sourceforge.net user: puce). All Rights Reserved.
Contributor(s): .
-->
<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>softsmithy-lib-parent</artifactId>
<version>2.1.1</version>
<relativePath>../../softsmithy-lib-parent/pom.xml</relativePath>
</parent>
<groupId>org.softsmithy.devlib</groupId>
<artifactId>softsmithy-devlib-core</artifactId>
<packaging>bundle</packaging>
<name>SoftSmithy Development Utility Library - Core</name>
<description>A Java development utility library.</description>
<inceptionYear>2010</inceptionYear>
<!-- required for Javadoc (apidocs) linking -->
<url>https://www.softsmithy.org/softsmithy-lib/devlib/${project.version}/docs/site</url>
<scm>
<connection>${scm.connection}</connection>
<developerConnection>${scm.developerConnection}</developerConnection>
<url>${scm.url}</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<site>
<id>github</id>
<url>${distributionManagement.parent.url}/${project.artifactId}/</url>
</site>
</distributionManagement>
<properties>
<scm.connection>${scm.parent.connection}</scm.connection>
<scm.developerConnection>${scm.parent.developerConnection}</scm.developerConnection>
<scm.url>${scm.parent.url}</scm.url>
<distributionManagement.base.url>github:http://softsmithy.github.io/softsmithy-lib/devlib/${project.version}</distributionManagement.base.url>
</properties>
<!-- Not inherited!?? -->
<prerequisites>
<maven>${maven.version}</maven>
</prerequisites>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>org.softsmithy.devlib.core</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.softsmithy.lib</groupId>
<artifactId>softsmithy-lib-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.softsmithy.lib</groupId>
<artifactId>softsmithy-lib-persistence</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>