Skip to content

Commit

Permalink
Change the default port number from 8989 to 8080.
Browse files Browse the repository at this point in the history
  • Loading branch information
k-tamura committed Feb 13, 2017
1 parent dc8f839 commit 3f521d4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.jp.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ EasyBuggyは、メモリリーク、デッドロック、JVMクラッシュ、SQ

以下にアクセス:

http://localhost:8989
http://localhost:8080


停止するには:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Quick Start

Access to

http://localhost:8989
http://localhost:8080

#### To stop:

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jetty-version>8.2.0.v20160908</jetty-version>
<!-- Define double hyphens to avoid parse error if commenting out. -->
<!-- Define double hyphens to avoid XML parse error if commenting out the Payara micro section. -->
<double-hyphens>--</double-hyphens>
<easybuggy-port>8080</easybuggy-port>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -51,7 +52,6 @@
<artifactId>tinylog</artifactId>
<version>1.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/javassist/javassist -->
<dependency>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
Expand Down Expand Up @@ -159,7 +159,7 @@
<argument>${double-hyphens}outputUberJar</argument>
<argument>${basedir}/target/easybuggy.jar</argument>
<argument>${double-hyphens}port</argument>
<argument>8989</argument>
<argument>${easybuggy-port}</argument>
</arguments>
<includeProjectDependencies>false</includeProjectDependencies>
<includePluginDependencies>true</includePluginDependencies>
Expand Down Expand Up @@ -212,7 +212,7 @@
<argument>-cp</argument>
<classpath />
<argument>org.t246osslab.easybuggy.EmbeddedJettyServer</argument>
<argument>8989</argument>
<argument>${easybuggy-port}</argument>
</arguments>
</configuration>
</execution>
Expand Down

0 comments on commit 3f521d4

Please sign in to comment.