You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2010/07/16 12:35:46 UTC

svn commit: r964740 - in /servicemix/m2-repo/org/apache/aries/java5-parent: ./ 0.1-r964701/ 0.1-r964701/java5-parent-0.1-r964701.pom maven-metadata-local.xml

Author: gnodet
Date: Fri Jul 16 10:35:46 2010
New Revision: 964740

URL: http://svn.apache.org/viewvc?rev=964740&view=rev
Log:
Add aries timestamped version

Added:
    servicemix/m2-repo/org/apache/aries/java5-parent/
    servicemix/m2-repo/org/apache/aries/java5-parent/0.1-r964701/
    servicemix/m2-repo/org/apache/aries/java5-parent/0.1-r964701/java5-parent-0.1-r964701.pom
    servicemix/m2-repo/org/apache/aries/java5-parent/maven-metadata-local.xml

Added: servicemix/m2-repo/org/apache/aries/java5-parent/0.1-r964701/java5-parent-0.1-r964701.pom
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/aries/java5-parent/0.1-r964701/java5-parent-0.1-r964701.pom?rev=964740&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/aries/java5-parent/0.1-r964701/java5-parent-0.1-r964701.pom (added)
+++ servicemix/m2-repo/org/apache/aries/java5-parent/0.1-r964701/java5-parent-0.1-r964701.pom Fri Jul 16 10:35:46 2010
@@ -0,0 +1,145 @@
+<?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">
+    <!-- This file was based on the Geronimo Genesis Java 5 Parent Pom -->
+
+    <modelVersion>4.0.0</modelVersion>
+    
+    <parent>
+        <groupId>org.apache.aries</groupId>
+        <artifactId>default-parent</artifactId>
+        <version>0.1-r964701</version>
+    </parent>
+    
+    <artifactId>java5-parent</artifactId>
+    <name>Aries :: Java 5 Parent POM</name>
+    <version>0.1-r964701</version>
+    <packaging>pom</packaging>
+    
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+            
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-enforcer-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>enforce</goal>
+                        </goals>
+                        <configuration>
+                            <rules>
+                                <requireJavaVersion>
+                                    <version>[1.5,)</version>
+                                </requireJavaVersion>
+                            </rules>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <quiet>true</quiet>
+                    <source>1.5</source>
+                    <links>
+                        <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
+                    </links>
+                    <tags>
+                        <tag>
+                            <name>goal</name>
+                            <placement>Xt</placement>
+                        </tag>
+                        <tag>
+                            <name>phase</name>
+                            <placement>Xt</placement>
+                        </tag>
+                        <tag>
+                            <name>execute</name>
+                            <placement>Xt</placement>
+                        </tag>
+                        <tag>
+                            <name>requiresDependencyResolution</name>
+                            <placement>Xt</placement>
+                        </tag>
+                        <tag>
+                            <name>parameter</name>
+                            <placement>Xf</placement>
+                        </tag>
+                        <tag>
+                            <name>required</name>
+                            <placement>Xf</placement>
+                        </tag>
+                        <tag>
+                            <name>readonly</name>
+                            <placement>Xf</placement>
+                        </tag>
+                        <tag>
+                            <name>component</name>
+                            <placement>Xf</placement>
+                        </tag>
+                        <tag>
+                            <name>plexus.component</name>
+                            <placement>Xf</placement>
+                        </tag>
+                        <tag>
+                            <name>plexus.requirement</name>
+                            <placement>Xf</placement>
+                        </tag>
+                    </tags>
+                </configuration>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-pmd-plugin</artifactId>
+                <configuration>
+                    <targetJdk>1.5</targetJdk>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+
+</project>
+
+

Added: servicemix/m2-repo/org/apache/aries/java5-parent/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/aries/java5-parent/maven-metadata-local.xml?rev=964740&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/aries/java5-parent/maven-metadata-local.xml (added)
+++ servicemix/m2-repo/org/apache/aries/java5-parent/maven-metadata-local.xml Fri Jul 16 10:35:46 2010
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.aries</groupId>
+  <artifactId>java5-parent</artifactId>
+  <version>0.2-incubating-SNAPSHOT</version>
+  <versioning>
+    <versions>
+      <version>0.2-incubating-SNAPSHOT</version>
+      <version>0.1-20100716</version>
+      <version>0.1-r964701</version>
+    </versions>
+    <lastUpdated>20100716100229</lastUpdated>
+  </versioning>
+</metadata>