semanticcms-core-theme-base
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.semanticcms</groupId> <artifactId>semanticcms-core-theme-base</artifactId> <version>1.5.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- semanticcms-core-theme-base - Base SemanticCMS theme to simplify the implementation of other themes. Copyright (C) 2016, 2017, 2018, 2019, 2020 AO Industries, Inc. support@aoindustries.com 7262 Bull Pen Cir Mobile, AL 36695 This file is part of semanticcms-core-theme-base. semanticcms-core-theme-base 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. semanticcms-core-theme-base 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 semanticcms-core-theme-base. 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.semanticcms</groupId><artifactId>semanticcms-parent</artifactId><version>1.10.0<!-- -POST-SNAPSHOT --></version> <relativePath>../../parent/pom.xml</relativePath> </parent> <groupId>com.semanticcms</groupId><artifactId>semanticcms-core-theme-base</artifactId><version>1.5.0</version> <packaging>bundle</packaging> <properties> <javadoc.breadcrumbs><![CDATA[<a target="${javadoc.target}" href="https://semanticcms.com/">SemanticCMS</a> / <a target="${javadoc.target}" href="https://semanticcms.com/core/">Core</a> / <a target="${javadoc.target}" href="${project.url}">${shortTitle}</a>]]></javadoc.breadcrumbs> <shortTitle>Theme Base</shortTitle> <description.html><![CDATA[Base <a target="${javadoc.target}" href="https://semanticcms.com/">SemanticCMS</a> theme to simplify the implementation of other themes.]]></description.html> </properties> <name>SemanticCMS Core Theme Base</name> <url>https://semanticcms.com/core/theme-base/</url> <description>Base SemanticCMS theme to simplify the implementation of other themes.</description> <inceptionYear>2013</inceptionYear> <scm> <connection>scm:git:git://github.com/aoindustries/semanticcms-core-theme-base.git</connection> <developerConnection>scm:git:git@github.com:aoindustries/semanticcms-core-theme-base.git</developerConnection> <url>https://github.com/aoindustries/semanticcms-core-theme-base</url> <tag>semanticcms-core-theme-base-1.5.0</tag> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/aoindustries/semanticcms-core-theme-base/issues</url> </issueManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId><artifactId>maven-dependency-plugin</artifactId> <configuration> <usedDependencies> <!-- JSP Only --> <dependency>com.aoindustries:ao-encoding-taglib</dependency> <dependency>com.aoindustries:ao-taglib</dependency> <dependency>com.aoindustries:ao-web-resources-taglib</dependency> <dependency>javax.servlet:jstl</dependency> <dependency>com.semanticcms:semanticcms-core-taglib</dependency> <!-- Runtime Direct --> <dependency>org.glassfish.web:jstl-impl</dependency> </usedDependencies> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>offlineLinks</id><activation><file><exists>src/main/java</exists></file></activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId><artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack.offlineLinks</id><phase>generate-sources</phase><goals><goal>unpack</goal></goals> <configuration> <artifactItems> <!-- Direct --> <!-- JSP Only: <groupId>com.aoindustries</groupId><artifactId>ao-encoding-taglib</artifactId> --> <artifactItem> <groupId>com.aoindustries</groupId><artifactId>ao-servlet-util</artifactId> <classifier>javadoc</classifier><includes>element-list, package-list</includes> <outputDirectory>${project.build.directory}/offlineLinks/com.aoindustries/ao-servlet-util</outputDirectory> </artifactItem> <!-- JSP Only: <groupId>com.aoindustries</groupId><artifactId>ao-taglib</artifactId> --> <!-- JSP Only: <groupId>com.aoindustries</groupId><artifactId>ao-web-resources-taglib</artifactId> --> <!-- ao-javadoc-offline: <groupId>javax.servlet</groupId><artifactId>javax.servlet-api</artifactId> --> <!-- ao-javadoc-offline: <groupId>javax.servlet.jsp</groupId><artifactId>javax.servlet.jsp-api</artifactId> --> <!-- JSP Only: <groupId>javax.servlet</groupId><artifactId>jstl</artifactId> --> <artifactItem> <groupId>com.semanticcms</groupId><artifactId>semanticcms-core-model</artifactId> <classifier>javadoc</classifier><includes>element-list, package-list</includes> <outputDirectory>${project.build.directory}/offlineLinks/com.semanticcms/semanticcms-core-model</outputDirectory> </artifactItem> <artifactItem> <groupId>com.semanticcms</groupId><artifactId>semanticcms-core-servlet</artifactId> <classifier>javadoc</classifier><includes>element-list, package-list</includes> <outputDirectory>${project.build.directory}/offlineLinks/com.semanticcms/semanticcms-core-servlet</outputDirectory> </artifactItem> <!-- JSP Only: <groupId>com.semanticcms</groupId><artifactId>semanticcms-core-taglib</artifactId> --> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId><artifactId>maven-javadoc-plugin</artifactId> <configuration> <offlineLinks> <!-- Direct --> <!-- JSP Only: <groupId>com.aoindustries</groupId><artifactId>ao-encoding-taglib</artifactId> --> <offlineLink> <url>https://aoindustries.com/ao-servlet-util/apidocs/</url> <location>${project.build.directory}/offlineLinks/com.aoindustries/ao-servlet-util</location> </offlineLink> <!-- JSP Only: <groupId>com.aoindustries</groupId><artifactId>ao-taglib</artifactId> --> <!-- JSP Only: <groupId>com.aoindustries</groupId><artifactId>ao-web-resources-taglib</artifactId> --> <!-- Java EE: <groupId>javax.servlet</groupId><artifactId>javax.servlet-api</artifactId> --> <!-- Java EE: <groupId>javax.servlet.jsp</groupId><artifactId>javax.servlet.jsp-api</artifactId> --> <!-- JSP Only: <groupId>javax.servlet</groupId><artifactId>jstl</artifactId> --> <offlineLink> <url>https://semanticcms.com/core/model/apidocs/</url> <location>${project.build.directory}/offlineLinks/com.semanticcms/semanticcms-core-model</location> </offlineLink> <offlineLink> <url>https://semanticcms.com/core/servlet/apidocs/</url> <location>${project.build.directory}/offlineLinks/com.semanticcms/semanticcms-core-servlet</location> </offlineLink> <!-- JSP Only: <groupId>com.semanticcms</groupId><artifactId>semanticcms-core-taglib</artifactId> --> <!-- Java SE --> <offlineLink> <url>${javadoc.link.javase}</url> <location>${project.build.directory}/offlineLinks/com/aoindustries/javadoc/offline/javase/${javase.release}</location> </offlineLink> <!-- Java EE --> <offlineLink> <url>${javadoc.link.javaee}</url> <location>${project.build.directory}/offlineLinks/com/aoindustries/javadoc/offline/javaee/${javaee.version}</location> </offlineLink> </offlineLinks> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencyManagement> <dependencies> <!-- Direct --> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-encoding-taglib</artifactId><version>1.0.1<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-servlet-util</artifactId><version>3.0.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-taglib</artifactId><version>6.0.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-web-resources-taglib</artifactId><version>0.2.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <!-- javaee-web-api-bom: <groupId>javax.servlet</groupId><artifactId>javax.servlet-api</artifactId> --> <!-- javaee-web-api-bom: <groupId>javax.servlet.jsp</groupId><artifactId>javax.servlet.jsp-api</artifactId> --> <!-- javaee-web-api-bom: <groupId>javax.servlet</groupId><artifactId>jstl</artifactId> --> <dependency> <groupId>com.semanticcms</groupId><artifactId>semanticcms-core-model</artifactId><version>1.13.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.semanticcms</groupId><artifactId>semanticcms-core-servlet</artifactId><version>1.16.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.semanticcms</groupId><artifactId>semanticcms-core-taglib</artifactId><version>1.13.1<!-- ${POST-SNAPSHOT} --></version> </dependency> <!-- Transitive --> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-collections</artifactId><version>1.2.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-concurrent</artifactId><version>3.0.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-encoding</artifactId><version>3.1.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-encoding-servlet</artifactId><version>3.0.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-fluent-html</artifactId><version>0.2.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-fluent-html-servlet</artifactId><version>0.1.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-io-buffer</artifactId><version>3.3.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-lang</artifactId><version>4.6.1<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-net-types</artifactId><version>1.2.1<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-servlet-filter</artifactId><version>2.3.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-servlet-last-modified</artifactId><version>1.2.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-servlet-subrequest</artifactId><version>1.1.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-tempfiles</artifactId><version>2.0.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-tempfiles-servlet</artifactId><version>1.1.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-tlds</artifactId><version>1.2.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-web-resources-registry</artifactId><version>0.2.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-web-resources-renderer</artifactId><version>0.2.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-web-resources-servlet</artifactId><version>0.1.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>aocode-public</artifactId><version>4.3.0<!-- ${POST-SNAPSHOT} --></version> </dependency> <dependency> <groupId>org.apache.commons</groupId><artifactId>commons-lang3</artifactId><version>3.11</version> </dependency> <dependency> <groupId>joda-time</groupId><artifactId>joda-time</artifactId><version>2.10.8</version> </dependency> <!-- Runtime Direct --> <!-- javaee-web-api-bom: <groupId>org.glassfish.web</groupId><artifactId>jstl-impl</artifactId> --> <!-- BOM --> <dependency> <groupId>com.aoindustries</groupId><artifactId>javaee-web-api-bom</artifactId><version>6.0.1<!-- ${POST-SNAPSHOT} --></version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Direct --> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-encoding-taglib</artifactId> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-servlet-util</artifactId> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-taglib</artifactId> </dependency> <dependency> <groupId>com.aoindustries</groupId><artifactId>ao-web-resources-taglib</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId><artifactId>javax.servlet-api</artifactId> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId><artifactId>javax.servlet.jsp-api</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId><artifactId>jstl</artifactId> </dependency> <dependency> <groupId>com.semanticcms</groupId><artifactId>semanticcms-core-model</artifactId> </dependency> <dependency> <groupId>com.semanticcms</groupId><artifactId>semanticcms-core-servlet</artifactId> </dependency> <dependency> <groupId>com.semanticcms</groupId><artifactId>semanticcms-core-taglib</artifactId> </dependency> <!-- Runtime Direct --> <dependency> <groupId>org.glassfish.web</groupId><artifactId>jstl-impl</artifactId> <scope>runtime</scope> </dependency> </dependencies> </project>