Skip to content

Commit 96c451d

Browse files
committed
build: Reproducible Builds
- added back `package-lock.json` - skip jacoco on `jooby-cli` so it generates an empty `argLine` - fix #3662
1 parent f3510e4 commit 96c451d

File tree

6 files changed

+9149
-8
lines changed

6 files changed

+9149
-8
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,4 @@ node
3636
node_modules
3737
build
3838
.gradle
39-
package-lock.json
4039
!gradle-wrapper.jar

modules/jooby-cli/pom.xml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,19 @@
7878
<artifactId>mockito-core</artifactId>
7979
<scope>test</scope>
8080
</dependency>
81-
82-
<dependency>
83-
<groupId>org.jacoco</groupId>
84-
<artifactId>org.jacoco.agent</artifactId>
85-
<classifier>runtime</classifier>
86-
<scope>test</scope>
87-
</dependency>
8881
</dependencies>
8982

9083
<build>
9184
<plugins>
85+
<plugin>
86+
<groupId>org.jacoco</groupId>
87+
<artifactId>jacoco-maven-plugin</artifactId>
88+
<version>${jacoco.version}</version>
89+
<inherited>false</inherited>
90+
<configuration>
91+
<skip>true</skip>
92+
</configuration>
93+
</plugin>
9294
<plugin>
9395
<groupId>org.codehaus.mojo</groupId>
9496
<artifactId>properties-maven-plugin</artifactId>

0 commit comments

Comments
 (0)