Skip to content

Commit 227586d

Browse files
committed
Correct deploy to Bluemix and Maven integration.
1 parent 3e7077c commit 227586d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+802
-608
lines changed

ElephantSQL-Uploader.war

2.23 MB
Binary file not shown.

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ Simply upload a line-separated file of text (e.g. tweets), and it will add each
1111
This tutorial is intended to deploy a pre-compiled warfile through the command line. If you would like to
1212
use Eclipse and modify the source code, see [development](#development).
1313

14+
Give it a try! Click the button below to fork into IBM DevOps Services and deploy your own copy of this application on Bluemix.
15+
16+
[![Deploy to Bluemix](images/deploy-button.png)](https://hub.jazz.net/code/cfui/bluemix/deploy.html?Repository=https://github.com/ibmjstart/bluemix-java-postgresql-uploader.git)
17+
18+
Note it will take a minute or so to start up.
19+
1420
## Prerequisites ##
1521

1622
Before we begin, we first need to install the [**cf**](https://github.com/cloudfoundry/cli/releases) command line tool that will be used to upload and manage your application. If you've previously installed an older version of the cf tool, make sure you are now using v6 of cf by passing it the -v flag:
@@ -29,14 +35,12 @@ From the command line, navigate to the directory of the app and run the followin
2935

3036
1. Login to Bluemix.
3137

32-
3338
| *usage:* | `$ cf login [-a API_URL] [-o ORG] [-s SPACE]`|
3439
|------------|:---------------------------------------------|
3540
| *example:* | `$ cf login -a https://api.ng.bluemix.net` |
3641

3742
2. Create an instance of the ElephantSQL service, giving it a unique name in the last argument. The application is written to assume that the service instance name will begin with "elephantsql".
3843

39-
4044
| *usage:* | `$ cf create-service SERVICE PLAN SERVICE_INSTANCE`|
4145
|------------|:---------------------------------------------------|
4246
| *example:* | `$ cf create-service elephantsql turtle elephantsql_JEU`|
@@ -46,17 +50,15 @@ path and the --no-start option so we can bind our required service before starti
4650
app a unique app name to be used as its hostname; for instance, if you replace `<YOUR-NAME>`
4751
with 'user1' then the example below would be hosted at http://jeu-user1.mybluemix.net.
4852

49-
5053
| *usage:* | `$ cf push APP [--no-manifest] [--no-start] [-p PATH]` |
5154
|------------|:----------------------------------------------------------------|
5255
| *example:* | `$ cf push jeu-<YOUR-NAME> -b https://github.com/cloudfoundry/java-buildpack --no-manifest --no-start -p ElephantSQL-Uploader.war`|
5356

54-
*Note* : `-p elephantSQL.war` assumes you are running these commands from within the same directory that
57+
*Note* : `-p ElephantSQL-Uploader.war` assumes you are running these commands from within the same directory that
5558
this file resides.
5659

5760
4. Bind the elephantSQL service instance to the new app
5861

59-
6062
| *usage:* | `$ cf bind-service APP SERVICE_INSTANCE`|
6163
|------------|:----------------------------------------|
6264
| *example:* | `$ cf bind-service jeu-<YOUR-NAME> elephantsql_JEU`|

app/.classpath

-13
This file was deleted.

app/.settings/org.eclipse.wst.common.component

-8
This file was deleted.

app/.settings/org.eclipse.wst.common.project.facet.core.xml

-7
This file was deleted.

app/WebContent/META-INF/MANIFEST.MF

-3
This file was deleted.

app/WebContent/WEB-INF/ibm-web-ext.xml

-15
This file was deleted.
-227 KB
Binary file not shown.
Binary file not shown.
-181 KB
Binary file not shown.
Binary file not shown.
-21.3 KB
Binary file not shown.
-423 KB
Binary file not shown.
Binary file not shown.
-222 KB
Binary file not shown.
-25.9 KB
Binary file not shown.
-15.7 KB
Binary file not shown.
Binary file not shown.
-116 KB
Binary file not shown.

app/WebContent/WEB-INF/web.xml

-33
This file was deleted.

app/WebContent/favicon.ico

-64.7 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
10+
<attributes>
11+
<attribute name="optional" value="true"/>
12+
<attribute name="maven.pomderived" value="true"/>
13+
</attributes>
14+
</classpathentry>
15+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
16+
<attributes>
17+
<attribute name="maven.pomderived" value="true"/>
18+
<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
19+
</attributes>
20+
</classpathentry>
21+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
22+
<attributes>
23+
<attribute name="maven.pomderived" value="true"/>
24+
</attributes>
25+
</classpathentry>
26+
<classpathentry kind="output" path="target/classes"/>
27+
</classpath>
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,42 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<projectDescription>
3-
<name>PostgreSQLUpload</name>
4-
<comment></comment>
5-
<projects>
6-
</projects>
7-
<buildSpec>
8-
<buildCommand>
9-
<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
10-
<arguments>
11-
</arguments>
12-
</buildCommand>
13-
<buildCommand>
14-
<name>org.eclipse.wst.common.project.facet.core.builder</name>
15-
<arguments>
16-
</arguments>
17-
</buildCommand>
18-
<buildCommand>
19-
<name>org.eclipse.jdt.core.javabuilder</name>
20-
<arguments>
21-
</arguments>
22-
</buildCommand>
23-
<buildCommand>
24-
<name>org.eclipse.wst.validation.validationbuilder</name>
25-
<arguments>
26-
</arguments>
27-
</buildCommand>
28-
</buildSpec>
29-
<natures>
30-
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
31-
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
32-
<nature>org.eclipse.jdt.core.javanature</nature>
33-
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
34-
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
35-
</natures>
36-
</projectDescription>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>bluemix-java-postgresql-uploader</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.jdt.core.javabuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.wst.common.project.facet.core.builder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>org.eclipse.wst.validation.validationbuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
<buildCommand>
29+
<name>org.eclipse.m2e.core.maven2Builder</name>
30+
<arguments>
31+
</arguments>
32+
</buildCommand>
33+
</buildSpec>
34+
<natures>
35+
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
36+
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
37+
<nature>org.eclipse.jdt.core.javanature</nature>
38+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
39+
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
40+
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
41+
</natures>
42+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<classpath>
3-
<classpathentry excluding="js/" kind="src" path="WebContent"/>
4-
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.JRE_CONTAINER"/>
5-
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.WebProject">
6-
<attributes>
7-
<attribute name="hide" value="true"/>
8-
</attributes>
9-
</classpathentry>
10-
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.baseBrowserLibrary"/>
11-
<classpathentry kind="output" path=""/>
12-
</classpath>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src/main/webapp"/>
4+
<classpathentry kind="src" path="target/m2e-wtp/web-resources"/>
5+
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.JRE_CONTAINER"/>
6+
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.WebProject">
7+
<attributes>
8+
<attribute name="hide" value="true"/>
9+
</attributes>
10+
</classpathentry>
11+
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.baseBrowserLibrary"/>
12+
<classpathentry kind="output" path=""/>
13+
</classpath>
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
eclipse.preferences.version=1
2-
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3-
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
4-
org.eclipse.jdt.core.compiler.compliance=1.5
5-
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
6-
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
7-
org.eclipse.jdt.core.compiler.source=1.5
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
4+
org.eclipse.jdt.core.compiler.compliance=1.7
5+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
6+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
7+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
8+
org.eclipse.jdt.core.compiler.source=1.7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.m2e.wtp.enabledProjectSpecificPrefs=false
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
2+
<wb-module deploy-name="bluemix-java-postgresql-uploader">
3+
<wb-resource deploy-path="/" source-path="/target/m2e-wtp/web-resources"/>
4+
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
5+
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
6+
<property name="context-root" value="bluemix-java-postgresql-uploader"/>
7+
<property name="java-output-path" value="/bluemix-java-postgresql-uploader/target/classes"/>
8+
</wb-module>
9+
</project-modules>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<root>
2+
<facet id="jst.jaxrs">
3+
<node name="libprov">
4+
<attribute name="provider-id" value="jaxrs-no-op-library-provider"/>
5+
</node>
6+
</facet>
7+
<facet id="jst.jsf">
8+
<node name="libprov">
9+
<attribute name="provider-id" value="jsf-no-op-library-provider"/>
10+
</node>
11+
</facet>
12+
</root>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<faceted-project>
3+
<fixed facet="wst.jsdt.web"/>
4+
<installed facet="wst.jsdt.web" version="1.0"/>
5+
<installed facet="java" version="1.7"/>
6+
<installed facet="jst.web" version="3.0"/>
7+
<installed facet="jst.jaxrs" version="1.1"/>
8+
<installed facet="jst.jsf" version="2.0"/>
9+
</faceted-project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
disabled=06target
2+
eclipse.preferences.version=1

0 commit comments

Comments
 (0)