Skip to content

Commit

Permalink
Fix windows maven package failed. (sofastack#405)
Browse files Browse the repository at this point in the history
* remove jdk6 ci support

* fix windows maven package failed

* change nacos server install phase

* Fix tracer code refactor

* Revert tracer fix
  • Loading branch information
JervyShi authored and leizhiyuan committed Dec 12, 2018
1 parent e2523ff commit 5e0787b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions extension-impl/registry-nacos/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand All @@ -48,15 +48,15 @@
<executions>
<execution>
<id>start-nacos-server</id>
<phase>compile</phase>
<phase>test-compile</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<workingDirectory>${project.basedir}</workingDirectory>
<executable>bash</executable>
<arguments>
<argument>${project.basedir}/src/test/scripts/start-nacos-server.sh</argument>
<argument>${project.basedir}${file.separator}src${file.separator}test${file.separator}scripts${file.separator}start-nacos-server.sh</argument>
</arguments>
<skip>${skipTests}</skip>
</configuration>
Expand All @@ -71,7 +71,7 @@
<workingDirectory>${project.basedir}</workingDirectory>
<executable>bash</executable>
<arguments>
<argument>${project.basedir}/src/test/scripts/stop-nacos-server.sh</argument>
<argument>${project.basedir}${file.separator}src${file.separator}test${file.separator}scripts${file.separator}stop-nacos-server.sh</argument>
</arguments>
<skip>${skipTests}</skip>
</configuration>
Expand All @@ -92,4 +92,4 @@
</properties>
</profile>
</profiles>
</project>
</project>

0 comments on commit 5e0787b

Please sign in to comment.