[jboss-cvs] Repository SVN: r28739 - in org/jboss/logmanager: 1.1.0.GA-brew and 2 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Aug 28 15:50:20 EDT 2009


Author: mbenitez
Date: 2009-08-28 15:50:19 -0400 (Fri, 28 Aug 2009)
New Revision: 28739

Added:
   org/jboss/logmanager/1.1.0.GA-brew/
   org/jboss/logmanager/1.1.0.GA-brew/component-info.xml
   org/jboss/logmanager/1.1.0.GA-brew/lib/
   org/jboss/logmanager/1.1.0.GA-brew/lib/jboss-logmanager.jar
   org/jboss/logmanager/1.1.0.GA-brew/lib/jboss-logmanager.pom
   org/jboss/logmanager/1.1.0.GA-brew/src/
   org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-1.1.0.tar.gz
   org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-jpp-depmap.xml
   org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-pom.patch
   org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-settings.xml
Log:
Add brew build 1.1.0.GA-brew

Added: org/jboss/logmanager/1.1.0.GA-brew/component-info.xml
===================================================================
--- org/jboss/logmanager/1.1.0.GA-brew/component-info.xml	                        (rev 0)
+++ org/jboss/logmanager/1.1.0.GA-brew/component-info.xml	2009-08-28 19:50:19 UTC (rev 28739)
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="">
+  <component id="org/jboss/logmanager"
+             licenseType=""
+             version="1.1.0.GA-brew"
+             tag="jboss-logmanager-1_1_0-1_ep5_el4"
+             description=""
+             
+             > 
+              
+    <artifact id="jboss-logmanager.jar"/>
+
+
+    <export>
+      <include input="jboss-logmanager.jar"/>
+
+    </export>
+  </component>
+</project>

Added: org/jboss/logmanager/1.1.0.GA-brew/lib/jboss-logmanager.jar
===================================================================
(Binary files differ)


Property changes on: org/jboss/logmanager/1.1.0.GA-brew/lib/jboss-logmanager.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: org/jboss/logmanager/1.1.0.GA-brew/lib/jboss-logmanager.pom
===================================================================
--- org/jboss/logmanager/1.1.0.GA-brew/lib/jboss-logmanager.pom	                        (rev 0)
+++ org/jboss/logmanager/1.1.0.GA-brew/lib/jboss-logmanager.pom	2009-08-28 19:50:19 UTC (rev 28739)
@@ -0,0 +1,114 @@
+<!--
+  ~ JBoss, Home of Professional Open Source.
+  ~ Copyright 2009, Red Hat Middleware LLC, and individual contributors
+  ~ as indicated by the @author tags. See the copyright.txt file in the
+  ~ distribution for a full listing of individual contributors.
+  ~
+  ~ This is free software; you can redistribute it and/or modify it
+  ~ under the terms of the GNU Lesser General Public License as
+  ~ published by the Free Software Foundation; either version 2.1 of
+  ~ the License, or (at your option) any later version.
+  ~
+  ~ This software is distributed in the hope that it will be useful,
+  ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+  ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+  ~ Lesser General Public License for more details.
+  ~
+  ~ You should have received a copy of the GNU Lesser General Public
+  ~ License along with this software; if not, write to the Free
+  ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+  ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+  -->
+
+<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/xsd/maven-4.0.0.xsd">
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>org.jboss.logmanager</groupId>
+    <artifactId>jboss-logmanager</artifactId>
+    <packaging>jar</packaging>
+    <version>1.1.0.GA</version>
+    <dependencies>
+        <dependency>
+            <groupId>org.testng</groupId>
+            <artifactId>testng</artifactId>
+            <version>5.8</version>
+            <classifier>jdk15</classifier>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss</groupId>
+            <artifactId>jboss-common-core</artifactId>
+            <version>2.2.14.GA</version>
+            <optional>true</optional>
+        </dependency>
+    </dependencies>
+    <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>
+                <artifactId>maven-source-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>attach-sources</id>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <includes>
+                        <include>**/*Tests.java</include>
+                    </includes>
+                </configuration>
+            </plugin>
+        </plugins>
+        <finalName>jboss-logmanager</finalName>
+    </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+<!--                
+                    <doclet>net.gleamynode.apiviz.APIviz</doclet>
+                    <docletArtifact>
+                        <groupId>org.jboss.apiviz</groupId>
+                        <artifactId>apiviz</artifactId>
+                        <version>1.2.5.GA</version>
+                    </docletArtifact>
+-->                    
+                    <doctitle><![CDATA[JBoss LogManager 1.1.0.GA]]></doctitle>
+                    <header><![CDATA[JBoss LogManager 1.1.0.GA]]></header>
+                    <footer><![CDATA[JBoss LogManager 1.1.0.GA]]></footer>
+                    <bottom><![CDATA[<i>Copyright &#169; 2009 JBoss, a division of Red Hat, Inc.</i>]]></bottom>
+                    <links>
+                        <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+                    </links>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+    <distributionManagement>
+        <repository>
+            <id>repository.jboss.org</id>
+            <name>JBoss Maven2 Repository</name>
+            <url>http://repository.jboss.org/maven2</url>
+        </repository>
+    </distributionManagement>
+</project>

Added: org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-1.1.0.tar.gz
===================================================================
(Binary files differ)


Property changes on: org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-1.1.0.tar.gz
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-jpp-depmap.xml
===================================================================
--- org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-jpp-depmap.xml	                        (rev 0)
+++ org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-jpp-depmap.xml	2009-08-28 19:50:19 UTC (rev 28739)
@@ -0,0 +1,44 @@
+<dependencies>
+<!--
+
+ <dependency>
+   <maven>
+     <groupId>slide</groupId>
+     <artifactId>slide-webdavlib</artifactId>
+     <version>2.1</version>
+   </maven>
+   <jpp>
+     <groupId>JPP/slide</groupId>
+     <artifactId>slide-webdavlib</artifactId>
+     <version>2.1</version>
+   </jpp>
+ </dependency>
+
+ <dependency>
+   <maven>
+     <groupId>apache-log4j</groupId>
+     <artifactId>log4j</artifactId>
+     <version>1.2.14</version>
+   </maven>
+   <jpp>
+     <groupId>JPP</groupId>
+     <artifactId>log4j</artifactId>
+     <version>1.2.14</version>
+   </jpp>
+ </dependency>
+-->
+
+ <dependency>
+    <maven>
+       <groupId>org.apache.maven.surefire</groupId>
+       <artifactId>surefire-testng</artifactId>
+       <version>2.3</version>
+    </maven>
+    <!--jpp>
+       <groupId>JPP</groupId>
+       <artifactId></artifactId>
+       <version></version>
+    </jpp-->
+ </dependency>
+                                            
+</dependencies>

Added: org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-pom.patch
===================================================================
--- org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-pom.patch	                        (rev 0)
+++ org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-pom.patch	2009-08-28 19:50:19 UTC (rev 28739)
@@ -0,0 +1,17 @@
+--- pom.xml.orig	2009-08-28 12:41:03.000000000 -0400
++++ pom.xml	2009-08-28 12:42:00.000000000 -0400
+@@ -85,12 +85,14 @@
+                 <groupId>org.apache.maven.plugins</groupId>
+                 <artifactId>maven-javadoc-plugin</artifactId>
+                 <configuration>
++<!--                
+                     <doclet>net.gleamynode.apiviz.APIviz</doclet>
+                     <docletArtifact>
+                         <groupId>org.jboss.apiviz</groupId>
+                         <artifactId>apiviz</artifactId>
+                         <version>1.2.5.GA</version>
+                     </docletArtifact>
++-->                    
+                     <doctitle><![CDATA[JBoss LogManager 1.1.0.GA]]></doctitle>
+                     <header><![CDATA[JBoss LogManager 1.1.0.GA]]></header>
+                     <footer><![CDATA[JBoss LogManager 1.1.0.GA]]></footer>

Added: org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-settings.xml
===================================================================
--- org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-settings.xml	                        (rev 0)
+++ org/jboss/logmanager/1.1.0.GA-brew/src/jboss-logmanager-settings.xml	2009-08-28 19:50:19 UTC (rev 28739)
@@ -0,0 +1,47 @@
+<settings>
+	<profiles>
+		<profile>
+			<id>JPP</id>
+			<repositories>
+				<repository>
+					<id>internal</id>
+					<layout>jpp</layout>
+					<url>__JPP_URL_PLACEHOLDER__</url>
+				</repository>
+				<repository>
+					<id>external</id>
+					<layout>jpp</layout>
+					<url>__JAVADIR_PLACEHOLDER__</url>
+				</repository>
+				<repository>
+					<id>local</id>
+					<layout>jpp</layout>
+					<url>__MAVENREPO_DIR_PLACEHOLDER__</url>
+				</repository>
+			</repositories>
+			<pluginRepositories>
+				<pluginRepository>
+					<id>plugins-internal</id>
+					<name>plugins-internal</name>
+					<layout>jpp</layout>
+					<url>__JPP_URL_PLACEHOLDER__</url>
+				</pluginRepository>
+				<pluginRepository>
+					<id>plugins-external</id>
+					<name>plugins-external</name>
+					<layout>jpp</layout>
+					<url>__JAVADIR_PLACEHOLDER__</url>
+				</pluginRepository>
+				<pluginRepository>
+					<id>plugins-maven</id>
+					<name>plugins-maven</name>
+					<layout>jpp</layout>
+					<url>__MAVENDIR_PLUGIN_PLACEHOLDER__</url>
+				</pluginRepository>
+			</pluginRepositories>
+		</profile>
+	</profiles>
+	<activeProfiles>
+		<activeProfile>JPP</activeProfile>
+	</activeProfiles>
+</settings>




More information about the jboss-cvs-commits mailing list