From 5e8971ab2131d5cc85a0fa083eca37a106b7a62a Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Mon, 6 Oct 2008 20:08:13 +0000 Subject: [PATCH] * added configuration files git-svn-id: svn+ssh://svn.synyx.de/var/svn/synyx/opensource/synyx-plugin/trunk@2911 5a64d73e-33d6-4ccc-9058-23f8668ecac9 --- .../src/main/resources/META-INF/MANIFEST.MF | 27 +++++++++++ .../main/resources/META-INF/spring.handlers | 1 + .../main/resources/META-INF/spring.schemas | 1 + .../plugin/core/config/plugin-config.xsd | 48 +++++++++++++++++++ 4 files changed, 77 insertions(+) create mode 100644 plugin-core/src/main/resources/META-INF/MANIFEST.MF create mode 100644 plugin-core/src/main/resources/META-INF/spring.handlers create mode 100644 plugin-core/src/main/resources/META-INF/spring.schemas create mode 100644 plugin-core/src/main/resources/org/synyx/plugin/core/config/plugin-config.xsd diff --git a/plugin-core/src/main/resources/META-INF/MANIFEST.MF b/plugin-core/src/main/resources/META-INF/MANIFEST.MF new file mode 100644 index 0000000..d4c8547 --- /dev/null +++ b/plugin-core/src/main/resources/META-INF/MANIFEST.MF @@ -0,0 +1,27 @@ +Manifest-Version: 1.0 +Bundle-Name: Synyx Hades Bundle +Bundle-SymbolicName: org.synyx.hades +Bundle-Version: 0.0.1 +Export-Package: org.synyx.hades.dao;specification-version="0.0.1", + org.synyx.hades.dao.orm;specification-version="0.0.1", + org.synyx.hades.dao.orm.support;specification-version="0.0.1", + org.synyx.hades.dao.test;specification-version="0.0.1", + org.synyx.hades.domain;specification-version="0.0.1", + org.synyx.hades.domain.support;specification-version="0.0.1" +Import-Package: javax.persistence, + org.aopalliance.intercept, + org.apache.commons.logging, + org.aspectj.lang.annotation;optional=true, + org.hibernate;optional=true, + org.hibernate.criterion;optional=true, + org.hibernate.ejb;optional=true, + org.springframework.aop.framework, + org.springframework.beans.factory, + org.springframework.beans.factory.annotation, + org.springframework.beans.factory.config, + org.springframework.beans.factory.support, + org.springframework.beans.factory.xml, + org.springframework.dao.annotation, + org.springframework.orm.jpa, + org.springframework.stereotype, + org.w3c.dom diff --git a/plugin-core/src/main/resources/META-INF/spring.handlers b/plugin-core/src/main/resources/META-INF/spring.handlers new file mode 100644 index 0000000..810bd37 --- /dev/null +++ b/plugin-core/src/main/resources/META-INF/spring.handlers @@ -0,0 +1 @@ +http\://www.synyx.org/schema/plugin=org.synyx.plugin.core.config.PluginNamespaceHandler \ No newline at end of file diff --git a/plugin-core/src/main/resources/META-INF/spring.schemas b/plugin-core/src/main/resources/META-INF/spring.schemas new file mode 100644 index 0000000..5c6e51c --- /dev/null +++ b/plugin-core/src/main/resources/META-INF/spring.schemas @@ -0,0 +1 @@ +http\://www.synyx.org/schema/plugin/plugin-config.xsd=org/synyx/plugin/core/config/plugin-config.xsd \ No newline at end of file diff --git a/plugin-core/src/main/resources/org/synyx/plugin/core/config/plugin-config.xsd b/plugin-core/src/main/resources/org/synyx/plugin/core/config/plugin-config.xsd new file mode 100644 index 0000000..10250fa --- /dev/null +++ b/plugin-core/src/main/resources/org/synyx/plugin/core/config/plugin-config.xsd @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file