blob: fc2b32d1ccc0222bded17f1de9cee62f8ed3d73c [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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">
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
<version>11</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>Commons SCXML</name>
<groupId>commons-scxml</groupId>
<artifactId>commons-scxml</artifactId>
<version>0.9</version>
<inceptionYear>2005</inceptionYear>
<description>A Java Implementation of a State Chart XML Engine</description>
<url>http://commons.apache.org/scxml/</url>
<issueManagement>
<system>jira</system>
<url>http://issues.apache.org/jira/browse/SCXML</url>
</issueManagement>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/scxml/tags/SCXML_0_9_RC1</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/scxml/tags/SCXML_0_9_RC1</developerConnection>
<url>http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_9_RC1</url>
</scm>
<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>
<contributor>
<name>Heiko Eichberger</name>
</contributor>
<contributor>
<name>Niall Pemberton</name>
</contributor>
<contributor>
<name>Sitthichai Rernglertpricha</name>
</contributor>
<contributor>
<name>Nestor Urquiza</name>
</contributor>
<contributor>
<name>Michael Heuer</name>
</contributor>
<contributor>
<name>Ingmar Kliche</name>
</contributor>
<contributor>
<name>Michael Tillberg</name>
</contributor>
<contributor>
<name>Andy Bailey</name>
</contributor>
<contributor>
<name>Sebastian Bazley</name>
</contributor>
<contributor>
<name>Ross Yakulis</name>
</contributor>
<contributor>
<name>SeongSoo Park</name>
</contributor>
<contributor>
<name>Tony Seebregts</name>
</contributor>
<contributor>
<name>Elaine Wong</name>
</contributor>
<contributor>
<name>Edzard Hoefig</name>
</contributor>
<contributor>
<name>Daniel Schwager</name>
</contributor>
<contributor>
<name>Jakob Sachse</name>
</contributor>
<contributor>
<name>Joel Truher</name>
</contributor>
</contributors>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>commons-digester</groupId>
<artifactId>commons-digester</artifactId>
<version>1.8</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.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-el</groupId>
<artifactId>commons-el</artifactId>
<version>1.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>commons-jexl</groupId>
<artifactId>commons-jexl</artifactId>
<version>1.1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
<version>2.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.myfaces.core</groupId>
<artifactId>myfaces-api</artifactId>
<version>1.1.5</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.6.0</version>
<optional>true</optional>
</dependency>
</dependencies>
<distributionManagement>
<!-- Cannot define in parent ATM, see COMMONSSITE-26 -->
<site>
<id>apache.website</id>
<name>Apache Commons Site</name>
<url>${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/scxml</url>
</site>
</distributionManagement>
<properties>
<maven.compile.source>1.4</maven.compile.source>
<maven.compile.target>1.4</maven.compile.target>
<commons.componentid>scxml</commons.componentid>
<commons.release.version>0.9</commons.release.version>
<commons.rc.version>RC1</commons.rc.version>
<commons.jira.id>SCXML</commons.jira.id>
<commons.jira.pid>12310492</commons.jira.pid>
</properties>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
<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-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/invoke/InvokeTestSuite.java</include>
<include>org/apache/commons/scxml/io/IOTestSuite.java</include>
<include>org/apache/commons/scxml/issues/IssuesTestSuite.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>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/bin.xml</descriptor>
<descriptor>src/assembly/src.xml</descriptor>
</descriptors>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.0</version>
<configuration>
<xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
<issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.1</version>
<configuration>
<configLocation>${basedir}/scxml-checks.xml</configLocation>
<enableRulesSummary>false</enableRulesSummary>
<headerFile>${basedir}/scxml-asl-header.txt</headerFile>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<comparisonVersion>0.8</comparisonVersion>
</configuration>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>rc</id>
<distributionManagement>
<!-- Cannot define in parent ATM, see COMMONSSITE-26 -->
<site>
<id>apache.website</id>
<name>Apache Commons Release Candidate Staging Site</name>
<url>${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/site</url>
</site>
</distributionManagement>
</profile>
</profiles>
</project>