aoweb-struts-core-book
Used in: 
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
    <groupId>com.aoindustries</groupId>
    <artifactId>aoweb-struts-core-book</artifactId>
    <version>2.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
aoweb-struts-core - Core API for legacy Struts-based site framework with AOServ Platform control panels.
Copyright (C) 2016, 2017, 2018, 2019  AO Industries, Inc.
    support@aoindustries.com
    7262 Bull Pen Cir
    Mobile, AL 36695
This file is part of aoweb-struts-core.
aoweb-struts-core is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
aoweb-struts-core is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with aoweb-struts-core.  If not, see <http://www.gnu.org/licenses />.
-->
<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.aoindustries</groupId><artifactId>ao-oss-parent</artifactId><version>1.5.0<!-- -POST-SNAPSHOT --></version>
		<relativePath>../../../ao-oss-parent/pom.xml</relativePath>
	</parent>
	<groupId>com.aoindustries</groupId><artifactId>aoweb-struts-core-book</artifactId><version>2.0.0</version>
	<packaging>bundle</packaging>
	<properties>
		<!-- These values are copied from the project being documented -->
		<documented.groupId>com.aoindustries</documented.groupId><documented.artifactId>aoweb-struts-core</documented.artifactId>
		<documented.javaVersion>1.7</documented.javaVersion>
		<documented.javac.link.javaApi>${javac.link.javaApi.jdk7}</documented.javac.link.javaApi>
		<documented.name>AOWeb Struts Core</documented.name>
		<documented.shortTitle>Core</documented.shortTitle>
		<documented.url>https://aoindustries.com/aoweb-struts/core/</documented.url>
		<documented.description>Core API for legacy Struts-based site framework with AOServ Platform control panels.</documented.description>
		<documented.inceptionYear>2007</documented.inceptionYear>
		<documented.scm.url>https://github.com/aoindustries/${documented.artifactId}</documented.scm.url>
		<javadoc.breadcrumbs><![CDATA[<a target="_top" href="https://aoindustries.com/aoweb-struts/">AOWeb Struts</a>
/ <a target="_top" href="${project.url}">${shortTitle}</a>]]></javadoc.breadcrumbs>
		<shortTitle>Core Book</shortTitle>
		<description.html><![CDATA[Documentation for <a target="_top" href="${documented.url}">${documented.name}</a> in <a target="_top" href="https://semanticcms.com/">SemanticCMS</a> format.]]></description.html>
	</properties>
	<name>${documented.name} Book</name>
	<url>${documented.url}</url>
	<description>Documentation for ${documented.name} in SemanticCMS format.</description>
	<inceptionYear>${documented.inceptionYear}</inceptionYear>
	<scm>
		<!-- Can't inherit due to multi-module -->
		<connection>scm:git:git://github.com/aoindustries/${documented.artifactId}.git</connection>
		<developerConnection>scm:git:git@github.com:aoindustries/${documented.artifactId}.git</developerConnection>
		<url>${documented.scm.url}</url>
		<tag>aoweb-struts-core-book-2.0.0</tag>
	</scm>
	<build>
		<plugins>
			<!-- Add a copy of the taglib files from dependencies -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId><artifactId>maven-dependency-plugin</artifactId>
				<executions>
					<execution>
						<id>unpack-aoweb-struts.tld</id>
						<phase>prepare-package</phase>
						<goals>
							<goal>unpack</goal>
						</goals>
						<configuration>
							<artifactItems>
								<artifactItem>
									<groupId>com.aoindustries</groupId><artifactId>aoweb-struts-core</artifactId><version>2.0.0<!-- -POST-SNAPSHOT --></version>
									<type>jar</type>
									<includes>
										META-INF/aoweb-struts-aoweb.tld,
										META-INF/aoweb-struts-skin.tld
									</includes>
								</artifactItem>
							</artifactItems>
						</configuration>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId><artifactId>maven-resources-plugin</artifactId>
				<executions>
					<execution>
						<id>copy-aoweb-struts.tld</id>
						<phase>prepare-package</phase>
						<goals>
							<goal>copy-resources</goal>
						</goals>
						<configuration>
							<resources>
								<resource>
									<directory>${project.build.directory}/dependency/META-INF</directory>
									<includes>
										<include>aoweb-struts-aoweb.tld</include>
										<include>aoweb-struts-skin.tld</include>
									</includes>
								</resource>
							</resources>
							<!-- Put into META-INF/resources to be accessible as website content when jar included in WEB-INF/lib -->
							<outputDirectory>${project.build.outputDirectory}/META-INF/resources/aoweb-struts/core</outputDirectory>
						</configuration>
					</execution>
					<!-- Create a second copy in the resource directory used by maven-bundle-plugin -->
					<execution>
						<id>copy-aoweb-struts.tld-bundle</id>
						<phase>prepare-package</phase>
						<goals>
							<goal>copy-resources</goal>
						</goals>
						<configuration>
							<resources>
								<resource>
									<directory>${project.build.directory}/dependency/META-INF</directory>
									<includes>
										<include>aoweb-struts-aoweb.tld</include>
										<include>aoweb-struts-skin.tld</include>
									</includes>
								</resource>
							</resources>
							<!-- Put into META-INF/resources to be accessible as website content when jar included in WEB-INF/lib -->
							<outputDirectory>${project.build.directory}/resources-filtered/META-INF/resources/aoweb-struts/core</outputDirectory>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	<dependencyManagement>
		<dependencies>
			<!-- Java EE -->
			<dependency>
				<groupId>com.aoindustries</groupId><artifactId>javaee-web-api-bom</artifactId><version>6.0.0<!-- -POST-SNAPSHOT --></version>
				<type>pom</type>
				<scope>import</scope>
			</dependency>
		</dependencies>
	</dependencyManagement>
	<dependencies>
		<!-- Java EE -->
		<dependency>
			<groupId>javax.servlet</groupId><artifactId>javax.servlet-api</artifactId>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>javax.servlet.jsp</groupId><artifactId>javax.servlet.jsp-api</artifactId>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId><artifactId>jstl</artifactId>
		</dependency>
		<dependency>
			<groupId>org.glassfish.web</groupId><artifactId>jstl-impl</artifactId>
		</dependency>
		<!-- Direct -->
		<dependency>
			<groupId>com.aoindustries</groupId><artifactId>ao-badges</artifactId><version>1.2.0<!-- -POST-SNAPSHOT --></version>
		</dependency>
		<dependency>
			<groupId>com.aoindustries</groupId><artifactId>ao-lang</artifactId><version>3.3.0<!-- -POST-SNAPSHOT --></version>
		</dependency>
		<dependency>
			<groupId>com.aoindustries</groupId><artifactId>ao-taglib</artifactId><version>4.0.0<!-- -POST-SNAPSHOT --></version>
		</dependency>
		<dependency>
			<groupId>com.semanticcms</groupId><artifactId>semanticcms-changelog-taglib</artifactId><version>1.2.0<!-- -POST-SNAPSHOT --></version>
		</dependency>
		<dependency>
			<groupId>com.semanticcms</groupId><artifactId>semanticcms-core-model</artifactId><version>1.10.0<!-- -POST-SNAPSHOT --></version>
		</dependency>
		<dependency>
			<groupId>com.semanticcms</groupId><artifactId>semanticcms-core-taglib</artifactId><version>1.11.0<!-- -POST-SNAPSHOT --></version>
		</dependency>
		<dependency>
			<groupId>com.semanticcms</groupId><artifactId>semanticcms-section-taglib</artifactId><version>1.6.0<!-- -POST-SNAPSHOT --></version>
		</dependency>
		<dependency>
			<groupId>com.semanticcms</groupId><artifactId>semanticcms-tag-reference</artifactId><version>1.3.0<!-- -POST-SNAPSHOT --></version>
		</dependency>
		<!-- Dependency for dependencyversion-maven-plugin only -->
		<dependency>
			<groupId>com.aoindustries</groupId><artifactId>aoweb-struts-core</artifactId><version>2.0.0<!-- -POST-SNAPSHOT --></version>
			<type>pom</type>
			<scope>provided</scope>
			<optional>true</optional>
			<exclusions><exclusion><groupId>*</groupId><artifactId>*</artifactId></exclusion></exclusions>
		</dependency>
	</dependencies>
</project>