[jboss-cvs] Repository SVN: r29271 - maven2/org/tohu/tohu/1.0.0.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Fri Oct 2 20:24:26 EDT 2009
Author: damonhorrell
Date: 2009-10-02 20:24:26 -0400 (Fri, 02 Oct 2009)
New Revision: 29271
Added:
maven2/org/tohu/tohu/1.0.0/tohu-1.0.0.pom
Log:
Autoversioning commit: a non-deltaV client made a change to
/maven2/org/tohu/tohu/1.0.0/tohu-1.0.0.pom
Added: maven2/org/tohu/tohu/1.0.0/tohu-1.0.0.pom
===================================================================
--- maven2/org/tohu/tohu/1.0.0/tohu-1.0.0.pom (rev 0)
+++ maven2/org/tohu/tohu/1.0.0/tohu-1.0.0.pom 2009-10-03 00:24:26 UTC (rev 29271)
@@ -0,0 +1,188 @@
+<?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>
+ <artifactId>tohu</artifactId>
+ <groupId>org.tohu</groupId>
+ <version>1.0.0</version>
+ <packaging>pom</packaging>
+
+ <name>Tohu</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.drools</groupId>
+ <artifactId>drools-api</artifactId>
+ <version>5.1.0.SNAPSHOT.tohu1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.drools</groupId>
+ <artifactId>drools-compiler</artifactId>
+ <version>5.1.0.SNAPSHOT.tohu1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.drools</groupId>
+ <artifactId>drools-core</artifactId>
+ <version>5.1.0.SNAPSHOT.tohu1</version>
+ </dependency>
+ <!-- TODO this dependency shouldn't be at this level as it is only needed by some end applications -->
+ <dependency>
+ <groupId>org.drools</groupId>
+ <artifactId>drools-transformer-xstream</artifactId>
+ <version>5.1.0.SNAPSHOT.tohu1</version>
+ </dependency>
+ <!-- TODO this dependency shouldn't be at this level as it is only needed by some end applications -->
+ <dependency>
+ <groupId>org.drools</groupId>
+ <artifactId>drools-execution-server</artifactId>
+ <version>0.0.2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jdt</groupId>
+ <artifactId>core</artifactId>
+ <version>3.4.2.v_883_R34x</version>
+ </dependency>
+ <dependency>
+ <groupId>org.mvel</groupId>
+ <artifactId>mvel2</artifactId>
+ <version>2.0.12</version>
+ </dependency>
+ </dependencies>
+
+ <repositories>
+ <repository>
+ <id>repository.jboss.org</id>
+ <url>http://repository.jboss.org/maven2</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ </repository>
+ <repository>
+ <id>snapshots.jboss.org</id>
+ <url>http://snapshots.jboss.org/maven2</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </repository>
+ <!--
+ TODO this is only temporary until Drools version 5.1.0.M1 is released. Using a local copy instead of HEAD so we aren't
+ affected by changes which could break things.
+ -->
+ <repository>
+ <id>temp.local</id>
+ <url>http://anonsvn.jboss.org/repos/tohu/trunk/tohu/lib/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ </repository>
+ </repositories>
+
+ <modules>
+ <module>tohu-core</module>
+ <module>tohu-domain</module>
+ <module>tohu-xml</module>
+ <module>tohu-clients</module>
+ </modules>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <configuration>
+ <argLine>-Xmx1024m</argLine>
+ </configuration>
+ <inherited>true</inherited>
+ </plugin>
+ </plugins>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <check>
+ <totalBranchRate>${cobertura.total-branch-rate}</totalBranchRate>
+ <totalLineRate>${cobertura.total-line-rate}</totalLineRate>
+ <haltOnFailure>${cobertura.halt-on-failure}</haltOnFailure>
+ </check>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>clean</goal>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <formats>
+ <format>html</format>
+ <format>xml</format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+ <properties>
+ <cobertura-maven-plugin.version>2.2</cobertura-maven-plugin.version>
+ <cobertura.total-branch-rate>80</cobertura.total-branch-rate>
+ <cobertura.total-line-rate>80</cobertura.total-line-rate>
+ <cobertura.halt-on-failure>false</cobertura.halt-on-failure>
+ </properties>
+<distributionManagement>
+ <repository>
+ <id>jboss-releases</id>
+ <name>JBoss Releases Repository</name>
+ <url>dav:https://svn.jboss.org/repos/repository.jboss.org/maven2</url>
+ </repository>
+ </distributionManagement>
+</project>
More information about the jboss-cvs-commits
mailing list