101 lines
4.2 KiB
XML
101 lines
4.2 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
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.
|
|
|
|
$Header:$
|
|
-->
|
|
|
|
<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.moparisthebest.beehive</groupId>
|
|
<artifactId>beehive</artifactId>
|
|
<version>1.0.3-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>beehive-netui-bootstrap</artifactId>
|
|
<name>beehive-netui-bootstrap</name>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
<artifactId>jsp-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-collections</groupId>
|
|
<artifactId>commons-collections</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xdoclet</groupId>
|
|
<artifactId>xdoclet</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xdoclet</groupId>
|
|
<artifactId>xdoclet-web-module</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xdoclet</groupId>
|
|
<artifactId>xjavadoc</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>ant</groupId>
|
|
<artifactId>ant</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.ant</groupId>
|
|
<artifactId>ant</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>tldgen</id>
|
|
<phase>prepare-package</phase>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
<configuration>
|
|
<target>
|
|
<taskdef name="xdoclet" classname="xdoclet.DocletTask" classpathref="maven.compile.classpath" />
|
|
<mkdir dir="${project.build.outputDirectory}/META-INF" />
|
|
<xdoclet destdir="${project.build.outputDirectory}/META-INF" verbose="true">
|
|
<fileset dir="${project.build.sourceDirectory}">
|
|
<include name="org/apache/beehive/netui/tools/**/*TagsHandler.java" />
|
|
<include name="org/apache/beehive/netui/tools/**/*SubTask.java" />
|
|
</fileset>
|
|
<template templateFile="${project.build.outputDirectory}/xdoclet-xml.xdt" destinationFile="xdoclet.xml" />
|
|
</xdoclet>
|
|
</target>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
<dependencies>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |