Skip to content

Commit

Permalink
Add direct-to plugin module as REST services dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanbrainard committed Sep 12, 2012
1 parent 6d47bb2 commit 1b8b308
Show file tree
Hide file tree
Showing 28 changed files with 137 additions and 1 deletion.
2 changes: 1 addition & 1 deletion com.heroku.eclipse.core.services.rest/.classpath
Expand Up @@ -2,6 +2,6 @@
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src/"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
1 change: 1 addition & 0 deletions com.heroku.eclipse.core.services.rest/META-INF/MANIFEST.MF
Expand Up @@ -7,6 +7,7 @@ Bundle-Vendor: HEROKU
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Require-Bundle: com.heroku.eclipse.core.services;bundle-version="0.1.0",
com.heroku.api;bundle-version="0.13.0",
com.herokuapp.directto;bundle-version="0.5.0.BETA",
org.eclipse.osgi;bundle-version="3.7.0",
org.eclipse.equinox.preferences;bundle-version="3.4.0",
org.eclipse.osgi.services;bundle-version="3.3.0",
Expand Down
24 changes: 24 additions & 0 deletions com.herokuapp.directto/.classpath
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry exported="true" kind="lib" path="activation-1.1.jar"/>
<classpathentry exported="true" kind="lib" path="direct-to-heroku-client-0.5-BETA.jar" sourcepath="/Users/brainard/Development/direct-to-heroku-client-java"/>
<classpathentry exported="true" kind="lib" path="hamcrest-core-1.1.jar"/>
<classpathentry exported="true" kind="lib" path="jackson-core-asl-1.7.1.jar"/>
<classpathentry exported="true" kind="lib" path="jackson-jaxrs-1.7.1.jar"/>
<classpathentry exported="true" kind="lib" path="jackson-mapper-asl-1.7.1.jar"/>
<classpathentry exported="true" kind="lib" path="jackson-xc-1.7.1.jar"/>
<classpathentry exported="true" kind="lib" path="jaxb-api-2.2.2.jar"/>
<classpathentry exported="true" kind="lib" path="jaxb-impl-2.2.3-1.jar"/>
<classpathentry exported="true" kind="lib" path="jersey-client-1.8.jar"/>
<classpathentry exported="true" kind="lib" path="jersey-core-1.8.jar"/>
<classpathentry exported="true" kind="lib" path="jersey-json-1.8.jar"/>
<classpathentry exported="true" kind="lib" path="jersey-multipart-1.8.jar"/>
<classpathentry exported="true" kind="lib" path="jettison-1.1.jar"/>
<classpathentry exported="true" kind="lib" path="junit-4.9.jar"/>
<classpathentry exported="true" kind="lib" path="mimepull-1.4.jar"/>
<classpathentry exported="true" kind="lib" path="stax-api-1.0-2.jar"/>
<classpathentry exported="true" kind="lib" path="stax-api-1.0.1.jar"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
2 changes: 2 additions & 0 deletions com.herokuapp.directto/.gitignore
@@ -0,0 +1,2 @@
/bin
/target
34 changes: 34 additions & 0 deletions com.herokuapp.directto/.project
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>com.herokuapp.directto</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8
8 changes: 8 additions & 0 deletions com.herokuapp.directto/.settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,8 @@
#Tue Apr 24 12:55:22 CEST 2012
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6
31 changes: 31 additions & 0 deletions com.herokuapp.directto/META-INF/MANIFEST.MF
@@ -0,0 +1,31 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: direct-to-heroku-client
Bundle-SymbolicName: com.herokuapp.directto
Bundle-Version: 0.5.0.BETA
Bundle-ClassPath:
activation-1.1.jar,
direct-to-heroku-client-0.5-BETA.jar,
hamcrest-core-1.1.jar,
jackson-core-asl-1.7.1.jar,
jackson-jaxrs-1.7.1.jar,
jackson-mapper-asl-1.7.1.jar,
jackson-xc-1.7.1.jar,
jaxb-api-2.2.2.jar,
jaxb-impl-2.2.3-1.jar,
jersey-client-1.8.jar,
jersey-core-1.8.jar,
jersey-json-1.8.jar,
jersey-multipart-1.8.jar,
jettison-1.1.jar,
junit-4.9.jar,
mimepull-1.4.jar,
stax-api-1.0-2.jar,
stax-api-1.0.1.jar
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Export-Package: com.herokuapp.directto.client;
uses:="com.sun.jersey.api.client.filter,
com.herokuapp.directto.client.models,
new com.herokuapp.directto.client,
com.sun.jersey.api.client",
com.herokuapp.directto.client.models
Binary file added com.herokuapp.directto/activation-1.1.jar
Binary file not shown.
18 changes: 18 additions & 0 deletions com.herokuapp.directto/build.properties
@@ -0,0 +1,18 @@
bin.includes = META-INF/,\
activation-1.1.jar,\
hamcrest-core-1.1.jar,\
jackson-core-asl-1.7.1.jar,\
jackson-jaxrs-1.7.1.jar,\
jackson-mapper-asl-1.7.1.jar,\
jackson-xc-1.7.1.jar,\
jaxb-api-2.2.2.jar,\
jaxb-impl-2.2.3-1.jar,\
jersey-client-1.8.jar,\
jersey-core-1.8.jar,\
jersey-json-1.8.jar,\
jersey-multipart-1.8.jar,\
jettison-1.1.jar,\
junit-4.9.jar,\
mimepull-1.4.jar,\
stax-api-1.0-2.jar,\
stax-api-1.0.1.jar,\
Binary file not shown.
Binary file added com.herokuapp.directto/hamcrest-core-1.1.jar
Binary file not shown.
Binary file not shown.
Binary file added com.herokuapp.directto/jackson-jaxrs-1.7.1.jar
Binary file not shown.
Binary file not shown.
Binary file added com.herokuapp.directto/jackson-xc-1.7.1.jar
Binary file not shown.
Binary file added com.herokuapp.directto/jaxb-api-2.2.2.jar
Binary file not shown.
Binary file added com.herokuapp.directto/jaxb-impl-2.2.3-1.jar
Binary file not shown.
Binary file added com.herokuapp.directto/jersey-client-1.8.jar
Binary file not shown.
Binary file added com.herokuapp.directto/jersey-core-1.8.jar
Binary file not shown.
Binary file added com.herokuapp.directto/jersey-json-1.8.jar
Binary file not shown.
Binary file added com.herokuapp.directto/jersey-multipart-1.8.jar
Binary file not shown.
Binary file added com.herokuapp.directto/jettison-1.1.jar
Binary file not shown.
Binary file added com.herokuapp.directto/junit-4.9.jar
Binary file not shown.
Binary file added com.herokuapp.directto/mimepull-1.4.jar
Binary file not shown.
16 changes: 16 additions & 0 deletions com.herokuapp.directto/pom.xml
@@ -0,0 +1,16 @@
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<name>direct-to-heroku-client Repackage Bundle</name>
<groupId>com.herokuapp.directto</groupId>
<artifactId>direct-to-heroku-client</artifactId>
<version>0.5-BETA</version>

<parent>
<groupId>com.heroku</groupId>
<artifactId>eclipse</artifactId>
<relativePath>../releng/pom.xml</relativePath>
<version>0.1.0-SNAPSHOT</version>
</parent>

</project>
Binary file added com.herokuapp.directto/stax-api-1.0-2.jar
Binary file not shown.
Binary file added com.herokuapp.directto/stax-api-1.0.1.jar
Binary file not shown.

0 comments on commit 1b8b308

Please sign in to comment.