Author: niallp
Date: Fri Nov 16 01:52:58 2007
New Revision: 595614
URL: http://svn.apache.org/viewvc?rev=595614&view=rev
Log:
Update m2 build
Added:
commons/proper/scxml/trunk/src/assembly/
commons/proper/scxml/trunk/src/assembly/bin.xml (with props)
commons/proper/scxml/trunk/src/assembly/src.xml (with props)
commons/proper/scxml/trunk/src/site/
commons/proper/scxml/trunk/src/site/resources/
commons/proper/scxml/trunk/src/site/resources/images/
- copied from r595528, commons/proper/scxml/trunk/xdocs/images/
commons/proper/scxml/trunk/src/site/site.xml (with props)
Modified:
commons/proper/scxml/trunk/pom.xml
commons/proper/scxml/trunk/scxml-checks.xml
Modified: commons/proper/scxml/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/scxml/trunk/pom.xml?rev=595614&r1=595613&r2=595614&view=diff
==============================================================================
--- commons/proper/scxml/trunk/pom.xml (original)
+++ commons/proper/scxml/trunk/pom.xml Fri Nov 16 01:52:58 2007
@@ -22,7 +22,7 @@
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
- <version>4</version>
+ <version>5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -150,6 +150,11 @@
</dependency>
</dependencies>
+ <properties>
+ <maven.compile.source>1.4</maven.compile.source>
+ <maven.compile.target>1.4</maven.compile.target>
+ </properties>
+
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
@@ -175,14 +180,6 @@
<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>
@@ -200,6 +197,44 @@
</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>
+ <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>
+ <configuration>
+ <configLocation>scxml-checks.xml</configLocation>
+ <enableRulesSummary>false</enableRulesSummary>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
</project>
Modified: commons/proper/scxml/trunk/scxml-checks.xml
URL:
http://svn.apache.org/viewvc/commons/proper/scxml/trunk/scxml-checks.xml?rev=595614&r1=595613&r2=595614&view=diff
==============================================================================
--- commons/proper/scxml/trunk/scxml-checks.xml (original)
+++ commons/proper/scxml/trunk/scxml-checks.xml Fri Nov 16 01:52:58 2007
@@ -105,7 +105,7 @@
<!-- <property -->
<!-- name="headerFile" -->
<!-- value="${basedir}/java.header"/> -->
- <property name="headerFile" value="${checkstyle.header.file}"/>
+ <property name="headerFile" value="scxml-asl-header.txt"/>
</module>
<!-- Following interprets the header file as regular expressions. -->
Added: commons/proper/scxml/trunk/src/assembly/bin.xml
URL:
http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/assembly/bin.xml?rev=595614&view=auto
==============================================================================
--- commons/proper/scxml/trunk/src/assembly/bin.xml (added)
+++ commons/proper/scxml/trunk/src/assembly/bin.xml Fri Nov 16 01:52:58 2007
@@ -0,0 +1,44 @@
+<!--
+ 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.
+-->
+<assembly>
+ <id>bin</id>
+ <formats>
+ <format>tar.gz</format>
+ <format>zip</format>
+ </formats>
+ <includeSiteDirectory>false</includeSiteDirectory>
+ <fileSets>
+ <fileSet>
+ <includes>
+ <include>LICENSE.txt</include>
+ <include>NOTICE.txt</include>
+ <include>RELEASE-NOTES.txt</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>target</directory>
+ <outputDirectory></outputDirectory>
+ <includes>
+ <include>*.jar</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>target/site/apidocs</directory>
+ <outputDirectory>apidocs</outputDirectory>
+ </fileSet>
+ </fileSets>
+</assembly>
Propchange: commons/proper/scxml/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/scxml/trunk/src/assembly/bin.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added: commons/proper/scxml/trunk/src/assembly/src.xml
URL:
http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/assembly/src.xml?rev=595614&view=auto
==============================================================================
--- commons/proper/scxml/trunk/src/assembly/src.xml (added)
+++ commons/proper/scxml/trunk/src/assembly/src.xml Fri Nov 16 01:52:58 2007
@@ -0,0 +1,48 @@
+<!--
+ 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.
+-->
+<assembly>
+ <id>src</id>
+ <formats>
+ <format>tar.gz</format>
+ <format>zip</format>
+ </formats>
+ <baseDirectory>${artifactId}-${version}-src</baseDirectory>
+ <fileSets>
+ <fileSet>
+ <includes>
+ <include>build.properties.sample</include>
+ <include>build.xml</include>
+ <include>LICENSE.txt</include>
+ <include>maven.xml</include>
+ <include>NOTICE.txt</include>
+ <include>pom.xml</include>
+ <include>project.properties</include>
+ <include>project.xml</include>
+ <include>RELEASE-NOTES.txt</include>
+ <include>PROPOSAL.html</include>
+ <include>scxml-asl-header.txt</include>
+ <include>scxml-checks.xml</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>src</directory>
+ </fileSet>
+ <fileSet>
+ <directory>xdocs</directory>
+ </fileSet>
+ </fileSets>
+</assembly>
Propchange: commons/proper/scxml/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/scxml/trunk/src/assembly/src.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added: commons/proper/scxml/trunk/src/site/site.xml
URL:
http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/site/site.xml?rev=595614&view=auto
==============================================================================
--- commons/proper/scxml/trunk/src/site/site.xml (added)
+++ commons/proper/scxml/trunk/src/site/site.xml Fri Nov 16 01:52:58 2007
@@ -0,0 +1,146 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+ 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 name="SCXML">
+ <bannerRight>
+ <name>Commons SCXML</name>
+ <src>/images/scxml-logo-white.png</src>
+ <href>/index.html</href>
+ </bannerRight>
+
+ <body>
+ <menu name="Commons SCXML Resources">
+ <item name="Overview"
+ href="/index.html"/>
+
+ <item name="User Guide"
+ href="/guide.html"
+ collapse="true">
+
+ <item name="SCXML documents"
+ href="/guide/scxml-documents.html" />
+
+ <item name="Using Commons SCXML"
+ href="/guide/using-commons-scxml.html" />
+
+ <item name="Standalone Testing"
+ href="/guide/testing-standalone.html" />
+
+ <item name="SCXML Digester"
+ href="/guide/core-digester.html" />
+
+ <item name="SCXML datamodel"
+ href="/guide/datamodel.html" />
+
+ <item name="Contexts and Evaluators"
+ href="/guide/contexts-evaluators.html" />
+
+ <item name="SCXML Engine"
+ href="/guide/core-engine.html" />
+
+ <item name="Triggering Events"
+ href="/guide/core-events.html" />
+
+ <item name="Custom Actions"
+ href="/guide/custom-actions.html" />
+
+ <item name="Custom Semantics"
+ href="/guide/custom-semantics.html" />
+
+ <item name="Side Effect - EL"
+ href="/guide/side-effect-el.html" />
+
+ </item>
+
+ <item name="Javadoc"
+ href="apidocs/index.html"/>
+
+ <item name="FAQ"
+ href="faq.html"/>
+
+ <item name="Usecases"
+ href="/usecases.html"
+ collapse="true">
+
+ <item name="SCXML Stopwatch"
+ href="/usecases/scxml-stopwatch.html" />
+
+ <item name="SCXML in RDC group container"
+ href="/usecases/scxml-in-rdc-group.html" />
+
+ <item name="SCXML in Shale dialogs"
+ href="/usecases/scxml-in-shale-dialogs.html" />
+
+ </item>
+
+ <item name="Building"
+ href="/building.html" />
+
+ <item name="Dependencies"
+ href="/dependencies.html" />
+
+ <item name="Mailing lists"
+ href="/mail-lists.html"/>
+
+ <item name="Issue Tracking"
+ href="/issue-tracking.html"/>
+
+ <item name="Team"
+ href="/team-list.html"/>
+
+ <item name="SVN repository"
+ href="/source-repository.html"/>
+
+ </menu>
+
+ <menu name="Releases">
+
+ <item name="Version 0.6"
+ href="/0.6/index.html"
+ collapse="true">
+
+ <item name="Javadoc"
+ href="/0.6/apidocs/index.html" />
+
+ <item name="Release notes"
+
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_6/RELEASE-NOTES.txt?view=markup"
/>
+
+ <item name="Source"
+
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_6/" />
+
+ </item>
+
+ <item name="Version 0.5"
+ href="/0.5/index.html"
+ collapse="true">
+
+ <item name="Javadoc"
+ href="/0.5/apidocs/index.html" />
+
+ <item name="Release notes"
+
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_5/RELEASE-NOTES.txt?view=markup"
/>
+
+ <item name="Source"
+
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_5/" />
+
+ </item>
+
+ </menu>
+
+ </body>
+
+</project>
Propchange: commons/proper/scxml/trunk/src/site/site.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/scxml/trunk/src/site/site.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL