From a5dfadb778fdb5a74b7d5e9169b6d3eceb16a5e7 Mon Sep 17 00:00:00 2001 From: kelvingoodson Date: Fri, 26 Feb 2010 16:28:29 +0000 Subject: split the logic code out so i can see the tuscany code better git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@916741 13f79535-47bb-0310-9956-ffa450edef68 --- sandbox/kgoodson/jagg-logic/pom.xml | 173 +++++++++++++++++++++ .../jagg-logic/src/main/resources/JiraRSS.xsd | 99 ++++++++++++ .../jagg-logic/src/main/resources/JiraSideband.xml | 65 ++++++++ .../jagg-logic/src/main/resources/JiraSideband.xsd | 129 +++++++++++++++ .../jagg-logic/src/main/resources/exampleJira.xml | 67 ++++++++ .../jagg-logic/src/main/resources/plan.composite | 43 +++++ 6 files changed, 576 insertions(+) create mode 100644 sandbox/kgoodson/jagg-logic/pom.xml create mode 100644 sandbox/kgoodson/jagg-logic/src/main/resources/JiraRSS.xsd create mode 100644 sandbox/kgoodson/jagg-logic/src/main/resources/JiraSideband.xml create mode 100644 sandbox/kgoodson/jagg-logic/src/main/resources/JiraSideband.xsd create mode 100644 sandbox/kgoodson/jagg-logic/src/main/resources/exampleJira.xml create mode 100644 sandbox/kgoodson/jagg-logic/src/main/resources/plan.composite diff --git a/sandbox/kgoodson/jagg-logic/pom.xml b/sandbox/kgoodson/jagg-logic/pom.xml new file mode 100644 index 0000000000..9f4209a2ad --- /dev/null +++ b/sandbox/kgoodson/jagg-logic/pom.xml @@ -0,0 +1,173 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-sca + 2.0-SNAPSHOT + ../pom.xml + + jagg-logic + Apache Tuscany SCA JIRA Aggregator Logic> + + + + + apache.incubator + http://people.apache.org/repo/m2-incubating-repository + + + + + + + + org.codehaus.mojo + jaxb2-maven-plugin + 1.3 + + + + + + + org.apache.maven.plugins + maven-dependency-plugin + + + copy + generate-sources + + copy + + + + + javax.xml.bind + jaxb-api + 2.1 + jar + + + ${project.build.directory}/endorsed + false + true + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + -Djava.endorsed.dirs=target/endorsed + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.0 + + + + add-source + generate-sources + + add-source + + + + target/jaxb-source + + + + + + + + org.jvnet.jaxb2.maven2 + maven-jaxb2-plugin + 0.7.1 + + + generate-jaxb + generate-sources + + generate + + + + + com.example.ipo.jaxb + ${project.build.directory}/jaxb-source + ${basedir}/src/main/resources + + + JiraSideband.xsd + JiraRSS.xsd + + + + + + ${artifactId} + + + + + + + junit + junit + 4.5 + test + + + rome + rome + 1.0 + + + javax.xml.bind + jaxb-api + 2.0 + + + + com.sun.xml.bind + jaxb-impl + 2.0.3 + + + org.jvnet.jaxb2_commons + runtime + 0.4.1 + + + org.jvnet.jaxb2_commons + testing + 0.4.1 + test + + + + + diff --git a/sandbox/kgoodson/jagg-logic/src/main/resources/JiraRSS.xsd b/sandbox/kgoodson/jagg-logic/src/main/resources/JiraRSS.xsd new file mode 100644 index 0000000000..4a2b066267 --- /dev/null +++ b/sandbox/kgoodson/jagg-logic/src/main/resources/JiraRSS.xsd @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/kgoodson/jagg-logic/src/main/resources/JiraSideband.xml b/sandbox/kgoodson/jagg-logic/src/main/resources/JiraSideband.xml new file mode 100644 index 0000000000..2d60a3b83a --- /dev/null +++ b/sandbox/kgoodson/jagg-logic/src/main/resources/JiraSideband.xml @@ -0,0 +1,65 @@ + + + https://issues.apache.org/jira/browse/ + + + TUSCANY-2850 + + Support binding.json-rpc for implementation.java's reference + Resolved + Luciano Resende + + + + TUSCANY-3395 + + Tidying up Contribution Scanner API + Resolved + Luciano Resende + + + + TUSCANY-3397 + + Add support for identifying the SCA Spec Version for contribution metadata + Resolved + Luciano Resende + + + + + + TUSCANY-3433 + + Import more of the basic itests from 1.x to 2.x + Open + Ramkumar Ramalingam + + + + TUSCANY-3409 + + Non-Simple Property Injected with XML Fails with NullPointerException + Resolved + Raymond Feng + + + + TUSCANY-3441 + + Improve mechanism for determining locality of endpoints to endpoint references + Open + Unassigned + + + + TUSCANY-3443 + + Devise a away to track and spi changes we make in 2.x + Open + Unassigned + + + + + diff --git a/sandbox/kgoodson/jagg-logic/src/main/resources/JiraSideband.xsd b/sandbox/kgoodson/jagg-logic/src/main/resources/JiraSideband.xsd new file mode 100644 index 0000000000..a03291e66c --- /dev/null +++ b/sandbox/kgoodson/jagg-logic/src/main/resources/JiraSideband.xsd @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + The milestone or deliverable name that we require this + function for + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + A tuscany source code repository branch name or + repository version number + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/kgoodson/jagg-logic/src/main/resources/exampleJira.xml b/sandbox/kgoodson/jagg-logic/src/main/resources/exampleJira.xml new file mode 100644 index 0000000000..08dae93262 --- /dev/null +++ b/sandbox/kgoodson/jagg-logic/src/main/resources/exampleJira.xml @@ -0,0 +1,67 @@ + + + ASF JIRA + https://issues.apache.org:443/jira + This file is an XML representation of an issue + en-uk + + 3.13.5 + 360 + 07-07-2009 + Enterprise + + + [TUSCANY-3397] Add support for identifying the + SCA Spec Version for contribution metadata + https://issues.apache.org:443/jira/browse/TUSCANY-3397 + Provide the same support we have for Composites, + for Contribution Metadata + + TUSCANY-3397 + Add support for identifying the SCA Spec Version for + contribution metadata + Bug + Major + Resolved + Fixed + Luciano Resende + Luciano Resende + Fri, 18 Dec 2009 17:31:07 +0000 (UTC) + Fri, 18 Dec 2009 17:58:58 +0000 (UTC) + Java-SCA-2.0 + Java-SCA-2.0 + Java SCA Core Runtime + + 0 + + + Fixed, you can now identify the spec version of the contribution + metadata based on the SCA Namespace being used, this means that, + for SCA 1.1, specVersion will return + http://docs.oasis-open.org/ns/opencsa/sca/200912 + + + + + + + Time in Status + + + + Resolution Date + + Fri, 18 Dec 2009 17:58:58 +0000 (UTC) + + + + + + diff --git a/sandbox/kgoodson/jagg-logic/src/main/resources/plan.composite b/sandbox/kgoodson/jagg-logic/src/main/resources/plan.composite new file mode 100644 index 0000000000..6e8a2138bf --- /dev/null +++ b/sandbox/kgoodson/jagg-logic/src/main/resources/plan.composite @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + src/main/resources/jiraSideBand.xml + + + + + + + + -- cgit v1.2.3