Skip to content

Commit

Permalink
making redpen-server heroku deployable
Browse files Browse the repository at this point in the history
  • Loading branch information
yusuke committed Oct 15, 2014
1 parent c216f16 commit 3972e56
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions Procfile
@@ -0,0 +1 @@
web java $JAVA_OPTS -jar redpen-server/target/dependency/jetty-runner.jar --port $PORT redpen-server/target/*.war
16 changes: 16 additions & 0 deletions redpen-server/pom.xml
Expand Up @@ -90,6 +90,22 @@
</outputDirectory>
</configuration>
</execution>
<execution>
<phase>package</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-runner</artifactId>
<version>9.2.1.v20140609</version>
<destFileName>jetty-runner.jar</destFileName>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand Down
1 change: 1 addition & 0 deletions system.properties
@@ -0,0 +1 @@
java.runtime.version=1.8

0 comments on commit 3972e56

Please sign in to comment.