[maven-release-plugin] prepare release beehive-1.0.2

This commit is contained in:
moparisthebest 2014-04-22 08:45:15 -04:00
parent 43396675b0
commit 225e7b4de0
9 changed files with 46 additions and 112 deletions

View File

@ -19,12 +19,12 @@
$Header:$
-->
<project>
<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-SNAPSHOT</version>
<version>1.0.2</version>
</parent>
<artifactId>beehive-controls</artifactId>
<name>beehive-controls</name>

View File

@ -18,12 +18,12 @@
$Header:$
-->
<project>
<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-SNAPSHOT</version>
<version>1.0.2</version>
</parent>
<artifactId>beehive-ejb-control</artifactId>
<name>beehive-ejb-control</name>

View File

@ -18,12 +18,12 @@
$Header:$
-->
<project>
<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-SNAPSHOT</version>
<version>1.0.2</version>
</parent>
<artifactId>beehive-jdbc-control</artifactId>
<name>beehive-jdbc-control</name>

View File

@ -18,12 +18,12 @@
$Header:$
-->
<project>
<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-SNAPSHOT</version>
<version>1.0.2</version>
</parent>
<artifactId>beehive-jms-control</artifactId>
<name>beehive-jms-control</name>
@ -59,33 +59,18 @@
<configuration>
<target>
<macrodef name="build-controls">
<attribute name="srcdir"
description="The directory containing controls to build. Required."/>
<attribute name="destdir"
description="The destination directory for compiled class files. Required."/>
<attribute name="tempdir"
description="The temporary directory for generated files. Required."/>
<attribute name="srcdir" description="The directory containing controls to build. Required." />
<attribute name="destdir" description="The destination directory for compiled class files. Required." />
<attribute name="tempdir" description="The temporary directory for generated files. Required." />
<sequential>
<taskdef name="apt"
classname="org.apache.beehive.controls.runtime.generator.AptTask"
classpathref="maven.compile.classpath"
onerror="fail"/>
<taskdef name="apt" classname="org.apache.beehive.controls.runtime.generator.AptTask" classpathref="maven.compile.classpath" onerror="fail" />
<apt srcdir="@{srcdir}"
destdir="@{destdir}"
gendir="@{tempdir}"
classpathref="maven.compile.classpath"
compileByExtension="true"
srcExtensions="*.java,*.jcx,*.jcs,*.jws"
debug="true"
nocompile="true"/>
<apt srcdir="@{srcdir}" destdir="@{destdir}" gendir="@{tempdir}" classpathref="maven.compile.classpath" compileByExtension="true" srcExtensions="*.java,*.jcx,*.jcs,*.jws" debug="true" nocompile="true" />
</sequential>
</macrodef>
<mkdir dir="${gensrc.dir}"/>
<build-controls srcdir="${project.build.sourceDirectory}"
destdir="${gensrc.dir}"
tempdir="${gensrc.dir}"/>
<mkdir dir="${gensrc.dir}" />
<build-controls srcdir="${project.build.sourceDirectory}" destdir="${gensrc.dir}" tempdir="${gensrc.dir}" />
</target>
</configuration>
</execution>

View File

@ -18,12 +18,12 @@
$Header:$
-->
<project>
<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-SNAPSHOT</version>
<version>1.0.2</version>
</parent>
<artifactId>beehive-netui-bootstrap</artifactId>
<name>beehive-netui-bootstrap</name>
@ -80,16 +80,14 @@
</goals>
<configuration>
<target>
<taskdef name="xdoclet" classname="xdoclet.DocletTask"
classpathref="maven.compile.classpath"/>
<mkdir dir="${project.build.outputDirectory}/META-INF"/>
<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"/>
<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"/>
<template templateFile="${project.build.outputDirectory}/xdoclet-xml.xdt" destinationFile="xdoclet.xml" />
</xdoclet>
</target>
</configuration>

View File

@ -19,12 +19,12 @@
$Header:$
-->
<project>
<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-SNAPSHOT</version>
<version>1.0.2</version>
</parent>
<artifactId>beehive-netui-compiler</artifactId>
<name>beehive-netui-compiler</name>

View File

@ -18,12 +18,12 @@
$Header:$
-->
<project>
<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-SNAPSHOT</version>
<version>1.0.2</version>
</parent>
<artifactId>beehive-netui-core</artifactId>
<name>beehive-netui-core</name>

View File

@ -18,12 +18,12 @@
$Header:$
-->
<project>
<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-SNAPSHOT</version>
<version>1.0.2</version>
</parent>
<artifactId>beehive-netui-tags</artifactId>
<name>beehive-netui-tags</name>
@ -58,84 +58,37 @@
</goals>
<configuration>
<target>
<property name="metainf.dir" value="${project.build.outputDirectory}/META-INF/"/>
<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">
<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"/>
<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"
/>
<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">
<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"/>
<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"
/>
<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">
<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"/>
<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"
/>
<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>

View File

@ -18,9 +18,7 @@
$Header:$
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
@ -29,7 +27,7 @@
</parent>
<groupId>com.moparisthebest.beehive</groupId>
<artifactId>beehive</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.0.2</version>
<description>
Beehive's goal is to make J2EE programming easier by building a simple object model on J2EE and Struts. Using
the new JSR-175 annotations, Beehive reduces the coding necessary for J2EE. The initial Beehive project has