Skip to content

Commit

Permalink
fix test keystore stuff, and a missing transient dependency at test time
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Reed committed Feb 1, 2023
1 parent ab76c4d commit 9ef2399
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
7 changes: 7 additions & 0 deletions features/flows/itests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -265,5 +265,12 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<!-- used by test runtime SSL bits -->
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>${snappyVersion}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
6 changes: 6 additions & 0 deletions integrations/opennms-jasper-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -175,5 +175,11 @@
<version>1.0-1</version>
<scope>test</scope>
</dependency>
<!-- used by test runtime SSL bits -->
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>${snappyVersion}</version>
</dependency>
</dependencies>
</project>
9 changes: 5 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1576,10 +1576,10 @@
<rpm.database.password>opennms</rpm.database.password>

<test.keystore>${project.build.directory}/test-keystore.jks</test.keystore>
<test.storepass>${webstart.storepass}</test.storepass>
<test.keyalias>${webstart.keyalias}</test.keyalias>
<test.keypass>${webstart.keypass}</test.keypass>
<test.dnameCn>cn=${webstart.dnameCn}</test.dnameCn>
<test.storepass>opennms</test.storepass>
<test.keyalias>opennms-keystore-key</test.keyalias>
<test.keypass>opennms</test.keypass>
<test.dnameCn>cn=${user.name}</test.dnameCn>

<updatePolicy>interval:60</updatePolicy> <!-- 60 minutes -->
<maven.clover.licenseLocation>${user.home}/.m2/clover.license</maven.clover.licenseLocation>
Expand Down Expand Up @@ -1720,6 +1720,7 @@
<servletApiVersion>3.1.0</servletApiVersion>
<slf4jVersion>1.7.26</slf4jVersion>
<smackVersion>4.0.6</smackVersion>
<snappyVersion>1.1.9.0</snappyVersion>
<snmp4jVersion>2.5.5</snmp4jVersion>
<snmp4jagentVersion>2.5.3</snmp4jagentVersion>
<sonarVersion>3.7.0.1746</sonarVersion>
Expand Down

0 comments on commit 9ef2399

Please sign in to comment.