[jboss-maven2-commits] Repository SVN: r32267 - maven2/org/tohu/tohu/1.1.0.

jboss-maven2-commits at lists.jboss.org jboss-maven2-commits at lists.jboss.org
Sun Nov 29 21:51:32 EST 2009


Author: damonhorrell
Date: 2009-11-29 21:51:32 -0500 (Sun, 29 Nov 2009)
New Revision: 32267

Added:
   maven2/org/tohu/tohu/1.1.0/tohu-1.1.0.pom
Log:
Autoversioning commit:  a non-deltaV client made a change to
/maven2/org/tohu/tohu/1.1.0/tohu-1.1.0.pom

Added: maven2/org/tohu/tohu/1.1.0/tohu-1.1.0.pom
===================================================================
--- maven2/org/tohu/tohu/1.1.0/tohu-1.1.0.pom	                        (rev 0)
+++ maven2/org/tohu/tohu/1.1.0/tohu-1.1.0.pom	2009-11-30 02:51:32 UTC (rev 32267)
@@ -0,0 +1,184 @@
+<?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.1.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>
+    <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>
+    <module>tohu-loader</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>
+        <version>2.3</version>
+        <inherited>true</inherited>
+      </plugin>
+    </plugins>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>cobertura-maven-plugin</artifactId>
+          <version>${cobertura-maven-plugin.version}</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>${cobertura-maven-plugin.version}</version>
+        <configuration>
+          <formats>
+            <format>html</format>
+            <format>xml</format>
+          </formats>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+  <distributionManagement>
+    <site>
+	 <id>website</id>
+         <url>file://${site-deploy}../maven-site</url>
+    </site>
+    <repository>
+      <id>jboss-releases</id>
+      <name>JBoss Releases Repository</name>
+      <url>dav:https://svn.jboss.org/repos/repository.jboss.org/maven2</url>
+    </repository>
+  </distributionManagement>
+  <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>
+     <site-deploy>${basedir}/</site-deploy>
+  </properties>
+</project>



More information about the jboss-maven2-commits mailing list