You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by jv...@apache.org on 2011/09/17 07:36:49 UTC

svn commit: r1171898 - in /mina/trunk/examples: ./ pom.xml src/ src/main/ src/main/java/ src/main/resources/ src/test/ src/test/java/ src/test/resources/

Author: jvermillard
Date: Sat Sep 17 05:36:48 2011
New Revision: 1171898

URL: http://svn.apache.org/viewvc?rev=1171898&view=rev
Log:
DIRMINA-861 example sub project

Added:
    mina/trunk/examples/   (with props)
    mina/trunk/examples/pom.xml   (with props)
    mina/trunk/examples/src/
    mina/trunk/examples/src/main/
    mina/trunk/examples/src/main/java/
    mina/trunk/examples/src/main/resources/
    mina/trunk/examples/src/test/
    mina/trunk/examples/src/test/java/
    mina/trunk/examples/src/test/resources/

Propchange: mina/trunk/examples/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sat Sep 17 05:36:48 2011
@@ -0,0 +1,3 @@
+target
+.project
+.classpath

Added: mina/trunk/examples/pom.xml
URL: http://svn.apache.org/viewvc/mina/trunk/examples/pom.xml?rev=1171898&view=auto
==============================================================================
--- mina/trunk/examples/pom.xml (added)
+++ mina/trunk/examples/pom.xml Sat Sep 17 05:36:48 2011
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+  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">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.mina</groupId>
+    <artifactId>mina-parent</artifactId>
+    <version>3.0.0-M1-SNAPSHOT</version>
+  </parent>
+  <artifactId>mina-examples</artifactId>
+  <name>Apache MINA examples</name>
+  <packaging>jar</packaging>
+  <properties>
+    <symbolicName>${project.groupId}.examples</symbolicName>
+    <exportedPackage>${project.groupId}</exportedPackage>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>mina-core</artifactId>
+      <version>${project.version}</version>
+      <type>bundle</type>
+    </dependency>
+  </dependencies>
+  <description>Apache MINA server and client examples</description>
+</project>
+

Propchange: mina/trunk/examples/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain