Skip to content

Commit

Permalink
Fixes #299 - Rename webapp to api (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Jul 10, 2024
1 parent 12039e5 commit ab377c4
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 20 deletions.
4 changes: 2 additions & 2 deletions webapp/pom.xml → api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<artifactId>project</artifactId>
<version>24.5.0-SNAPSHOT</version>
</parent>
<artifactId>sphynx-webapp</artifactId>
<artifactId>sphynx-api</artifactId>
<packaging>war</packaging>
<name>Sphynx - Web application</name>
<name>Manorrock Sphynx - REST API</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ public Integer call() throws Exception {
Process process = new ProcessBuilder()
.command(commands)
.directory(workDirectory)
.redirectErrorStream(true)
.start();

InputStream processOutput = process.getInputStream();
Expand Down
19 changes: 1 addition & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -233,38 +233,21 @@
</dependency>

<dependency>

<groupId>junit</groupId>

<artifactId>junit</artifactId>

<version>${junit.version}</version>

</dependency>

<dependency>


<groupId>org.eclipse</groupId>

<artifactId>yasson</artifactId>

<version>${yasson.version}</version>

</dependency>

</dependencies>

</dependencyManagement>

<modules>
<module>api</module>
<module>cli</module>

<module>webapp</module>

<module>desktop</module>
<module>shared</module>
</modules>

</project>

0 comments on commit ab377c4

Please sign in to comment.