You are viewing a plain text version of this content. The canonical link for it is here.
Posted to imperius-dev@incubator.apache.org by Craig L Russell <Cr...@Sun.COM> on 2008/01/04 03:31:06 UTC

Re: svn commit: r608729 - in /incubator/imperius/trunk/modules/javaspl-samples: ./ resources/ resources/samples/ src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/imperius/ src/main/java/org/apache/imperius...

Hi Neeraj,

This is a great idea. Having lots of top level projects is a good  
thing for managing the project.

Craig

On Jan 3, 2008, at 7:29 PM, jneeraj@apache.org wrote:

> Author: jneeraj
> Date: Thu Jan  3 19:29:11 2008
> New Revision: 608729
>
> URL: http://svn.apache.org/viewvc?rev=608729&view=rev
> Log:
> moved the javaspl samples to a seperate module
>
> Added:
>     incubator/imperius/trunk/modules/javaspl-samples/
>     incubator/imperius/trunk/modules/javaspl-samples/ 
> customexpressions.properties
>     incubator/imperius/trunk/modules/javaspl-samples/pom.xml
>     incubator/imperius/trunk/modules/javaspl-samples/resources/
>     incubator/imperius/trunk/modules/javaspl-samples/resources/ 
> README.txt
>     incubator/imperius/trunk/modules/javaspl-samples/resources/ 
> samples/
>     incubator/imperius/trunk/modules/javaspl-samples/src/
>     incubator/imperius/trunk/modules/javaspl-samples/src/main/
>     incubator/imperius/trunk/modules/javaspl-samples/src/main/java/
>     incubator/imperius/trunk/modules/javaspl-samples/src/main/java/ 
> org/
>     incubator/imperius/trunk/modules/javaspl-samples/src/main/java/ 
> org/apache/
>     incubator/imperius/trunk/modules/javaspl-samples/src/main/java/ 
> org/apache/imperius/
>     incubator/imperius/trunk/modules/javaspl-samples/src/main/java/ 
> org/apache/imperius/javaspl/
>     incubator/imperius/trunk/modules/javaspl-samples/src/main/java/ 
> org/apache/imperius/javaspl/samples/
>     incubator/imperius/trunk/modules/javaspl-samples/src/test/
>     incubator/imperius/trunk/modules/javaspl-samples/src/test/java/
>     incubator/imperius/trunk/modules/javaspl-samples/src/test/java/ 
> org/
>     incubator/imperius/trunk/modules/javaspl-samples/src/test/java/ 
> org/apache/
>     incubator/imperius/trunk/modules/javaspl-samples/src/test/java/ 
> org/apache/imperius/
>     incubator/imperius/trunk/modules/javaspl-samples/src/test/java/ 
> org/apache/imperius/javaspl/
>
> Added: incubator/imperius/trunk/modules/javaspl-samples/ 
> customexpressions.properties
> URL: http://svn.apache.org/viewvc/incubator/imperius/trunk/modules/ 
> javaspl-samples/customexpressions.properties?rev=608729&view=auto
> ====================================================================== 
> ========
> --- incubator/imperius/trunk/modules/javaspl-samples/ 
> customexpressions.properties (added)
> +++ incubator/imperius/trunk/modules/javaspl-samples/ 
> customexpressions.properties Thu Jan  3 19:29:11 2008
> @@ -0,0 +1,2 @@
> +SPL_CUSTOM_EXPRESSIONS
> +SPL_CUSTOM_ACTIONS
>
> Added: incubator/imperius/trunk/modules/javaspl-samples/pom.xml
> URL: http://svn.apache.org/viewvc/incubator/imperius/trunk/modules/ 
> javaspl-samples/pom.xml?rev=608729&view=auto
> ====================================================================== 
> ========
> --- incubator/imperius/trunk/modules/javaspl-samples/pom.xml (added)
> +++ incubator/imperius/trunk/modules/javaspl-samples/pom.xml Thu  
> Jan  3 19:29:11 2008
> @@ -0,0 +1,57 @@
> +<!--
> + * 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 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>
> +  <groupId>imperius</groupId>
> +  <artifactId>javaspl-samples</artifactId>
> +  <packaging>jar</packaging>
> +  <version>1.0.0-SNAPSHOT</version>
> +  <name>javaspl-samples</name>
> +   <dependencies>
> +	  <dependency>
> +		<groupId>imperius</groupId>
> +		<artifactId>imperius-splcore</artifactId>
> +		<version>1.0.0-SNAPSHOT</version>
> +	    </dependency>
> +	    <dependency>
> +		<groupId>imperius</groupId>
> +		<artifactId>imperius-javaspl</artifactId>
> +		<version>1.0.0-SNAPSHOT</version>
> +	    </dependency>
> +	    <dependency>
> +		     <groupId>junit</groupId>
> +		      <artifactId>junit</artifactId>
> +		      <version>3.8.1</version>
> +	       </dependency>
> +	       <dependency>
> +		    <groupId>javax.mail</groupId>
> +		    <artifactId>mail</artifactId>
> +		    <version>1.4</version>
> +		</dependency>
> +		 <dependency>
> +		    <groupId>javax.mail</groupId>
> +		    <artifactId>mail</artifactId>
> +		    <version>1.4</version>
> +		</dependency>
> +		<dependency>
> +		    <groupId>javax.activation</groupId>
> +		    <artifactId>activation</artifactId>
> +		    <version>1.1</version>
> +		</dependency>
> +
> +  </dependencies>
> +
> +
> +</project>
>
> Added: incubator/imperius/trunk/modules/javaspl-samples/resources/ 
> README.txt
> URL: http://svn.apache.org/viewvc/incubator/imperius/trunk/modules/ 
> javaspl-samples/resources/README.txt?rev=608729&view=auto
> ====================================================================== 
> ========
> --- incubator/imperius/trunk/modules/javaspl-samples/resources/ 
> README.txt (added)
> +++ incubator/imperius/trunk/modules/javaspl-samples/resources/ 
> README.txt Thu Jan  3 19:29:11 2008
> @@ -0,0 +1,69 @@
> +
> +                                Imperius
> +
> +
> +
> + What is it?
> +
> +-----------
> +
> +
> +Imperius (Simple Policy Language) or SPL - Is a simple standards  
> based
> +
> +object-oriented policy language that allows expression of
> + management policies
> +using condition-action rules. Imperius provides
> + an extensible set of over
> +100 operations for expressing conditions and actions.
> +
> +Imperius is a generalization of the CIM-SPL language.
> +Conversely, CIM-SPL
> + can be thought of as Imperius with CIM binding.
> +Imperius can be extended
> + to create similar bindings for other environments.
> +JavaSPL (Imperius with Java binding)
> + is another such example.
> +
> +
> +
> +  The Latest Version
> +
> +------------------
> +
> +
> +Details of the latest version can be found on the Apache Imperius
> +
> +Project web site <http://incubator.apache.org/Imperius/>.
> +
> +
> +
> +
> +Documentation
> +
> +-------------
> +
> +
> + Documentation is available online at the project website
> +
> +
> +Samples
> +--------
> +Samples are located under the /samples folder.
> +
> + Licensing
> +
> +---------
> +
> +
> +This software is licensed under the terms you may find in the file
> +
> + named "LICENSE" in this directory.
> +
> +
> +
> + Thanks for using Imperius.
> +
> +
> +The Apache Imperius Project
> +
> +<http://incubator.apache.org/Imperius/>
>
>

Craig Russell
Architect, Sun Java Enterprise System http://java.sun.com/products/jdo
408 276-5638 mailto:Craig.Russell@sun.com
P.S. A good JDO? O, Gasp!