[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:$ $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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.moparisthebest.beehive</groupId> <groupId>com.moparisthebest.beehive</groupId>
<artifactId>beehive</artifactId> <artifactId>beehive</artifactId>
<version>1.0.2-SNAPSHOT</version> <version>1.0.2</version>
</parent> </parent>
<artifactId>beehive-controls</artifactId> <artifactId>beehive-controls</artifactId>
<name>beehive-controls</name> <name>beehive-controls</name>

View File

@ -18,12 +18,12 @@
$Header:$ $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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.moparisthebest.beehive</groupId> <groupId>com.moparisthebest.beehive</groupId>
<artifactId>beehive</artifactId> <artifactId>beehive</artifactId>
<version>1.0.2-SNAPSHOT</version> <version>1.0.2</version>
</parent> </parent>
<artifactId>beehive-ejb-control</artifactId> <artifactId>beehive-ejb-control</artifactId>
<name>beehive-ejb-control</name> <name>beehive-ejb-control</name>

View File

@ -18,12 +18,12 @@
$Header:$ $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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.moparisthebest.beehive</groupId> <groupId>com.moparisthebest.beehive</groupId>
<artifactId>beehive</artifactId> <artifactId>beehive</artifactId>
<version>1.0.2-SNAPSHOT</version> <version>1.0.2</version>
</parent> </parent>
<artifactId>beehive-jdbc-control</artifactId> <artifactId>beehive-jdbc-control</artifactId>
<name>beehive-jdbc-control</name> <name>beehive-jdbc-control</name>

View File

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

View File

@ -18,12 +18,12 @@
$Header:$ $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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.moparisthebest.beehive</groupId> <groupId>com.moparisthebest.beehive</groupId>
<artifactId>beehive</artifactId> <artifactId>beehive</artifactId>
<version>1.0.2-SNAPSHOT</version> <version>1.0.2</version>
</parent> </parent>
<artifactId>beehive-netui-bootstrap</artifactId> <artifactId>beehive-netui-bootstrap</artifactId>
<name>beehive-netui-bootstrap</name> <name>beehive-netui-bootstrap</name>
@ -80,16 +80,14 @@
</goals> </goals>
<configuration> <configuration>
<target> <target>
<taskdef name="xdoclet" classname="xdoclet.DocletTask" <taskdef name="xdoclet" classname="xdoclet.DocletTask" classpathref="maven.compile.classpath" />
classpathref="maven.compile.classpath"/> <mkdir dir="${project.build.outputDirectory}/META-INF" />
<mkdir dir="${project.build.outputDirectory}/META-INF"/>
<xdoclet destdir="${project.build.outputDirectory}/META-INF" verbose="true"> <xdoclet destdir="${project.build.outputDirectory}/META-INF" verbose="true">
<fileset dir="${project.build.sourceDirectory}"> <fileset dir="${project.build.sourceDirectory}">
<include name="org/apache/beehive/netui/tools/**/*TagsHandler.java"/> <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/**/*SubTask.java" />
</fileset> </fileset>
<template templateFile="${project.build.outputDirectory}/xdoclet-xml.xdt" <template templateFile="${project.build.outputDirectory}/xdoclet-xml.xdt" destinationFile="xdoclet.xml" />
destinationFile="xdoclet.xml"/>
</xdoclet> </xdoclet>
</target> </target>
</configuration> </configuration>

View File

@ -19,12 +19,12 @@
$Header:$ $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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.moparisthebest.beehive</groupId> <groupId>com.moparisthebest.beehive</groupId>
<artifactId>beehive</artifactId> <artifactId>beehive</artifactId>
<version>1.0.2-SNAPSHOT</version> <version>1.0.2</version>
</parent> </parent>
<artifactId>beehive-netui-compiler</artifactId> <artifactId>beehive-netui-compiler</artifactId>
<name>beehive-netui-compiler</name> <name>beehive-netui-compiler</name>

View File

@ -18,12 +18,12 @@
$Header:$ $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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.moparisthebest.beehive</groupId> <groupId>com.moparisthebest.beehive</groupId>
<artifactId>beehive</artifactId> <artifactId>beehive</artifactId>
<version>1.0.2-SNAPSHOT</version> <version>1.0.2</version>
</parent> </parent>
<artifactId>beehive-netui-core</artifactId> <artifactId>beehive-netui-core</artifactId>
<name>beehive-netui-core</name> <name>beehive-netui-core</name>

View File

@ -18,12 +18,12 @@
$Header:$ $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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>com.moparisthebest.beehive</groupId> <groupId>com.moparisthebest.beehive</groupId>
<artifactId>beehive</artifactId> <artifactId>beehive</artifactId>
<version>1.0.2-SNAPSHOT</version> <version>1.0.2</version>
</parent> </parent>
<artifactId>beehive-netui-tags</artifactId> <artifactId>beehive-netui-tags</artifactId>
<name>beehive-netui-tags</name> <name>beehive-netui-tags</name>
@ -58,84 +58,37 @@
</goals> </goals>
<configuration> <configuration>
<target> <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" <taskdef name="webdoclet" classname="xdoclet.modules.web.WebDocletTask" classpathref="maven.compile.classpath" />
classpathref="maven.compile.classpath"/> <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}"> <fileset dir="${project.build.sourceDirectory}">
<exclude name="org/apache/beehive/netui/tags/databinding/**"/> <exclude name="org/apache/beehive/netui/tags/databinding/**" />
<exclude name="org/apache/beehive/netui/tags/template/**"/> <exclude name="org/apache/beehive/netui/tags/template/**" />
<include name="org/apache/beehive/netui/tags/**/*.java"/> <include name="org/apache/beehive/netui/tags/**/*.java" />
</fileset> </fileset>
<netuitldgen <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" />
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>
<webdoclet <webdoclet destdir="${metainf.dir}" excludedtags="@version,@author,@todo" force="true" verbose="true">
destdir="${metainf.dir}"
excludedtags="@version,@author,@todo"
force="true"
verbose="true">
<fileset dir="${project.build.sourceDirectory}"> <fileset dir="${project.build.sourceDirectory}">
<exclude name="org/apache/beehive/netui/tags/template/**"/> <exclude name="org/apache/beehive/netui/tags/template/**" />
<include name="org/apache/beehive/netui/databinding/**/*.java"/> <include name="org/apache/beehive/netui/databinding/**/*.java" />
<include name="org/apache/beehive/netui/tags/**/*.java"/> <include name="org/apache/beehive/netui/tags/**/*.java" />
</fileset> </fileset>
<netuitldgen <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" />
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>
<webdoclet <webdoclet destdir="${metainf.dir}" excludedtags="@version,@author,@todo" force="true" verbose="true">
destdir="${metainf.dir}"
excludedtags="@version,@author,@todo"
force="true"
verbose="true">
<fileset dir="${project.build.sourceDirectory}"> <fileset dir="${project.build.sourceDirectory}">
<exclude name="org/apache/beehive/netui/tags/databinding/**"/> <exclude name="org/apache/beehive/netui/tags/databinding/**" />
<include name="org/apache/beehive/netui/tags/**/*.java"/> <include name="org/apache/beehive/netui/tags/**/*.java" />
</fileset> </fileset>
<netuitldgen <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" />
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> </webdoclet>
</target> </target>
</configuration> </configuration>

View File

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