You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2012/01/11 16:47:08 UTC

svn commit: r1230102 - /incubator/accumulo/branches/1.4/src/examples/pom.xml

Author: ecn
Date: Wed Jan 11 15:47:07 2012
New Revision: 1230102

URL: http://svn.apache.org/viewvc?rev=1230102&view=rev
Log:
ACCUMULO-285 update pom for examples

Added:
    incubator/accumulo/branches/1.4/src/examples/pom.xml   (with props)

Added: incubator/accumulo/branches/1.4/src/examples/pom.xml
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.4/src/examples/pom.xml?rev=1230102&view=auto
==============================================================================
--- incubator/accumulo/branches/1.4/src/examples/pom.xml (added)
+++ incubator/accumulo/branches/1.4/src/examples/pom.xml Wed Jan 11 15:47:07 2012
@@ -0,0 +1,74 @@
+<?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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+        <artifactId>accumulo</artifactId>
+        <groupId>org.apache.accumulo</groupId>
+        <version>1.4.0-incubating-SNAPSHOT</version>
+        <relativePath>../../</relativePath>
+  </parent>
+  <artifactId>accumulo-examples</artifactId>
+  <packaging>pom</packaging>
+  <name>accumulo-examples</name>
+
+  <modules>
+    <module>simple</module>
+    <module>wikisearch</module>
+  </modules>
+
+  <repositories>
+    <repository>
+      <id>central</id>
+      <name>Maven Repository Switchboard</name>
+      <layout>default</layout>
+      <url>http://repo1.maven.org/maven2</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+    <repository>
+      <id>java.net</id>
+      <name>java.net</name>
+      <layout>default</layout>
+      <url>https://maven.java.net/content/groups/public</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <build>
+    <defaultGoal>package</defaultGoal>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-enforcer-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>enforce-mvn</id>
+            <goals>
+              <goal>enforce</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Propchange: incubator/accumulo/branches/1.4/src/examples/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native