imagingbook-public
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.imagingbook</groupId>
<artifactId>imagingbook-public</artifactId>
<version>7.2.0</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- <groupId>com.imagingbook</groupId>-->
<artifactId>imagingbook-public</artifactId>
<version>7.2.0</version>
<packaging>pom</packaging>
<parent>
<groupId>com.imagingbook</groupId>
<artifactId>imagingbook-parent-pom</artifactId> <!-- interesting, this POM inherits from an inner module! -->
<version>7.2.0</version>
<relativePath>imagingbook-parent-pom/pom.xml</relativePath>
</parent>
<name>${project.groupId}:${project.artifactId}</name>
<description>
This is the root project of the imagingbook software suite accompanying the
image processing textbooks by W. Burger and M.J. Burge (Springer 2006-2022).
</description>
<inceptionYear>2006</inceptionYear>
<url>https://imagingbook.com</url>
<developers>
<developer>
<name>Wilhelm Burger (WB)</name>
</developer>
<developer>
<name>Mark J. Burge (MJB)</name>
</developer>
</developers>
<licenses>
<license>
<name>BSD 2-Clause "Simplified" License</name>
<url>http://opensource.org/licenses/BSD-2-Clause</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/imagingbook/imagingbook-public.git</connection>
<developerConnection>scm:git:ssh://github.com:imagingbook/imagingbook-public.git.git</developerConnection>
<url>http://github.com/imagingbook/imagingbook-public</url>
</scm>
<modules>
<module>imagingbook-parent-pom</module>
<module>imagingbook-core</module>
<module>imagingbook-common</module>
<module>imagingbook-spectral</module>
<module>imagingbook-pdf</module>
<module>imagingbook-sample-images</module>
<module>imagingbook-testing</module>
<module>imagingbook_plugins_book</module>
<module>imagingbook_plugins_demos</module>
</modules>
<properties>
<imagingbook.doctitle>Image Processing Software for Textbooks by W. Burger and M. Burge</imagingbook.doctitle>
<imagingbook.bottom>
<![CDATA[Copyright © {inceptionYear}–{currentYear},
<a href="https://imagingbook.com" target="new">Wilhelm Burger, Mark J. Burge</a>
<a href="http://opensource.org/licenses/BSD-2-Clause" target="new">
(BSD 2-Clause Simplified License)</a>.]]>
Build Date: ${maven.build.timestamp}
</imagingbook.bottom>
</properties>
<build>
<plugins>
<!-- <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-jar</id>
<phase>none</phase>
</execution>
<execution>
<id>javadoc-jar</id>
<phase>none</phase>
</execution>
</executions>
</plugin> -->
<!--<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<skippedModules>imagingbook-testing</skippedModules>
<outputDirectory>${project.basedir}/${imagingbook.javadocdir}</outputDirectory>
</configuration>
</plugin>-->
</plugins>
</build>
</project>