You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rm...@apache.org on 2011/09/21 09:01:35 UTC

svn commit: r1173516 - in /openejb/trunk/patched-libraries: README bval-patched/pom.xml jstl-patched/pom.xml pom.xml

Author: rmannibucau
Date: Wed Sep 21 07:01:34 2011
New Revision: 1173516

URL: http://svn.apache.org/viewvc?rev=1173516&view=rev
Log:
adding a parent pom to patched libraries directory to be able to deploy it on the maven repo

Added:
    openejb/trunk/patched-libraries/pom.xml
Modified:
    openejb/trunk/patched-libraries/README
    openejb/trunk/patched-libraries/bval-patched/pom.xml
    openejb/trunk/patched-libraries/jstl-patched/pom.xml

Modified: openejb/trunk/patched-libraries/README
URL: http://svn.apache.org/viewvc/openejb/trunk/patched-libraries/README?rev=1173516&r1=1173515&r2=1173516&view=diff
==============================================================================
--- openejb/trunk/patched-libraries/README (original)
+++ openejb/trunk/patched-libraries/README Wed Sep 21 07:01:34 2011
@@ -1,5 +1,5 @@
 This folder is used to store patched libraries used by OpenEJB.
 
-This is not a parent project to be able to release each patched libraries
-independently. If you think it is not relevant feel free to break it.
+The artifact version should be generally close to the patched version
+and not follow parent version.
 

Modified: openejb/trunk/patched-libraries/bval-patched/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/patched-libraries/bval-patched/pom.xml?rev=1173516&r1=1173515&r2=1173516&view=diff
==============================================================================
--- openejb/trunk/patched-libraries/bval-patched/pom.xml (original)
+++ openejb/trunk/patched-libraries/bval-patched/pom.xml Wed Sep 21 07:01:34 2011
@@ -19,7 +19,12 @@
 -->
   <modelVersion>4.0.0</modelVersion>
 
-  <groupId>org.apache.openejb.patch</groupId>
+  <parent>
+    <groupId>org.apache.openejb.patch</groupId>
+    <artifactId>openejb-patch-parent</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+
   <artifactId>openejb-bval</artifactId>
   <version>0.3-SNAPSHOT</version>
   <name>Apache OpenEJB Patch :: Bean Validation</name>
@@ -69,8 +74,4 @@
       </plugin>
     </plugins>
   </build>
-
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  
-  </properties>
 </project>

Modified: openejb/trunk/patched-libraries/jstl-patched/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/patched-libraries/jstl-patched/pom.xml?rev=1173516&r1=1173515&r2=1173516&view=diff
==============================================================================
--- openejb/trunk/patched-libraries/jstl-patched/pom.xml (original)
+++ openejb/trunk/patched-libraries/jstl-patched/pom.xml Wed Sep 21 07:01:34 2011
@@ -19,7 +19,12 @@
 -->
   <modelVersion>4.0.0</modelVersion>
 
-  <groupId>org.apache.openejb.patch</groupId>
+  <parent>
+    <groupId>org.apache.openejb.patch</groupId>
+    <artifactId>openejb-patch-parent</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+
   <artifactId>openejb-jstl</artifactId>
   <version>1.2-SNAPSHOT</version>
   <name>Apache OpenEJB Patch :: JSTL</name>

Added: openejb/trunk/patched-libraries/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/patched-libraries/pom.xml?rev=1173516&view=auto
==============================================================================
--- openejb/trunk/patched-libraries/pom.xml (added)
+++ openejb/trunk/patched-libraries/pom.xml Wed Sep 21 07:01:34 2011
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    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 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">
+  <parent>
+    <groupId>org.apache</groupId>
+    <artifactId>apache</artifactId>
+    <version>10</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.openejb.patch</groupId>
+  <artifactId>openejb-patch-parent</artifactId>
+  <packaging>pom</packaging>
+  <name>Apache OpenEJB Patch :: Parent</name>
+  <version>1.0-SNAPSHOT</version>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/openejb/trunk/patched-libraries</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/openejb/trunk/patched-libraries</developerConnection>
+    <url>https://svn.apache.org/repos/asf/openejb/trunk/patched-libraries</url>
+  </scm>
+
+  <modules>
+    <module>bval-patched</module>
+    <module>jstl-patched</module>
+  </modules>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.3.2</version>
+        <configuration>
+          <source>1.6</source>
+          <target>1.6</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  
+  </properties>
+</project>
+