Author: dims
Date: Thu Jul 13 15:06:20 2006
New Revision: 421713
URL: http://svn.apache.org/viewvc?rev=421713&view=rev
Log:
updates to project.xml, maven.xml, release notes etc in preparation to make a
release
Modified:
jakarta/commons/proper/modeler/trunk/RELEASE-NOTES.txt
jakarta/commons/proper/modeler/trunk/maven.xml
jakarta/commons/proper/modeler/trunk/project.properties
jakarta/commons/proper/modeler/trunk/project.xml
Modified: jakarta/commons/proper/modeler/trunk/RELEASE-NOTES.txt
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/RELEASE-NOTES.txt?rev=421713&r1=421712&r2=421713&view=diff
==============================================================================
--- jakarta/commons/proper/modeler/trunk/RELEASE-NOTES.txt (original)
+++ jakarta/commons/proper/modeler/trunk/RELEASE-NOTES.txt Thu Jul 13 15:06:20
2006
@@ -1,7 +1,7 @@
$Id$
Commons Modeler Package
- Version 1.0
+ Version 1.2
Release Notes
@@ -11,23 +11,27 @@
This document contains the release notes for this version of the Commons
Modeler package, and highlights changes since the previous version.
-
-NEW FEATURES:
-============
-
-This is the initial release of the Commons Modeler package, which supports
-the easy creation and management of Model MBeans that are compatible with
-the Java Management Extensions (JMX) 1.0 specification. It has been tested
-in conjunction with two different JMX implementations:
-
-* The JMX Reference Implementation (version 1.0.1), available at:
- <http://java.sun.com/products/JavaManagement/download.html>
-
-* The MX4J Open Source Implementation of JMX (version 1.0-beta-3), from:
- <http://mx4j.sourceforge.net/>
-
+For more information on Jakarta Commons Modeler, see
+o http://jakarta.apache.org/commons/modeler/
BUG REPORTS ADDRESSED:
=====================
-No bug reports have been filed against Modeler.
+o MODELER-18 support for general descriptors
+o MODELER-17 [modeler] MbeansSource don't use args at mbeans and operations
+o MODELER-16 [modeler] download links broken
+o MODELER-15 [modeler] IntrospectionUtils memory leak
+o MODELER-14 After setting an Attribute the Notification Listener will not
performed
+o MODELER-13 [modeler] BaseModelMBean class setModeledType method should be
setModelerType
+o MODELER-12 [modeler] ManagedBean uses the wrong case for ObjectReference
+o MODELER-11 [modeler] Null Pointer Exception - Non-Singleton Registry
+o MODELER-10 [modeler] DTD violation when using simple wrapping
+o MODELER-9 [modeler] Registry.convertValue doesn't support longs
+o MODELER-8 [modeler] AttributeChangeNotification sent before attribute
changes
+o MODELER-7 sendAttributeChangeNotification on setAttribute
+o MODELER-6 [modeler] wiki page is immutable and out-of-date
+o MODELER-5 [modeler] setServer stack overflow
+o MODELER-4 [modeler] Overloaded operations throw "wrong number of
parameters" exception
+o MODELER-3 [modeler] maven build fails on os x with test failure.
+o MODELER-2 [modeler] Registry insufficiently synchronized
+o MODELER-1 ClassNotFoundException while using the Notification
\ No newline at end of file
Modified: jakarta/commons/proper/modeler/trunk/maven.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/maven.xml?rev=421713&r1=421712&r2=421713&view=diff
==============================================================================
--- jakarta/commons/proper/modeler/trunk/maven.xml (original)
+++ jakarta/commons/proper/modeler/trunk/maven.xml Thu Jul 13 15:06:20 2006
@@ -1,4 +1,85 @@
+<!--
+ Copyright 2001-2004 The Apache Software Foundation
+
+ Licensed 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 default="java:jar"
+ xmlns:ant="jelly:ant"
xmlns:j="jelly:core">
+ <!-- ================================================================== -->
+ <!-- Copy into the binary distribution -->
+ <!-- ================================================================== -->
+ <postGoal name="dist:prepare-bin-filesystem">
+
+ <copy todir="${maven.dist.bin.assembly.dir}">
+ <fileset file='${basedir}/NOTICE.txt'/>
+ <fileset file="${basedir}/RELEASE-NOTES.txt"/>
+ </copy>
+
+ </postGoal>
+
+ <!-- ================================================================== -->
+ <!-- Copy into the source distribution -->
+ <!-- ================================================================== -->
+ <postGoal name="dist:prepare-src-filesystem">
+
+ <!-- Copy the NOTICE -->
+ <copy todir="${maven.dist.src.assembly.dir}">
+ <fileset file='${basedir}/NOTICE.txt'/>
+ <fileset file="${basedir}/RELEASE-NOTES.txt"/>
+ <fileset file="${basedir}/build.properties.sample"/>
+ <fileset file="${basedir}/checkstyle.xml"/>
+ <fileset file="${basedir}/license-header.txt"/>
+ </copy>
+
+ <!-- Copy xdoc files -->
+ <copy todir="${maven.dist.src.assembly.dir}/xdocs">
+ <fileset dir="./xdocs"/>
+ </copy>
+
+ </postGoal>
+
+ <!-- ================================================================== -->
+ <!-- Create MD5 Check Sums -->
+ <!-- ================================================================== -->
+ <postGoal name="dist">
+
+ <!-- create checksum for jar -->
+ <ant:checksum file="${maven.build.dir}/${maven.final.name}.jar"
property="jar.md5"/>
+ <ant:echo message="${jar.md5} *${maven.final.name}.jar"
+ file="${maven.build.dir}/${maven.final.name}.jar.md5" />
+
+ <!-- create checksum for binary zip -->
+ <ant:checksum file="${maven.dist.dir}/${maven.final.name}.zip"
property="zip.md5"/>
+ <ant:echo message="${zip.md5} *${maven.final.name}.zip"
+ file="${maven.dist.dir}/${maven.final.name}.zip.md5" />
+
+ <!-- create checksum for binary tar.gz -->
+ <ant:checksum file="${maven.dist.dir}/${maven.final.name}.tar.gz"
property="tar.gz.md5"/>
+ <ant:echo message="${tar.gz.md5} *${maven.final.name}.tar.gz"
+ file="${maven.dist.dir}/${maven.final.name}.tar.gz.md5" />
+
+ <!-- create checksum for source zip -->
+ <ant:checksum file="${maven.dist.dir}/${maven.final.name}-src.zip"
property="src.zip.md5"/>
+ <ant:echo message="${src.zip.md5} *${maven.final.name}-src.zip"
+ file="${maven.dist.dir}/${maven.final.name}-src.zip.md5" />
+
+ <!-- create checksum for source tar.gz -->
+ <ant:checksum file="${maven.dist.dir}/${maven.final.name}-src.tar.gz"
property="src.tar.gz.md5"/>
+ <ant:echo message="${src.tar.gz.md5} *${maven.final.name}-src.tar.gz"
+ file="${maven.dist.dir}/${maven.final.name}-src.tar.gz.md5"
/>
+
+ </postGoal>
+
</project>
Modified: jakarta/commons/proper/modeler/trunk/project.properties
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/project.properties?rev=421713&r1=421712&r2=421713&view=diff
==============================================================================
--- jakarta/commons/proper/modeler/trunk/project.properties (original)
+++ jakarta/commons/proper/modeler/trunk/project.properties Thu Jul 13 15:06:20
2006
@@ -46,3 +46,5 @@
org.xml.sax.driver=org.apache.xerces.parsers.SAXParser
clover.excludes=**/Test*.java
+maven.compile.target=1.4
+maven.compile.source=1.4
\ No newline at end of file
Modified: jakarta/commons/proper/modeler/trunk/project.xml
URL:
http://svn.apache.org/viewvc/jakarta/commons/proper/modeler/trunk/project.xml?rev=421713&r1=421712&r2=421713&view=diff
==============================================================================
--- jakarta/commons/proper/modeler/trunk/project.xml (original)
+++ jakarta/commons/proper/modeler/trunk/project.xml Thu Jul 13 15:06:20 2006
@@ -19,7 +19,7 @@
<project>
<pomVersion>3</pomVersion>
- <name>Modeler</name>
+ <name>Commons Modeler</name>
<groupId>commons-modeler</groupId>
<artifactId>commons-modeler</artifactId>
<currentVersion>1.2-SNAPSHOT</currentVersion>
@@ -51,6 +51,7 @@
<issueTrackingUrl>http://issues.apache.org/jira/browse/${pom.artifactId.substring(8).toUpperCase()}</issueTrackingUrl>
<siteAddress>people.apache.org</siteAddress>
<siteDirectory>/www/jakarta.apache.org/commons/${pom.artifactId.substring(8)}/</siteDirectory>
+
<distributionDirectory>/www/jakarta.apache.org/builds/jakarta-commons/${pom.artifactId.substring(8)}/</distributionDirectory>
<repository>
<connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/${pom.artifactId.substring(8)}/trunk</connection>
@@ -93,6 +94,14 @@
<email>[EMAIL PROTECTED]</email>
<organization>Apache</organization>
</developer>
+
+ <developer>
+ <name>Davanum Srinivas</name>
+ <id>dims</id>
+ <email>[EMAIL PROTECTED]</email>
+ <organization>Apache</organization>
+ </developer>
+
</developers>
<dependencies>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]