| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- | |
| Licensed to the Apache Software Foundation (ASF) under one or more | |
| contributor license agreements. See the NOTICE file distributed with | |
| this work for additional information regarding copyright ownership. | |
| The ASF licenses this file to You under the Apache License, Version 2.0 | |
| (the "License"); you may not use this file except in compliance with | |
| the License. You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software | |
| distributed under the License is distributed on an "AS IS" BASIS, | |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| See the License for the specific language governing permissions and | |
| limitations under the License. | |
| --> | |
| <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/xsd/maven-4.0.0.xsd"> | |
| <parent> | |
| <groupId>org.apache.manifoldcf</groupId> | |
| <artifactId>mcf-framework</artifactId> | |
| <version>2.31-SNAPSHOT</version> | |
| </parent> | |
| <modelVersion>4.0.0</modelVersion> | |
| <artifactId>mcf-combined-service</artifactId> | |
| <name>ManifoldCF - Framework - Combined Service</name> | |
| <packaging>war</packaging> | |
| <dependencies> | |
| <!-- Internal dependencies --> | |
| <dependency> | |
| <groupId>${project.groupId}</groupId> | |
| <artifactId>mcf-api-servlet</artifactId> | |
| <version>${project.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>${project.groupId}</groupId> | |
| <artifactId>mcf-authority-servlet</artifactId> | |
| <version>${project.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>${project.groupId}</groupId> | |
| <artifactId>mcf-core</artifactId> | |
| <version>${project.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>${project.groupId}</groupId> | |
| <artifactId>mcf-agents</artifactId> | |
| <version>${project.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>${project.groupId}</groupId> | |
| <artifactId>mcf-pull-agent</artifactId> | |
| <version>${project.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>${project.groupId}</groupId> | |
| <artifactId>mcf-ui-core</artifactId> | |
| <version>${project.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>${project.groupId}</groupId> | |
| <artifactId>mcf-crawler-ui</artifactId> | |
| <version>${project.version}</version> | |
| <type>war</type> | |
| </dependency> | |
| <!-- web dependencies --> | |
| <dependency> | |
| <groupId>jakarta.servlet</groupId> | |
| <artifactId>jakarta.servlet-api</artifactId> | |
| <version>${servlet-api.version}</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| <!-- runtime dependencies --> | |
| <dependency> | |
| <groupId>jakarta.servlet.jsp.jstl</groupId> | |
| <artifactId>jakarta.servlet.jsp.jstl-api</artifactId> | |
| <version>${jstl.version}</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.slf4j</groupId> | |
| <artifactId>slf4j-simple</artifactId> | |
| <version>${slf4j.version}</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <!-- database dependencies --> | |
| <dependency> | |
| <groupId>org.hsqldb</groupId> | |
| <artifactId>hsqldb</artifactId> | |
| <version>${hsqldb.version}</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.postgresql</groupId> | |
| <artifactId>postgresql</artifactId> | |
| <version>${postgresql.version}</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>mysql</groupId> | |
| <artifactId>mysql-connector-java</artifactId> | |
| <version>${mysql.version}</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <!-- JDBC connector dependencies --> | |
| <dependency> | |
| <groupId>net.sourceforge.jtds</groupId> | |
| <artifactId>jtds</artifactId> | |
| <version>${jtds.version}</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-war-plugin</artifactId> | |
| <version>${maven-war-plugin.version}</version> | |
| <configuration> | |
| <overlays> | |
| <overlay> | |
| <groupId>org.apache.manifoldcf</groupId> | |
| <artifactId>mcf-crawler-ui</artifactId> | |
| <type>war</type> | |
| <includes> | |
| <include>*.jsp</include> | |
| <include>*.css</include> | |
| <include>*.png</include> | |
| </includes> | |
| <targetPath>/</targetPath> | |
| </overlay> | |
| <overlay> | |
| <groupId>org.apache.manifoldcf</groupId> | |
| <artifactId>mcf-crawler-ui</artifactId> | |
| <type>war</type> | |
| <includes> | |
| <include>WEB-INF/jsp/*</include> | |
| </includes> | |
| <targetPath>/</targetPath> | |
| </overlay> | |
| </overlays> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> |