Skip to content

Commit bb8479d

Browse files
authored
Fix build issues with Puppeteer and transient dependency (#91)
1 parent 8ced5dc commit bb8479d

File tree

2 files changed

+8
-13
lines changed

2 files changed

+8
-13
lines changed

openidm-ui/Gruntfile-common.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,8 @@ module.exports = function(grunt, options) {
210210
args: [
211211
"--headless=new",
212212
"--allow-file-access-from-files",
213-
"--disable-dev-shm-usage"
213+
"--disable-dev-shm-usage",
214+
'--no-sandbox', '--disable-setuid-sandbox'
214215
]
215216
}
216217
}

openidm-zip/pom.xml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,6 @@
3434
<artifactId>openidm-zip</artifactId>
3535
<name>OpenIDM ZIP file assembly</name>
3636
<packaging>pom</packaging>
37-
<repositories>
38-
<repository>
39-
<id>com.springsource.repository.bundles.release</id>
40-
<name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
41-
<url>https://repository.springsource.com/maven/bundles/release</url>
42-
</repository>
43-
<repository>
44-
<id>com.springsource.repository.bundles.external</id>
45-
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
46-
<url>https://repository.springsource.com/maven/bundles/external</url>
47-
</repository>
48-
</repositories>
4937
<properties>
5038
<forgerock.license.output.dir>${project.build.directory}</forgerock.license.output.dir>
5139
</properties>
@@ -645,6 +633,12 @@
645633
<groupId>com.github.cverges</groupId>
646634
<artifactId>expect4j</artifactId>
647635
<version>1.9</version>
636+
<exclusions>
637+
<exclusion>
638+
<groupId>net.sourceforge.tcljava</groupId>
639+
<artifactId>com.springsource.tcl.lang.jacl</artifactId>
640+
</exclusion>
641+
</exclusions>
648642
</dependency>
649643
<dependency>
650644
<groupId>oro</groupId>

0 commit comments

Comments
 (0)