running import from csv off Avant. Needs some clean up on category matching.

This commit is contained in:
2025-11-30 06:38:51 -05:00
parent f539c64588
commit 140b75621f

View File

@@ -25,7 +25,7 @@
</developer> </developer>
<developer> <developer>
<name>Sean Strawsburg</name> <name>Sean Strawsburg</name>
<email>don@goforward.group</email> <email>sean@goforward.group</email>
<organization>Forward Group, LLC</organization> <organization>Forward Group, LLC</organization>
</developer> </developer>
</developers> </developers>
@@ -53,7 +53,6 @@
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId> <artifactId>spring-boot-starter-web</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId> <artifactId>spring-boot-devtools</artifactId>
@@ -87,6 +86,11 @@
<artifactId>spring-boot-starter-test</artifactId> <artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.11.0</version>
</dependency>
</dependencies> </dependencies>
<build> <build>