[Escapek-commits] SF.net SVN: escapek:[829] osgi-repo/trunk
Status: Pre-Alpha
Brought to you by:
nicolasjouanin
|
From: <nic...@us...> - 2008-09-06 20:06:40
|
Revision: 829
http://escapek.svn.sourceforge.net/escapek/?rev=829&view=rev
Author: nicolasjouanin
Date: 2008-09-06 20:06:34 +0000 (Sat, 06 Sep 2008)
Log Message:
-----------
Added Paths:
-----------
osgi-repo/trunk/.project
osgi-repo/trunk/h2/
osgi-repo/trunk/h2/pom.xml
osgi-repo/trunk/hibernate/
osgi-repo/trunk/hibernate/pom.xml
osgi-repo/trunk/pom.xml
osgi-repo/trunk/stringtemplate/
osgi-repo/trunk/stringtemplate/pom.xml
osgi-repo/trunk/stringtemplate/src/
osgi-repo/trunk/stringtemplate/src/main/
osgi-repo/trunk/stringtemplate/src/main/resources/
osgi-repo/trunk/stringtemplate/src/main/resources/stringtemplate.jar
osgi-repo/trunk/xstream.osgi/
osgi-repo/trunk/xstream.osgi/META-INF/
osgi-repo/trunk/xstream.osgi/META-INF/MANIFEST.MF
osgi-repo/trunk/xstream.osgi/pom.xml
Added: osgi-repo/trunk/.project
===================================================================
--- osgi-repo/trunk/.project (rev 0)
+++ osgi-repo/trunk/.project 2008-09-06 20:06:34 UTC (rev 829)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>osgi-repo</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
Added: osgi-repo/trunk/h2/pom.xml
===================================================================
--- osgi-repo/trunk/h2/pom.xml (rev 0)
+++ osgi-repo/trunk/h2/pom.xml 2008-09-06 20:06:34 UTC (rev 829)
@@ -0,0 +1,81 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright 2008 EscapeK
+ Licensed 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">
+ <parent>
+ <groupId>org.escapek.osgi</groupId>
+ <artifactId>parent</artifactId>
+ <version>0.1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>h2</artifactId>
+ <version>1.0.76</version>
+ <name>H2 database OSGi bundle</name>
+ <packaging>bundle</packaging>
+
+ <dependencies>
+ <dependency>
+ <groupId>com.h2database</groupId>
+ <artifactId>h2</artifactId>
+ <version>1.0.76</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Export-Package>org.h2.*</Export-Package>
+ <Import-Package>*;resolution:=optional</Import-Package>
+ </instructions>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-eclipse-plugin</artifactId>
+ <configuration>
+ <pde>true</pde>
+ <projectnatures>
+ <projectnature>org.eclipse.pde.PluginNature</projectnature>
+ <projectnature>org.eclipse.jdt.core.javanature</projectnature>
+ <projectnature>org.maven.ide.eclipse.maven2Nature</projectnature>
+ </projectnatures>
+ <classpathContainers>
+ <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
+ <classpathContainer>org.eclipse.pde.core.requiredPlugins</classpathContainer>
+ <classpathContainer>org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER</classpathContainer>
+ </classpathContainers>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-dependencies</id>
+ <phase>package</phase>
+ <goals>
+ <goal>copy-dependencies</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
Added: osgi-repo/trunk/hibernate/pom.xml
===================================================================
--- osgi-repo/trunk/hibernate/pom.xml (rev 0)
+++ osgi-repo/trunk/hibernate/pom.xml 2008-09-06 20:06:34 UTC (rev 829)
@@ -0,0 +1,205 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ Copyright 2008 EscapeK
+ Licensed 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">
+ <parent>
+ <groupId>org.escapek.osgi</groupId>
+ <artifactId>parent</artifactId>
+ <version>0.1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>hibernate</artifactId>
+ <version>3.2.6.ga</version>
+ <name>Hibernate OSGi bundle</name>
+ <packaging>bundle</packaging>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate</artifactId>
+ <version>3.2.6.ga</version>
+ <exclusions>
+ <exclusion>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </exclusion>
+ </exclusions>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-annotations</artifactId>
+ <version>3.3.0.ga</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-commons-annotations</artifactId>
+ <version>3.3.0.ga</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>javax.transaction</groupId>
+ <artifactId>com.springsource.javax.transaction</artifactId>
+ <version>1.1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>com.springsource.org.apache.tools.ant</artifactId>
+ <version>1.7.0</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>com.springsource.org.apache.commons.collections</artifactId>
+ <version>3.2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>com.springsource.org.apache.commons.logging</artifactId>
+ <version>1.1.1</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.antlr</groupId>
+ <artifactId>com.springsource.antlr</artifactId>
+ <version>2.7.7</version>
+ </dependency>
+ <dependency>
+ <groupId>com.mchange.c3p0</groupId>
+ <artifactId>com.springsource.com.mchange.v2.c3p0</artifactId>
+ <version>0.9.1</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>com.opensymphony.oscache</groupId>
+ <artifactId>com.springsource.com.opensymphony.oscache</artifactId>
+ <version>2.1.0</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.javassist</groupId>
+ <artifactId>com.springsource.javassist</artifactId>
+ <version>3.3.0.ga</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.cglib</groupId>
+ <artifactId>com.springsource.net.sf.cglib</artifactId>
+ <version>2.1.3</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.ehcache</groupId>
+ <artifactId>com.springsource.net.sf.ehcache</artifactId>
+ <version>1.2.3</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.swarmcache</groupId>
+ <artifactId>com.springsource.net.sf.swarmcache</artifactId>
+ <version>1.0.0.RC2a</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.dom4j</groupId>
+ <artifactId>com.springsource.org.dom4j</artifactId>
+ <version>1.6.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.logicalcobwebs</groupId>
+ <artifactId>com.springsource.org.logicalcobwebs.proxool</artifactId>
+ <version>0.8.3</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>org.objectweb.asm</groupId>
+ <artifactId>com.springsource.org.objectweb.asm</artifactId>
+ <version>1.5.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.objectweb.asm</groupId>
+ <artifactId>com.springsource.org.objectweb.asm.attrs</artifactId>
+ <version>1.5.3</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Export-Package>
+ org.hibernate*;version=${project.version};-split-package:=merge-last
+ </Export-Package>
+ <Eclipse-BuddyPolicy>
+ registered
+ </Eclipse-BuddyPolicy>
+ <Import-Package>
+ antlr.*;version="2.7.7";resolution:=optional,*;resolution:=optional
+ </Import-Package>
+<!-- <Embed-Transitive>true</Embed-Transitive> -->
+ </instructions>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-eclipse-plugin</artifactId>
+ <configuration>
+ <pde>true</pde>
+ <projectnatures>
+ <projectnature>
+ org.eclipse.pde.PluginNature
+ </projectnature>
+ <projectnature>
+ org.eclipse.jdt.core.javanature
+ </projectnature>
+ <projectnature>
+ org.maven.ide.eclipse.maven2Nature
+ </projectnature>
+ </projectnatures>
+ <classpathContainers>
+ <classpathContainer>
+ org.eclipse.jdt.launching.JRE_CONTAINER
+ </classpathContainer>
+ <classpathContainer>
+ org.eclipse.pde.core.requiredPlugins
+ </classpathContainer>
+ <classpathContainer>
+ org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER
+ </classpathContainer>
+ </classpathContainers>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-dependencies</id>
+ <phase>package</phase>
+ <goals>
+ <goal>copy-dependencies</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+
+</project>
\ No newline at end of file
Added: osgi-repo/trunk/pom.xml
===================================================================
--- osgi-repo/trunk/pom.xml (rev 0)
+++ osgi-repo/trunk/pom.xml 2008-09-06 20:06:34 UTC (rev 829)
@@ -0,0 +1,106 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ Copyright 2008 EscapeK
+ Licensed 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>
+ <groupId>org.escapek.osgi</groupId>
+ <artifactId>parent</artifactId>
+ <packaging>pom</packaging>
+ <version>0.1-SNAPSHOT</version>
+
+ <modules>
+ <module>xstream.osgi</module>
+ <module>hibernate</module>
+ <module>stringtemplate</module>
+ </modules>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-eclipse-plugin</artifactId>
+ <configuration>
+ <pde>true</pde>
+ <projectnatures>
+ <projectnature>org.eclipse.pde.PluginNature</projectnature>
+ <projectnature>org.eclipse.jdt.core.javanature</projectnature>
+ <projectnature>org.maven.ide.eclipse.maven2Nature</projectnature>
+ </projectnatures>
+ <classpathContainers>
+ <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
+ <classpathContainer>org.eclipse.pde.core.requiredPlugins</classpathContainer>
+ <classpathContainer>org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER</classpathContainer>
+ </classpathContainers>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <repositories>
+ <repository>
+ <id>escapek.internal</id>
+ <name>EscapeK Managed Internal Repository</name>
+ <url>
+ http://repo.escapek.org/archiva/repository/internal/
+ </url>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ <repository>
+ <id>escapek.snapshots</id>
+ <name>EscapeK Managed Snapshot Repository</name>
+ <url>
+ http://repo.escapek.org/archiva/repository/snapshots/
+ </url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </repository>
+ </repositories>
+ <distributionManagement>
+ <!-- Releases distribution. -->
+ <repository>
+ <id>escapek.internal</id>
+ <name>EscapeK Managed Internal Repository</name>
+ <url>
+ http://repo.escapek.org/archiva/repository/internal/
+ </url>
+ </repository>
+ <!-- Snapshots distribution. -->
+ <snapshotRepository>
+ <id>escapek.snapshots</id>
+ <name>EscapeK Managed Snapshot Repository</name>
+ <url>
+ http://repo.escapek.org/archiva/repository/snapshots
+ </url>
+ </snapshotRepository>
+ </distributionManagement>
+</project>
\ No newline at end of file
Added: osgi-repo/trunk/stringtemplate/pom.xml
===================================================================
--- osgi-repo/trunk/stringtemplate/pom.xml (rev 0)
+++ osgi-repo/trunk/stringtemplate/pom.xml 2008-09-06 20:06:34 UTC (rev 829)
@@ -0,0 +1,86 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright 2008 EscapeK
+ Licensed 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">
+ <parent>
+ <groupId>org.escapek.osgi</groupId>
+ <artifactId>parent</artifactId>
+ <version>0.1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>stringtemplate</artifactId>
+ <version>3.2</version>
+ <name>StringTemplate OSGi bundle</name>
+ <packaging>bundle</packaging>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.antlr</groupId>
+ <artifactId>com.springsource.antlr</artifactId>
+ <version>2.7.7</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Include-Resource>@src/main/resources/stringtemplate.jar</Include-Resource>
+ <Export-Package>
+ org.antlr.stringtemplate.*
+ </Export-Package>
+ <Import-Package>
+ antlr.*;version=2.7.7,*;resolution:=optional
+ </Import-Package>
+ </instructions>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-eclipse-plugin</artifactId>
+ <configuration>
+ <pde>true</pde>
+ <projectnatures>
+ <projectnature>org.eclipse.pde.PluginNature</projectnature>
+ <projectnature>org.eclipse.jdt.core.javanature</projectnature>
+ <projectnature>org.maven.ide.eclipse.maven2Nature</projectnature>
+ </projectnatures>
+ <classpathContainers>
+ <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
+ <classpathContainer>org.eclipse.pde.core.requiredPlugins</classpathContainer>
+ <classpathContainer>org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER</classpathContainer>
+ </classpathContainers>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-dependencies</id>
+ <phase>package</phase>
+ <goals>
+ <goal>copy-dependencies</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
Property changes on: osgi-repo/trunk/stringtemplate/src/main/resources/stringtemplate.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: osgi-repo/trunk/xstream.osgi/META-INF/MANIFEST.MF
===================================================================
--- osgi-repo/trunk/xstream.osgi/META-INF/MANIFEST.MF (rev 0)
+++ osgi-repo/trunk/xstream.osgi/META-INF/MANIFEST.MF 2008-09-06 20:06:34 UTC (rev 829)
@@ -0,0 +1,111 @@
+Manifest-Version: 1.0
+Export-Package: com.thoughtworks.xstream.io.copy;uses:="com.thoughtwor
+ ks.xstream.io",com.thoughtworks.xstream.io.path;uses:="com.thoughtwor
+ ks.xstream.io,com.thoughtworks.xstream.converters,com.thoughtworks.xs
+ tream.io.xml,com.thoughtworks.xstream.core.util",com.thoughtworks.xst
+ ream.converters.basic;uses:="com.thoughtworks.xstream.converters,com.
+ thoughtworks.xstream.io,com.thoughtworks.xstream.mapper,com.thoughtwo
+ rks.xstream.core.util",com.thoughtworks.xstream.io.xml.xppdom;uses:="
+ org.xmlpull.v1,org.xmlpull.mxp1",com.thoughtworks.xstream;uses:="com.
+ thoughtworks.xstream.converters.basic,com.thoughtworks.xstream.core.u
+ til,com.thoughtworks.xstream.converters.extended,com.thoughtworks.xst
+ ream.converters,com.thoughtworks.xstream.io,com.thoughtworks.xstream.
+ converters.reflection,com.thoughtworks.xstream.io.xml,com.thoughtwork
+ s.xstream.mapper,com.thoughtworks.xstream.converters.collections,com.
+ thoughtworks.xstream.core,com.thoughtworks.xstream.alias",com.thought
+ works.xstream.io.json;uses:="javax.xml.stream,com.thoughtworks.xstrea
+ m.io,com.thoughtworks.xstream.io.xml,org.codehaus.jettison.mapped,com
+ .thoughtworks.xstream.core.util",com.thoughtworks.xstream.core.util;u
+ ses:="com.thoughtworks.xstream.io,com.thoughtworks.xstream.converters
+ ,com.thoughtworks.xstream.converters.reflection",com.thoughtworks.xst
+ ream.converters.javabean;uses:="com.thoughtworks.xstream.io,com.thoug
+ htworks.xstream.converters,com.thoughtworks.xstream.converters.reflec
+ tion,com.thoughtworks.xstream.mapper,com.thoughtworks.xstream.alias,c
+ om.thoughtworks.xstream.core.util",com.thoughtworks.xstream.io;uses:=
+ "com.thoughtworks.xstream.converters,com.thoughtworks.xstream,com.tho
+ ughtworks.xstream.core.util",com.thoughtworks.xstream.converters.exte
+ nded;uses:="com.thoughtworks.xstream.converters.basic,javax.security.
+ auth,com.thoughtworks.xstream.core.util,javax.xml.datatype,com.though
+ tworks.xstream.converters,com.thoughtworks.xstream.io,com.thoughtwork
+ s.xstream.converters.reflection,javax.swing,org.joda.time,org.joda.ti
+ me.format,javax.swing.plaf,com.thoughtworks.xstream.mapper,com.though
+ tworks.xstream.converters.collections",com.thoughtworks.xstream.conve
+ rters;uses:="com.thoughtworks.xstream.io,com.thoughtworks.xstream,com
+ .thoughtworks.xstream.core.util",com.thoughtworks.xstream.io.binary;u
+ ses:="com.thoughtworks.xstream.converters,com.thoughtworks.xstream.io
+ ",com.thoughtworks.xstream.converters.reflection;uses:="net.sf.cglib.
+ proxy,com.thoughtworks.xstream.converters.basic,com.thoughtworks.xstr
+ eam,com.thoughtworks.xstream.core.util,sun.reflect,com.thoughtworks.x
+ stream.io,com.thoughtworks.xstream.converters,com.thoughtworks.xstrea
+ m.mapper,com.thoughtworks.xstream.core,sun.misc",com.thoughtworks.xst
+ ream.annotations;uses:="com.thoughtworks.xstream.converters,com.thoug
+ htworks.xstream.converters.reflection,com.thoughtworks.xstream.mapper
+ ,com.thoughtworks.xstream",com.thoughtworks.xstream.io.xml;uses:="org
+ .dom4j.tree,org.dom4j,org.jdom.input,com.thoughtworks.xstream.io.xml.
+ xppdom,nu.xom,org.xmlpull.v1,org.xmlpull.mxp1,com.thoughtworks.xstrea
+ m,javax.xml.parsers,com.thoughtworks.xstream.core.util,org.w3c.dom,ja
+ vax.xml.namespace,org.xml.sax,javax.xml.stream,com.thoughtworks.xstre
+ am.converters,com.thoughtworks.xstream.io,org.dom4j.io,org.jdom,javax
+ .xml.transform.sax,org.xml.sax.helpers",com.thoughtworks.xstream.mapp
+ er;uses:="net.sf.cglib.proxy,com.thoughtworks.xstream,com.thoughtwork
+ s.xstream.core.util,com.thoughtworks.xstream.converters,com.thoughtwo
+ rks.xstream.converters.reflection,com.thoughtworks.xstream.annotation
+ s,com.thoughtworks.xstream.core,com.thoughtworks.xstream.alias,com.th
+ oughtworks.xstream.converters.enums",com.thoughtworks.xstream.persist
+ ence;uses:="com.thoughtworks.xstream.io,com.thoughtworks.xstream",com
+ .thoughtworks.xstream.converters.collections;uses:="com.thoughtworks.
+ xstream.converters,com.thoughtworks.xstream.io,com.thoughtworks.xstre
+ am.mapper,com.thoughtworks.xstream.core,com.thoughtworks.xstream.core
+ .util",com.thoughtworks.xstream.core;uses:="com.thoughtworks.xstream.
+ io.path,com.thoughtworks.xstream,com.thoughtworks.xstream.core.util,c
+ om.thoughtworks.xstream.converters,com.thoughtworks.xstream.io,com.th
+ oughtworks.xstream.converters.reflection,com.thoughtworks.xstream.io.
+ xml,com.thoughtworks.xstream.mapper,com.thoughtworks.xstream.alias",c
+ om.thoughtworks.xstream.alias;uses:="com.thoughtworks.xstream.mapper,
+ com.thoughtworks.xstream",com.thoughtworks.xstream.converters.enums;u
+ ses:="com.thoughtworks.xstream.io,com.thoughtworks.xstream.converters
+ ,com.thoughtworks.xstream.converters.basic,com.thoughtworks.xstream.m
+ apper,com.thoughtworks.xstream.converters.collections,com.thoughtwork
+ s.xstream.core.util"
+Built-By: i67i-57
+Build-Jdk: 1.6.0_05
+Bundle-Version: 0.1.0.SNAPSHOT
+Tool: Bnd-0.0.255
+Bundle-Name: XStream OSGi bundle
+Bnd-LastModified: 1213017893819
+Created-By: Apache Maven Bundle Plugin
+Bundle-ManifestVersion: 2
+Bundle-SymbolicName: org.escapek.osgi.xstream.osgi
+Import-Package: com.thoughtworks.xstream;resolution:=optional,com.thou
+ ghtworks.xstream.alias;resolution:=optional,com.thoughtworks.xstream.
+ annotations;resolution:=optional,com.thoughtworks.xstream.converters;
+ resolution:=optional,com.thoughtworks.xstream.converters.basic;resolu
+ tion:=optional,com.thoughtworks.xstream.converters.collections;resolu
+ tion:=optional,com.thoughtworks.xstream.converters.enums;resolution:=
+ optional,com.thoughtworks.xstream.converters.extended;resolution:=opt
+ ional,com.thoughtworks.xstream.converters.javabean;resolution:=option
+ al,com.thoughtworks.xstream.converters.reflection;resolution:=optiona
+ l,com.thoughtworks.xstream.core;resolution:=optional,com.thoughtworks
+ .xstream.core.util;resolution:=optional,com.thoughtworks.xstream.io;r
+ esolution:=optional,com.thoughtworks.xstream.io.binary;resolution:=op
+ tional,com.thoughtworks.xstream.io.copy;resolution:=optional,com.thou
+ ghtworks.xstream.io.json;resolution:=optional,com.thoughtworks.xstrea
+ m.io.path;resolution:=optional,com.thoughtworks.xstream.io.xml;resolu
+ tion:=optional,com.thoughtworks.xstream.io.xml.xppdom;resolution:=opt
+ ional,com.thoughtworks.xstream.mapper;resolution:=optional,com.though
+ tworks.xstream.persistence;resolution:=optional,javax.security.auth;r
+ esolution:=optional,javax.swing;resolution:=optional,javax.swing.plaf
+ ;resolution:=optional,javax.xml.datatype;resolution:=optional,javax.x
+ ml.namespace;resolution:=optional,javax.xml.parsers;resolution:=optio
+ nal,javax.xml.stream;resolution:=optional,javax.xml.transform.sax;res
+ olution:=optional,net.sf.cglib.proxy;resolution:=optional,nu.xom;reso
+ lution:=optional,org.codehaus.jettison.mapped;resolution:=optional,or
+ g.dom4j;resolution:=optional,org.dom4j.io;resolution:=optional,org.do
+ m4j.tree;resolution:=optional,org.jdom;resolution:=optional,org.jdom.
+ input;resolution:=optional,org.joda.time;resolution:=optional,org.jod
+ a.time.format;resolution:=optional,org.w3c.dom;resolution:=optional,o
+ rg.xml.sax;resolution:=optional,org.xml.sax.helpers;resolution:=optio
+ nal,org.xmlpull.mxp1;resolution:=optional,org.xmlpull.v1;resolution:=
+ optional,sun.misc;resolution:=optional,sun.reflect;resolution:=option
+ al
+
Added: osgi-repo/trunk/xstream.osgi/pom.xml
===================================================================
--- osgi-repo/trunk/xstream.osgi/pom.xml (rev 0)
+++ osgi-repo/trunk/xstream.osgi/pom.xml 2008-09-06 20:06:34 UTC (rev 829)
@@ -0,0 +1,92 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ Copyright 2008 EscapeK
+ Licensed 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">
+ <parent>
+ <groupId>org.escapek.osgi</groupId>
+ <artifactId>parent</artifactId>
+ <version>0.1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>xstream</artifactId>
+ <version>1.3</version>
+ <name>XStream OSGi bundle</name>
+ <packaging>bundle</packaging>
+
+ <dependencies>
+ <dependency>
+ <groupId>com.thoughtworks.xstream</groupId>
+ <artifactId>xstream</artifactId>
+ <version>1.3</version>
+ </dependency>
+ <dependency>
+ <groupId>xpp3</groupId>
+ <artifactId>xpp3</artifactId>
+ <version>1.1.4c</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Export-Package>
+ com.thoughtworks.xstream*,org.xmlpull*;-split-package:=merge-last
+ </Export-Package>
+ <Import-Package>
+ *;resolution:=optional
+ </Import-Package>
+ <DynamicImport-Package>*</DynamicImport-Package>
+ </instructions>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-eclipse-plugin</artifactId>
+ <configuration>
+ <pde>true</pde>
+ <projectnatures>
+ <projectnature>org.eclipse.pde.PluginNature</projectnature>
+ <projectnature>org.eclipse.jdt.core.javanature</projectnature>
+ <projectnature>org.maven.ide.eclipse.maven2Nature</projectnature>
+ </projectnatures>
+ <classpathContainers>
+ <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
+ <classpathContainer>org.eclipse.pde.core.requiredPlugins</classpathContainer>
+ <classpathContainer>org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER</classpathContainer>
+ </classpathContainers>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-dependencies</id>
+ <phase>package</phase>
+ <goals>
+ <goal>copy-dependencies</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|