Repository SVN: r32313 - maven2/org/tohu/tohu-jquery-client/1.1.0.
by jboss-maven2-commits@lists.jboss.org
Author: damonhorrell
Date: 2009-11-29 21:54:27 -0500 (Sun, 29 Nov 2009)
New Revision: 32313
Added:
maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.pom
Log:
Autoversioning commit: a non-deltaV client made a change to
/maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.pom
Added: maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.pom
===================================================================
--- maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.pom (rev 0)
+++ maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.pom 2009-11-30 02:54:27 UTC (rev 32313)
@@ -0,0 +1,185 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+
+ <!--
+ Copyright 2009 Solnet Solutions Limited
+ (http://www.solnetsolutions.co.nz/) 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.
+
+ @author John Bebbington
+ -->
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <artifactId>tohu</artifactId>
+ <groupId>org.tohu</groupId>
+ <version>1.1.0</version>
+ </parent>
+
+ <artifactId>tohu-jquery-client</artifactId>
+
+ <packaging>jar</packaging>
+ <name>Tohu :: Clients :: JQuery Web Client</name>
+
+ <repositories>
+ <repository>
+ <id>openqa-releases</id>
+ <name>OpenQA Releases</name>
+ <url>http://nexus.openqa.org/content/repositories/releases</url>
+ <layout>default</layout>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ </repository>
+ </repositories>
+
+ <build>
+ <finalName>tohu-jquery-client</finalName>
+ <outputDirectory>${basedir}/${target.dir}</outputDirectory>
+ <testOutputDirectory>${basedir}/${test.target.dir}</testOutputDirectory>
+ <resources>
+ <resource>
+ <directory>src/main/webapp</directory>
+ </resource>
+ </resources>
+ <testResources>
+ <testResource>
+ <directory>src/main/webapp</directory>
+ </testResource>
+ <testResource>
+ <directory>src/test/webapp</directory>
+ </testResource>
+ <testResource>
+ <directory>src/test/resources</directory>
+ </testResource>
+ </testResources>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>selenium-maven-plugin</artifactId>
+ <version>1.0</version>
+ <executions>
+ <execution>
+ <phase>pre-integration-test</phase>
+ <goals>
+ <goal>start-server</goal>
+ </goals>
+ <configuration>
+ <background>true</background>
+ <!-- Uncomment for debugging.
+ <browserSideLog>true</browserSideLog>
+ <debug>true</debug>
+ <logOutput>true</logOutput>
+ -->
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <!-- Skip the normal tests, we'll run them in the integration-test phase -->
+ <skip>true</skip>
+ </configuration>
+ <version>2.4.3</version>
+ <executions>
+ <execution>
+ <phase>integration-test</phase>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ <configuration>
+ <skip>false</skip>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <properties>
+ <target.dir>target/classes</target.dir>
+ <test.target.dir>target/test-classes</test.target.dir>
+ <site-deploy>${basedir}/../</site-deploy>
+ </properties>
+
+ <profiles>
+ <profile>
+ <id>eclipse-folders</id>
+ <properties>
+ <target.dir>target-eclipse/test-classes</target.dir>
+ <test.target.dir>target-eclipse/test-classes</test.target.dir>
+ </properties>
+ </profile>
+ </profiles>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>org.seleniumhq.selenium.client-drivers</groupId>
+ <artifactId>selenium-java-client-driver</artifactId>
+ <version>1.0.1</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.seleniumhq.selenium.server</groupId>
+ <artifactId>selenium-server</artifactId>
+ <version>1.0.1</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>jetty</groupId>
+ <artifactId>jetty</artifactId>
+ <version>5.1.10</version>
+ <scope>test</scope>
+ </dependency>
+ <!--
+ TODO Replace the above dependency with this one if Selenium ever
+ allows a Jetty version more recent then 5.1, see http://jira.openqa.org/browse/SRC-176
+ <dependency>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>jetty</artifactId>
+ <version>6.1.16</version>
+ <scope>test</scope>
+ </dependency>
+ -->
+
+ <dependency>
+ <groupId>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ <version>3.1</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.3</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.5</version>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+</project>
15 years, 3 months
Repository SVN: r32312 - maven2/org/tohu/tohu-jquery-client/1.1.0.
by jboss-maven2-commits@lists.jboss.org
Author: damonhorrell
Date: 2009-11-29 21:54:24 -0500 (Sun, 29 Nov 2009)
New Revision: 32312
Added:
maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.jar.sha1
Log:
Autoversioning commit: a non-deltaV client made a change to
/maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.jar.sha1
Added: maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.jar.sha1
===================================================================
--- maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.jar.sha1 (rev 0)
+++ maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.jar.sha1 2009-11-30 02:54:24 UTC (rev 32312)
@@ -0,0 +1 @@
+1a0d9c8ccff65e1457950dce450dd4ee969ed609
\ No newline at end of file
15 years, 3 months
Repository SVN: r32311 - maven2/org/tohu/tohu-jquery-client/1.1.0.
by jboss-maven2-commits@lists.jboss.org
Author: damonhorrell
Date: 2009-11-29 21:54:21 -0500 (Sun, 29 Nov 2009)
New Revision: 32311
Added:
maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.jar.md5
Log:
Autoversioning commit: a non-deltaV client made a change to
/maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.jar.md5
Added: maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.jar.md5
===================================================================
--- maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.jar.md5 (rev 0)
+++ maven2/org/tohu/tohu-jquery-client/1.1.0/tohu-jquery-client-1.1.0.jar.md5 2009-11-30 02:54:21 UTC (rev 32311)
@@ -0,0 +1 @@
+4300862d2724137c5f59d130aa4ce9fd
\ No newline at end of file
15 years, 3 months
Repository SVN: r32309 - maven2/org/tohu/tohu-jquery-client.
by jboss-maven2-commits@lists.jboss.org
Author: damonhorrell
Date: 2009-11-29 21:54:10 -0500 (Sun, 29 Nov 2009)
New Revision: 32309
Added:
maven2/org/tohu/tohu-jquery-client/1.1.0/
Log:
Autoversioning commit: a non-deltaV client made a change to
/maven2/org/tohu/tohu-jquery-client/1.1.0
15 years, 3 months
Repository SVN: r32308 - maven2/org/tohu/tohu-xml.
by jboss-maven2-commits@lists.jboss.org
Author: damonhorrell
Date: 2009-11-29 21:54:04 -0500 (Sun, 29 Nov 2009)
New Revision: 32308
Modified:
maven2/org/tohu/tohu-xml/maven-metadata.xml.sha1
Log:
Autoversioning commit: a non-deltaV client made a change to
/maven2/org/tohu/tohu-xml/maven-metadata.xml.sha1
Modified: maven2/org/tohu/tohu-xml/maven-metadata.xml.sha1
===================================================================
--- maven2/org/tohu/tohu-xml/maven-metadata.xml.sha1 2009-11-30 02:54:00 UTC (rev 32307)
+++ maven2/org/tohu/tohu-xml/maven-metadata.xml.sha1 2009-11-30 02:54:04 UTC (rev 32308)
@@ -1 +1 @@
-a76e3be57493b77bd3e501860e5b895684596c8a
\ No newline at end of file
+cf1c6cf91bd82fbec94d3fdfc1869ede375e4d78
\ No newline at end of file
15 years, 3 months
Repository SVN: r32307 - maven2/org/tohu/tohu-xml.
by jboss-maven2-commits@lists.jboss.org
Author: damonhorrell
Date: 2009-11-29 21:54:00 -0500 (Sun, 29 Nov 2009)
New Revision: 32307
Modified:
maven2/org/tohu/tohu-xml/maven-metadata.xml.md5
Log:
Autoversioning commit: a non-deltaV client made a change to
/maven2/org/tohu/tohu-xml/maven-metadata.xml.md5
Modified: maven2/org/tohu/tohu-xml/maven-metadata.xml.md5
===================================================================
--- maven2/org/tohu/tohu-xml/maven-metadata.xml.md5 2009-11-30 02:53:54 UTC (rev 32306)
+++ maven2/org/tohu/tohu-xml/maven-metadata.xml.md5 2009-11-30 02:54:00 UTC (rev 32307)
@@ -1 +1 @@
-56465f87fcd3d899db0816dd3d8cb0fb
\ No newline at end of file
+7494857fdf90471090af465e6533260e
\ No newline at end of file
15 years, 3 months
Repository SVN: r32306 - maven2/org/tohu/tohu-xml.
by jboss-maven2-commits@lists.jboss.org
Author: damonhorrell
Date: 2009-11-29 21:53:54 -0500 (Sun, 29 Nov 2009)
New Revision: 32306
Modified:
maven2/org/tohu/tohu-xml/maven-metadata.xml
Log:
Autoversioning commit: a non-deltaV client made a change to
/maven2/org/tohu/tohu-xml/maven-metadata.xml
Modified: maven2/org/tohu/tohu-xml/maven-metadata.xml
===================================================================
--- maven2/org/tohu/tohu-xml/maven-metadata.xml 2009-11-30 02:53:48 UTC (rev 32305)
+++ maven2/org/tohu/tohu-xml/maven-metadata.xml 2009-11-30 02:53:54 UTC (rev 32306)
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
-<metadata xsi:schemaLocation="http://maven.apache.org/METADATA/1.0.0 http://maven.apache.org/xsd/metadata-1.0.0.xsd" xmlns="http://maven.apache.org/METADATA/1.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<metadata>
<groupId>org.tohu</groupId>
<artifactId>tohu-xml</artifactId>
<version>1.0.0</version>
<versioning>
<versions>
<version>1.0.0</version>
+ <version>1.1.0</version>
</versions>
- <lastUpdated>20091003002608</lastUpdated>
+ <lastUpdated>20091130025324</lastUpdated>
</versioning>
</metadata>
15 years, 3 months
Repository SVN: r32305 - maven2/org/tohu/tohu-xml/1.1.0.
by jboss-maven2-commits@lists.jboss.org
Author: damonhorrell
Date: 2009-11-29 21:53:48 -0500 (Sun, 29 Nov 2009)
New Revision: 32305
Added:
maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom.sha1
Log:
Autoversioning commit: a non-deltaV client made a change to
/maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom.sha1
Added: maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom.sha1
===================================================================
--- maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom.sha1 (rev 0)
+++ maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom.sha1 2009-11-30 02:53:48 UTC (rev 32305)
@@ -0,0 +1 @@
+cfc137a46f576618d1601838e3602217d1d759c6
\ No newline at end of file
15 years, 3 months
Repository SVN: r32304 - maven2/org/tohu/tohu-xml/1.1.0.
by jboss-maven2-commits@lists.jboss.org
Author: damonhorrell
Date: 2009-11-29 21:53:45 -0500 (Sun, 29 Nov 2009)
New Revision: 32304
Added:
maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom.md5
Log:
Autoversioning commit: a non-deltaV client made a change to
/maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom.md5
Added: maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom.md5
===================================================================
--- maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom.md5 (rev 0)
+++ maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom.md5 2009-11-30 02:53:45 UTC (rev 32304)
@@ -0,0 +1 @@
+1bdc553ca994879ff2be49340e8ad68f
\ No newline at end of file
15 years, 3 months
Repository SVN: r32303 - maven2/org/tohu/tohu-xml/1.1.0.
by jboss-maven2-commits@lists.jboss.org
Author: damonhorrell
Date: 2009-11-29 21:53:42 -0500 (Sun, 29 Nov 2009)
New Revision: 32303
Added:
maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom
Log:
Autoversioning commit: a non-deltaV client made a change to
/maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom
Added: maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom
===================================================================
--- maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom (rev 0)
+++ maven2/org/tohu/tohu-xml/1.1.0/tohu-xml-1.1.0.pom 2009-11-30 02:53:42 UTC (rev 32303)
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+
+ <!--
+ Copyright 2009 Solnet Solutions Limited (http://www.solnetsolutions.co.nz/)
+
+ 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.
+
+ @author Damon Horrell
+ -->
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <artifactId>tohu</artifactId>
+ <groupId>org.tohu</groupId>
+ <version>1.1.0</version>
+ </parent>
+
+ <artifactId>tohu-xml</artifactId>
+
+ <packaging>jar</packaging>
+ <name>Tohu :: XML Protocol</name>
+
+ <build>
+ <finalName>tohu-xml</finalName>
+ <resources>
+ <resource>
+ <directory>src/main/rules</directory>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-eclipse-plugin</artifactId>
+ <version>2.7</version>
+ <configuration>
+ <additionalBuildcommands>
+ <buildcommand>org.drools.eclipse.droolsbuilder</buildcommand>
+ </additionalBuildcommands>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ <version>1.7.0</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.3.1</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.antlr</groupId>
+ <artifactId>antlr</artifactId>
+ <version>3.1.1</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.tohu</groupId>
+ <artifactId>tohu-core</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ </dependencies>
+ <properties>
+ <site-deploy>${basedir}/../</site-deploy>
+ </properties>
+
+</project>
15 years, 3 months