|
14 | 14 |
|
15 | 15 | <properties> |
16 | 16 | <Module-Name>io.jooby.cli</Module-Name> |
| 17 | + <jline.version>3.23.0</jline.version> |
| 18 | + <picocli.version>4.7.5</picocli.version> |
17 | 19 | </properties> |
18 | 20 |
|
19 | 21 | <dependencies> |
|
34 | 36 | <dependency> |
35 | 37 | <groupId>info.picocli</groupId> |
36 | 38 | <artifactId>picocli</artifactId> |
37 | | - <version>4.7.5</version> |
| 39 | + <version>${picocli.version}</version> |
38 | 40 | </dependency> |
39 | 41 |
|
40 | 42 | <dependency> |
|
53 | 55 | <dependency> |
54 | 56 | <groupId>org.jline</groupId> |
55 | 57 | <artifactId>jline</artifactId> |
56 | | - <version>3.23.0</version> |
| 58 | + <version>${jline.version}</version> |
| 59 | + </dependency> |
| 60 | + |
| 61 | + <dependency> |
| 62 | + <groupId>org.jline</groupId> |
| 63 | + <artifactId>jline-terminal-jna</artifactId> |
| 64 | + <version>${jline.version}</version> |
57 | 65 | </dependency> |
58 | 66 |
|
59 | 67 | <dependency> |
|
109 | 117 | <path> |
110 | 118 | <groupId>info.picocli</groupId> |
111 | 119 | <artifactId>picocli-codegen</artifactId> |
112 | | - <version>4.7.5</version> |
| 120 | + <version>${picocli.version}</version> |
113 | 121 | </path> |
114 | 122 | </annotationProcessorPaths> |
115 | 123 | <compilerArgs> |
116 | 124 | <arg>-Aproject=${project.groupId}/${project.artifactId}</arg> |
117 | 125 | </compilerArgs> |
118 | 126 | </configuration> |
119 | 127 | </plugin> |
120 | | - <plugin> |
121 | | - <artifactId>maven-shade-plugin</artifactId> |
122 | | - <executions> |
123 | | - <execution> |
124 | | - <id>fat-jar</id> |
125 | | - <phase>package</phase> |
126 | | - <goals> |
127 | | - <goal>shade</goal> |
128 | | - </goals> |
129 | | - <configuration> |
130 | | - <minimizeJar>true</minimizeJar> |
131 | | - <createDependencyReducedPom>false</createDependencyReducedPom> |
132 | | - <transformers> |
133 | | - <transformer |
134 | | - implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> |
135 | | - <transformer |
136 | | - implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
137 | | - <mainClass>io.jooby.cli.Cli</mainClass> |
138 | | - </transformer> |
139 | | - </transformers> |
140 | | - </configuration> |
141 | | - </execution> |
142 | | - </executions> |
143 | | - </plugin> |
144 | 128 | <plugin> |
145 | 129 | <groupId>com.fizzed</groupId> |
146 | 130 | <artifactId>stork-maven-plugin</artifactId> |
|
0 commit comments