Skip to content

Commit 036834a

Browse files
committed
build: fix reproducible builds error
- remove `argLine` from jooby-cli
1 parent 8eb836f commit 036834a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

modules/jooby-cli/pom.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
<Module-Name>io.jooby.cli</Module-Name>
1616
<jline.version>3.30.6</jline.version>
1717
<picocli.version>4.7.7</picocli.version>
18+
<!-- No argLine, make reproducible builds happy -->
19+
<argLine/>
1820
</properties>
1921

2022
<dependencies>
@@ -124,9 +126,9 @@
124126
<compilerArgs>
125127
<arg>-Aproject=${project.groupId}/${project.artifactId}</arg>
126128
</compilerArgs>
127-
<source>17</source>
128-
<target>17</target>
129-
<release>17</release>
129+
<source>21</source>
130+
<target>21</target>
131+
<release>21</release>
130132
</configuration>
131133
</plugin>
132134
<plugin>

0 commit comments

Comments
 (0)