Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor for Maven #24

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .classpath

This file was deleted.

47 changes: 45 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,45 @@
/bin/
/build/
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
.mvn/wrapper/maven-wrapper.jar

# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

# IDE project files
*.iml
/.idea/
/.settings/
.project
.classpath

tickers/
classes//trade-data.properties
17 changes: 0 additions & 17 deletions .project

This file was deleted.

11 changes: 0 additions & 11 deletions .settings/org.eclipse.jdt.core.prefs

This file was deleted.

31 changes: 0 additions & 31 deletions .travis.yml

This file was deleted.

143 changes: 0 additions & 143 deletions build.xml

This file was deleted.

Binary file removed dist/JWave.jar
Binary file not shown.
Binary file removed lib/hamcrest-all-1.3.jar
Binary file not shown.
1 change: 0 additions & 1 deletion lib/hamcrest-all.jar

This file was deleted.

Binary file removed lib/junit4-4.11.jar
Binary file not shown.
1 change: 0 additions & 1 deletion lib/junit4.jar

This file was deleted.

91 changes: 91 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<name>JWave</name>
<groupId>com.cobbinterwebs</groupId>
<artifactId>jWave</artifactId>
<version>SNAPSHOT-1.0</version>
<packaging>jar</packaging>

<organization>
<name>Cobb Interwebs, LLC</name>
<url>http://www.cobbinterwebs.com</url>
</organization>
<inceptionYear>2021</inceptionYear>

<description>Forked from https://github.com/graetz23/JWave and edited to conform to Maven.

Java implementation of a Discrete Fourier Transform (DFT), a Fast Wavelet Transform (FWT), and a Wavelet Packet Transform (WPT) algorithm. All algorithms are available in 1-D, 2-D, and 3-D. The wavelet transform algorithms are using normalized orthogonal or if available orthonormal wavelets. The comon wavelets like Haar, Coiflet, Daubechies, Symlets, and Legendre are available. Additionally there are also some Bi-Orthogonal and unusal wavelets implemented - in total around 50 wavelets.

The implementation of JWave is based on several software design patterns and - hopefully - appears therefore user-friendly.</description>

<url>https://github.com/dmcreyno/JWave</url>
<issueManagement>
<url>https://github.com/dmcreyno/JWave/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<scm>
<connection>scm:git:git:https://github.com/dmcreyno/JWave.git</connection>
<url>https://github.com/dmcreyno/JWave</url>
<developerConnection>David McReynolds</developerConnection>
</scm>

<developers>
<developer>
<name>graetz23</name>
<email>[email protected]</email>
</developer>
</developers>

<licenses>
<license>
<name>MIT License (MIT)</name>
<url>https://github.com/git/git-scm.com/blob/main/MIT-LICENSE.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<build>
<plugins>
<plugin>
<version>3.8.1</version>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>15</source>
<target>15</target>
</configuration>
</plugin>
</plugins>
</build>

<properties>
<junit-verion>4.13.2</junit-verion>
<slf4j-version>1.7.12</slf4j-version>
<log4j-version>2.17.0</log4j-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j-version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j-version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit-verion}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

File renamed without changes.
File renamed without changes.
Loading