Author: rahul
Date: Fri Mar 3 07:31:45 2006
New Revision: 382865
URL: http://svn.apache.org/viewcvs?rev=382865&view=rev
Log:
Adding m2 pom.xml.
By: Wendy Smoak <wsmoak AT gmail DOT com>
Also adding Wendy to list of contributors.
Added:
jakarta/commons/sandbox/scxml/trunk/pom.xml (with props)
Modified:
jakarta/commons/sandbox/scxml/trunk/project.xml
Added: jakarta/commons/sandbox/scxml/trunk/pom.xml
URL:
http://svn.apache.org/viewcvs/jakarta/commons/sandbox/scxml/trunk/pom.xml?rev=382865&view=auto
==============================================================================
--- jakarta/commons/sandbox/scxml/trunk/pom.xml (added)
+++ jakarta/commons/sandbox/scxml/trunk/pom.xml Fri Mar 3 07:31:45 2006
@@ -0,0 +1,195 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright 2005-2006 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 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>
+ <name>SCXML</name>
+ <groupId>commons-scxml</groupId>
+ <artifactId>commons-scxml</artifactId>
+ <version>1.0-SNAPSHOT</version>
+
+ <inceptionYear>2005</inceptionYear>
+ <description>A Java Implementation of a State Chart XML Engine</description>
+
+ <url>http://jakarta.apache.org/commons/sandbox/scxml/</url>
+
+ <organization>
+ <name>The Apache Software Foundation</name>
+ <url>http://jakarta.apache.org</url>
+ </organization>
+ <licenses>
+ <license>
+ <name>The Apache Software License, Version 2.0</name>
+ <url>/LICENSE.txt</url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
+
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/sandbox/scxml/trunk</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/sandbox/scxml/trunk</developerConnection>
+
<url>http://svn.apache.org/viewcvs.cgi/jakarta/commons/sandbox/scxml/trunk</url>
+ </scm>
+
+ <mailingLists>
+ <mailingList>
+ <name>Commons Dev List</name>
+ <subscribe>[EMAIL PROTECTED]</subscribe>
+ <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+ <archive>http://mail-archives.apache.org/eyebrowse/[EMAIL
PROTECTED]</archive>
+ </mailingList>
+ <mailingList>
+ <name>Commons User List</name>
+ <subscribe>[EMAIL PROTECTED]</subscribe>
+ <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+ <archive>http://mail-archives.apache.org/eyebrowse/[EMAIL
PROTECTED]</archive>
+ </mailingList>
+ </mailingLists>
+
+ <developers>
+ <developer>
+ <name>Rahul Akolkar</name>
+ <id>rahul</id>
+ <email>rahul AT apache.org</email>
+ <organization>Apache Software Foundation</organization>
+ </developer>
+ <developer>
+ <name>Martin Cooper</name>
+ <id>martinc</id>
+ <organization>Apache Software Foundation</organization>
+ </developer>
+ </developers>
+
+ <contributors>
+ <contributor>
+ <name>Jaroslav Gergic</name>
+ </contributor>
+ <contributor>
+ <name>Peter Costa</name>
+ </contributor>
+ <contributor>
+ <name>Wendy Smoak</name>
+ </contributor>
+ </contributors>
+
+ <dependencies>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.0.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-digester</groupId>
+ <artifactId>commons-digester</artifactId>
+ <version>1.7</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ <version>1.7.0</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-el</groupId>
+ <artifactId>commons-el</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-jexl</groupId>
+ <artifactId>commons-jexl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>myfaces</groupId>
+ <artifactId>myfaces-all</artifactId>
+ <version>1.1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <sourceDirectory>src/main/java</sourceDirectory>
+ <testSourceDirectory>src/test/java</testSourceDirectory>
+ <resources>
+ <resource>
+ <directory>.</directory>
+ <targetPath>META-INF</targetPath>
+ <includes>
+ <include>NOTICE.txt</include>
+ <include>LICENSE.txt</include>
+ </includes>
+ </resource>
+ </resources>
+ <testResources>
+ <testResource>
+ <directory>src/test/java</directory>
+ <includes>
+ <include>**/*.xml</include>
+ <include>**/*.gif</include>
+ </includes>
+ </testResource>
+ </testResources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>org/apache/commons/scxml/SCXMLTestSuite.java</include>
+ <include>org/apache/commons/scxml/env/EnvTestSuite.java</include>
+
<include>org/apache/commons/scxml/env/faces/EnvFacesTestSuite.java</include>
+
<include>org/apache/commons/scxml/env/jexl/EnvJexlTestSuite.java</include>
+
<include>org/apache/commons/scxml/env/jsp/EnvJspTestSuite.java</include>
+
<include>org/apache/commons/scxml/env/servlet/EnvServletTestSuite.java</include>
+ <include>org/apache/commons/scxml/io/IOTestSuite.java</include>
+
<include>org/apache/commons/scxml/model/ModelTestSuite.java</include>
+
<include>org/apache/commons/scxml/semantics/SemanticsTestSuite.java</include>
+
<include>org/apache/commons/scxml/test/TestingTestSuite.java</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Propchange: jakarta/commons/sandbox/scxml/trunk/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: jakarta/commons/sandbox/scxml/trunk/pom.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Modified: jakarta/commons/sandbox/scxml/trunk/project.xml
URL:
http://svn.apache.org/viewcvs/jakarta/commons/sandbox/scxml/trunk/project.xml?rev=382865&r1=382864&r2=382865&view=diff
==============================================================================
--- jakarta/commons/sandbox/scxml/trunk/project.xml (original)
+++ jakarta/commons/sandbox/scxml/trunk/project.xml Fri Mar 3 07:31:45 2006
@@ -90,6 +90,9 @@
<contributor>
<name>Peter Costa</name>
</contributor>
+ <contributor>
+ <name>Wendy Smoak</name>
+ </contributor>
</contributors>
<dependencies>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]