Skip to content

Commit

Permalink
Fixes #3697 - Rebrand Piranha Uber to Piranha Fin (#3698)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Apr 9, 2024
1 parent 2e036e9 commit 107d4c5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions uber/pom.xml → fin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<artifactId>project</artifactId>
<version>24.4.0-SNAPSHOT</version>
</parent>
<artifactId>piranha-uber</artifactId>
<artifactId>piranha-fin</artifactId>
<packaging>jar</packaging>
<name>Piranha - Uber</name>
<name>Piranha - Fin</name>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -26,29 +26,29 @@
* POSSIBILITY OF SUCH DAMAGE.
*/

package cloud.piranha.uber;
package cloud.piranha.fin;

import java.io.File;

/**
* The Uber version of Piranha.
* The Fin version of Piranha.
*
* @author Manfred Riem ([email protected])
*/
public class UberPiranha implements Runnable {
public class FinPiranha implements Runnable {

/**
* Stores the temporary directory.
*/
private File tempDirectory = new File(".piranhaUber");
private File tempDirectory = new File(".piranha/fin");

/**
* Main method.
*
* @param arguments the command-line arguments.
*/
public static void main(String[] arguments) {
UberPiranha piranha = new UberPiranha();
FinPiranha piranha = new FinPiranha();
piranha.parseArguments(arguments);
piranha.run();
}
Expand All @@ -60,7 +60,7 @@ public static void main(String[] arguments) {
*/
private void parseArguments(String[] arguments) {
for(int i=0; i<arguments.length; i++) {
if (arguments[i].equals("--uber-temp-directory")) {
if (arguments[i].equals("--fin-temp-directory")) {
tempDirectory = new File(arguments[i + 1]);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
*/

/**
* This module delivers Piranha Uber.
* This module delivers Piranha Fin.
*
* @author Manfred Riem ([email protected])
*/
module cloud.piranha.embedded {
module cloud.piranha.fin {

exports cloud.piranha.uber;
opens cloud.piranha.uber;
exports cloud.piranha.fin;
opens cloud.piranha.fin;
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<module>micro</module>
<module>resource</module>
<module>spring</module>
<module>uber</module>
<module>fin</module>
</modules>

<scm>
Expand Down

0 comments on commit 107d4c5

Please sign in to comment.