JdbcMapper/beehive-netui-tags/pom.xml

109 lines
6.1 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.2</version>
</parent>
<artifactId>beehive-netui-tags</artifactId>
<name>beehive-netui-tags</name>
<dependencies>
<dependency>
<groupId>com.moparisthebest.beehive</groupId>
<artifactId>beehive-netui-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.moparisthebest.beehive</groupId>
<artifactId>beehive-netui-bootstrap</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</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>
<property name="metainf.dir" value="${project.build.outputDirectory}/META-INF/" />
<taskdef name="webdoclet" classname="xdoclet.modules.web.WebDocletTask" classpathref="maven.compile.classpath" />
<webdoclet destdir="${metainf.dir}" excludedtags="@version,@author,@todo" force="true" verbose="true">
<fileset dir="${project.build.sourceDirectory}">
<exclude name="org/apache/beehive/netui/tags/databinding/**" />
<exclude name="org/apache/beehive/netui/tags/template/**" />
<include name="org/apache/beehive/netui/tags/**/*.java" />
</fileset>
<netuitldgen xmlencoding="UTF-8" taglibversion="1.0" jspversion="1.2" shortname="netui" uri="http://beehive.apache.org/netui/tags-html-1.0" description="NetUI HTML controls taglibrary." filename="beehive-netui-tags-html.tld" destdir="${metainf.dir}" validateXml="true" packageName="org.apache.beehive.netui.tags" />
</webdoclet>
<webdoclet destdir="${metainf.dir}" excludedtags="@version,@author,@todo" force="true" verbose="true">
<fileset dir="${project.build.sourceDirectory}">
<exclude name="org/apache/beehive/netui/tags/template/**" />
<include name="org/apache/beehive/netui/databinding/**/*.java" />
<include name="org/apache/beehive/netui/tags/**/*.java" />
</fileset>
<netuitldgen xmlencoding="UTF-8" taglibversion="1.0" jspversion="1.2" shortname="netui-data" uri="http://beehive.apache.org/netui/tags-databinding-1.0" description="NetUI Databinding Tag Library." filename="beehive-netui-tags-databinding.tld" destdir="${metainf.dir}" validateXml="true" packageName="org.apache.beehive.netui.tags.databinding" functionPackage="org.apache.beehive.netui.databinding" />
</webdoclet>
<webdoclet destdir="${metainf.dir}" excludedtags="@version,@author,@todo" force="true" verbose="true">
<fileset dir="${project.build.sourceDirectory}">
<exclude name="org/apache/beehive/netui/tags/databinding/**" />
<include name="org/apache/beehive/netui/tags/**/*.java" />
</fileset>
<netuitldgen xmlencoding="UTF-8" taglibversion="1.0" jspversion="1.2" shortname="netui-template" uri="http://beehive.apache.org/netui/tags-template-1.0" description="NetUI Template controls taglibrary." filename="beehive-netui-tags-template.tld" destdir="${metainf.dir}" validateXml="true" packageName="org.apache.beehive.netui.tags.template" />
</webdoclet>
</target>
</configuration>
</execution>
</executions>
<dependencies>
<!--
<dependency>
<groupId>com.moparisthebest.beehive</groupId>
<artifactId>beehive-netui-bootstrap</artifactId>
<version>${project.version}</version>
</dependency>
-->
</dependencies>
</plugin>
</plugins>
</build>
</project>