Skip to content
This repository was archived by the owner on May 12, 2021. It is now read-only.

Trunk #1

Open
wants to merge 15 commits into
base: trunk
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 48 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,39 @@ define "ode" do
end
test.setup unzip("#{webapp_dir}/WEB-INF"=>project("dao-jpa-ojpa-derby").package(:zip))
test.setup unzip("#{webapp_dir}/WEB-INF"=>project("dao-hibernate-db").package(:zip))
test.exclude('*') if Buildr.environment == 'hudson' || ENV["notestng"]
# test.exclude('*') if Buildr.environment == 'hudson' || ENV["notestng"]
test.exclude 'org.apache.ode.axis2.rampart', 'org.apache.ode.axis2.hydration',
'org.apache.ode.axis2.BpelActivityTest',
'org.apache.ode.axis2.ClusteredOutgoingTrafficTest',
'org.apache.ode.axis2.EndpointConfigurationTest',
'org.apache.ode.axis2.EndpointTimeoutsTest',
'org.apache.ode.axis2.MessageStructureTest',
'org.apache.ode.axis2.MultiPartMessageTest',
'org.apache.ode.axis2.NoP2PTest',
'org.apache.ode.axis2.SelectorsTest',
'org.apache.ode.axis2.ServiceFaultCatchTest',
'org.apache.ode.axis2.SoapHeader2Test',
'org.apache.ode.axis2.SoapHeaderTest',
'org.apache.ode.axis2.XSDReferencesDeployTest',
'org.apache.ode.axis2.correlation.CorrelationJoinHibTest',
'org.apache.ode.axis2.correlation.CorrelationJoinLazyHibTest',
'org.apache.ode.axis2.correlation.CorrelationJoinLazyTest',
'org.apache.ode.axis2.correlation.CorrelationJoinTest',
'org.apache.ode.axis2.correlation.CorrelationMultiHibTest',
'org.apache.ode.axis2.correlation.CorrelationMultiTest',
'org.apache.ode.axis2.correlation.CorrelationUnicityTest',
'org.apache.ode.axis2.httpbinding.HttpBindingTest',
'org.apache.ode.axis2.instancecleanup.CleanFailureHibTest',
'org.apache.ode.axis2.instancecleanup.CleanFailureTest',
'org.apache.ode.axis2.instancecleanup.CleanFaultHibTest',
'org.apache.ode.axis2.instancecleanup.CleanFaultTest',
'org.apache.ode.axis2.instancecleanup.CleanSuccessHibTest',
'org.apache.ode.axis2.instancecleanup.CleanSuccessTest',
'org.apache.ode.axis2.management.DeploymentTest',
'org.apache.ode.axis2.management.InstanceManagementTest',
'org.apache.ode.axis2.management.Retire2Test',
'org.apache.ode.axis2.management.RetireTest',
'org.apache.ode.axis2.management.RetireTestVar'

NativeDB.prepare_configs test, _(".")

Expand Down Expand Up @@ -287,6 +319,7 @@ define "ode" do
COMMONS.collections, COMMONS.lang, DERBY, JAVAX.connector,
JAVAX.stream, JAVAX.transaction, JAXEN, HSQLDB, LOG4J, SAXON, XERCES, XMLBEANS, XALAN, GERONIMO.transaction, SPRING, HIBERNATE, SLF4J, DOM4J,
JAVAX.connector
test.exclude 'org.apache.ode.test.StructuredActivities20Test'

package :jar
end
Expand Down Expand Up @@ -398,9 +431,21 @@ 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 - Generator"
define "jacob-generator" do
compile.with projects("jacob-annotation")

package :jar
end

desc "ODE JAva Concurrent OBjects"
define "jacob" do
compile.with projects("utils"), COMMONS.logging
compile.with COMMONS.logging

package :jar
end
Expand Down Expand Up @@ -451,6 +496,7 @@ define "ode" do
rm_rf Dir["target/test/resources"]
cp_r _("src/test/resources"), _("target/test/resources")
end
test.exclude '*TestBase', 'org.apache.ode.jbi.OdeJbiComponentLifeCycleTest', 'org.apache.ode.jbi.ReplayerJbiTest'
end

desc "ODE Commmands for Karaf"
Expand Down
35 changes: 35 additions & 0 deletions jacob-annotation/pom.xml
Original file line number Diff line number Diff line change
@@ -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>
Original file line number Diff line number Diff line change
@@ -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 {
}
42 changes: 42 additions & 0 deletions jacob-generator/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?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-generator</artifactId>
<packaging>jar</packaging>
<name>ODE :: JACOB :: Generator</name>

<dependencies>
<dependency>
<groupId>org.apache.ode</groupId>
<artifactId>jacob-annotation</artifactId>
</dependency>
</dependencies>

</project>
Loading