expense-tally-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.francis-pang</groupId> <artifactId>expense-tally-cli</artifactId> <version>75</version> </dependency>
<?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"> <parent> <artifactId>expense-tally</artifactId> <groupId>com.github.francis-pang</groupId> <version>75</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>expense-tally-cli</artifactId> <dependencies> <dependency> <groupId>com.github.francis-pang</groupId> <artifactId>expense-tally-csv-parser</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.francis-pang</groupId> <artifactId>expense-tally-expense-manager</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.francis-pang</groupId> <artifactId>expense-tally-reconciliator</artifactId> <version>${project.version}</version> </dependency> <!-- This is needed for Yaml logging --> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>2.13.3</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.29</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.9.0-M1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.22.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>4.6.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> <version>4.6.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- Need this to specify the main entry point of the application--> <plugin> <!-- Build an executable JAR --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.2</version> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <classpathPrefix>lib/</classpathPrefix> <mainClass>expense_tally.views.cli.CommandLineRunner</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>