You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by ha...@apache.org on 2012/12/14 22:07:25 UTC

svn commit: r1422081 - in /ode/trunk: ./ jacob-annotation/ jacob-annotation/src/ jacob-annotation/src/main/ jacob-annotation/src/main/java/ jacob-annotation/src/main/java/org/ jacob-annotation/src/main/java/org/apache/ jacob-annotation/src/main/java/or...

Author: hadrian
Date: Fri Dec 14 21:07:23 2012
New Revision: 1422081

URL: http://svn.apache.org/viewvc?rev=1422081&view=rev
Log:
Add jacob-annotation as separate project

Added:
    ode/trunk/jacob-annotation/
    ode/trunk/jacob-annotation/pom.xml   (with props)
    ode/trunk/jacob-annotation/src/
    ode/trunk/jacob-annotation/src/main/
    ode/trunk/jacob-annotation/src/main/java/
    ode/trunk/jacob-annotation/src/main/java/org/
    ode/trunk/jacob-annotation/src/main/java/org/apache/
    ode/trunk/jacob-annotation/src/main/java/org/apache/ode/
    ode/trunk/jacob-annotation/src/main/java/org/apache/ode/jacob/
    ode/trunk/jacob-annotation/src/main/java/org/apache/ode/jacob/annotation/
    ode/trunk/jacob-annotation/src/main/java/org/apache/ode/jacob/annotation/ChannelType.java   (with props)
Modified:
    ode/trunk/Rakefile

Modified: ode/trunk/Rakefile
URL: http://svn.apache.org/viewvc/ode/trunk/Rakefile?rev=1422081&r1=1422080&r2=1422081&view=diff
==============================================================================
--- ode/trunk/Rakefile (original)
+++ ode/trunk/Rakefile Fri Dec 14 21:07:23 2012
@@ -398,6 +398,11 @@ define "ode" do
     package(:zip).include(derby_db)
   end
 
+  desc "ODE JAva Concurrent OBjects - Annotations"
+  define "jacob-annotation" do
+    package :jar
+  end
+
   desc "ODE JAva Concurrent OBjects"
   define "jacob" do
     compile.with projects("utils"), COMMONS.logging

Added: ode/trunk/jacob-annotation/pom.xml
URL: http://svn.apache.org/viewvc/ode/trunk/jacob-annotation/pom.xml?rev=1422081&view=auto
==============================================================================
--- ode/trunk/jacob-annotation/pom.xml (added)
+++ ode/trunk/jacob-annotation/pom.xml Fri Dec 14 21:07:23 2012
@@ -0,0 +1,35 @@
+<?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">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.ode</groupId>
+    <artifactId>ode</artifactId>
+    <version>1.4-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>jacob-annotation</artifactId>
+  <packaging>jar</packaging>
+  <name>ODE :: JACOB :: Annotations</name>
+
+</project>

Propchange: ode/trunk/jacob-annotation/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: ode/trunk/jacob-annotation/src/main/java/org/apache/ode/jacob/annotation/ChannelType.java
URL: http://svn.apache.org/viewvc/ode/trunk/jacob-annotation/src/main/java/org/apache/ode/jacob/annotation/ChannelType.java?rev=1422081&view=auto
==============================================================================
--- ode/trunk/jacob-annotation/src/main/java/org/apache/ode/jacob/annotation/ChannelType.java (added)
+++ ode/trunk/jacob-annotation/src/main/java/org/apache/ode/jacob/annotation/ChannelType.java Fri Dec 14 21:07:23 2012
@@ -0,0 +1,21 @@
+/**
+ * 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.
+ */
+package org.apache.ode.jacob.annotation;
+
+
+public @interface ChannelType {
+}

Propchange: ode/trunk/jacob-annotation/src/main/java/org/apache/ode/jacob/annotation/ChannelType.java
------------------------------------------------------------------------------
    svn:eol-style = native