Skip to content

Commit 3ed83d3

Browse files
Split + mvn test OK
1 parent 8609ad1 commit 3ed83d3

File tree

558 files changed

+334
-195
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

558 files changed

+334
-195
lines changed

jfiletreeprettyprinter-cli/pom.xml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>io.github.computerdaddyguy</groupId>
6+
<artifactId>jfiletreeprettyprinter</artifactId>
7+
<version>${revision}</version>
8+
</parent>
9+
10+
<artifactId>jfiletreeprettyprinter-cli</artifactId>
11+
12+
<packaging>jar</packaging>
13+
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>io.github.computerdaddyguy</groupId>
18+
<artifactId>jfiletreeprettyprinter-core</artifactId>
19+
<version>${revision}</version>
20+
</dependency>
21+
22+
<dependency>
23+
<groupId>org.jspecify</groupId>
24+
<artifactId>jspecify</artifactId>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.junit.jupiter</groupId>
28+
<artifactId>junit-jupiter-engine</artifactId>
29+
<scope>test</scope>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.assertj</groupId>
33+
<artifactId>assertj-core</artifactId>
34+
<scope>test</scope>
35+
</dependency>
36+
37+
<dependency>
38+
<groupId>tools.jackson.core</groupId>
39+
<artifactId>jackson-databind</artifactId>
40+
</dependency>
41+
<dependency>
42+
<groupId>tools.jackson.dataformat</groupId>
43+
<artifactId>jackson-dataformat-yaml</artifactId>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.hibernate.validator</groupId>
47+
<artifactId>hibernate-validator</artifactId>
48+
</dependency>
49+
<dependency>
50+
<groupId>info.picocli</groupId>
51+
<artifactId>picocli</artifactId>
52+
</dependency>
53+
54+
</dependencies>
55+
56+
57+
58+
</project>

src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/FileTreePrettyPrinterCommandLine.java renamed to jfiletreeprettyprinter-cli/src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/FileTreePrettyPrinterCommandLine.java

File renamed without changes.

src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/ManifestVersionProvider.java renamed to jfiletreeprettyprinter-cli/src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/ManifestVersionProvider.java

File renamed without changes.

src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/PrettyPrintCommand.java renamed to jfiletreeprettyprinter-cli/src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/PrettyPrintCommand.java

File renamed without changes.

src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/RecordUtils.java renamed to jfiletreeprettyprinter-cli/src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/RecordUtils.java

File renamed without changes.

src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/exception/DefaultExecutionExceptionHandler.java renamed to jfiletreeprettyprinter-cli/src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/exception/DefaultExecutionExceptionHandler.java

File renamed without changes.

src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/exception/ExternalOptionsException.java renamed to jfiletreeprettyprinter-cli/src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/exception/ExternalOptionsException.java

File renamed without changes.

src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/io/ConsoleOutput.java renamed to jfiletreeprettyprinter-cli/src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/io/ConsoleOutput.java

File renamed without changes.

src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/io/DefaultConsoleOutput.java renamed to jfiletreeprettyprinter-cli/src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/io/DefaultConsoleOutput.java

File renamed without changes.

src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/options/DefaultOptionsLoader.java renamed to jfiletreeprettyprinter-cli/src/main/java/io/github/computerdaddyguy/jfiletreeprettyprinter/cli/options/DefaultOptionsLoader.java

File renamed without changes.

0 commit comments

Comments
 (0)