Rename project to FilterView and update package structure
- Renamed the project to FilterView in preparation for GitHub update - Updated package name from com.waveletsolutions.robot to com.waveletsolutions.filtering - Modified build_and_run.md and pom.xml to reflect the new project and package name - Renamed App.java, FFTUtils.java, and FilterUtils.java to match the new package structure
This commit is contained in:
@@ -22,8 +22,8 @@ sudo pacman -S jdk17-openjdk maven git
|
||||
|
||||
## 2. Clone the Repository and Build
|
||||
```bash
|
||||
git clone https://github.com/eric-waveletsolutions/speedgraph.git
|
||||
cd speedgraph
|
||||
git clone https://github.com/eric-waveletsolutions/filter-view.git
|
||||
cd filter-view
|
||||
./mvnw clean install
|
||||
```
|
||||
|
||||
@@ -55,8 +55,8 @@ sudo apt install openjdk-17-jdk maven git
|
||||
|
||||
### 2. Clone the Repository and Build
|
||||
```bash
|
||||
git clone https://github.com/eric-waveletsolutions/speedgraph.git
|
||||
cd speedgraph
|
||||
git clone https://github.com/eric-waveletsolutions/filter-view.git
|
||||
cd filter-view
|
||||
./mvnw clean install
|
||||
```
|
||||
|
||||
@@ -89,8 +89,8 @@ firefox target/apidocs/index.html
|
||||
|
||||
Open the terminal (or Git Bash) and run:
|
||||
```bash
|
||||
git clone https://github.com/eric-waveletsolutions/speedgraph.git
|
||||
cd speedgraph
|
||||
git clone https://github.com/eric-waveletsolutions/filter-view.git
|
||||
cd filter-view
|
||||
mvnw.cmd clean install
|
||||
```
|
||||
|
||||
|
4
pom.xml
4
pom.xml
@@ -3,10 +3,10 @@
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.waveletsolutions.robot</groupId>
|
||||
<artifactId>SpeedGraph</artifactId>
|
||||
<artifactId>filter-view</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<name>SpeedGraph</name>
|
||||
<name>filter-view</name>
|
||||
<url>http://maven.apache.org</url>
|
||||
|
||||
<properties>
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package com.waveletsolutions.robot;
|
||||
package com.waveletsolutions.filtering;
|
||||
|
||||
import javafx.animation.KeyFrame;
|
||||
import javafx.animation.Timeline;
|
@@ -1,4 +1,4 @@
|
||||
package com.waveletsolutions.robot;
|
||||
package com.waveletsolutions.filtering;
|
||||
|
||||
import org.apache.commons.math3.complex.Complex;
|
||||
import org.apache.commons.math3.transform.DftNormalization;
|
@@ -1,4 +1,4 @@
|
||||
package com.waveletsolutions.robot;
|
||||
package com.waveletsolutions.filtering;
|
||||
|
||||
import java.util.List;
|
||||
|
Reference in New Issue
Block a user