Skip to content

Commit

Permalink
#499 - Implementing request_uri end-points.
Browse files Browse the repository at this point in the history
  • Loading branch information
duttarnab committed Jun 26, 2020
1 parent 4434a30 commit 87ef925
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
5 changes: 5 additions & 0 deletions oxd-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,11 @@
<artifactId>bcpkix-jdk15on</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-configuration</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions oxd-server/src/main/assembly/src.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<useProjectArtifact>false</useProjectArtifact>
<includes>
<include>org.bouncycastle:bcprov-jdk15on</include>
<include>org.bouncycastle:bcpkix-jdk15on</include>
</includes>
<scope>runtime</scope>
</dependencySet>
Expand All @@ -25,6 +26,10 @@
<source>${project.basedir}/src/main/resources/oxd-server.keystore</source>
<outputDirectory>/conf</outputDirectory>
</file>
<file>
<source>${project.basedir}/src/main/resources/oxd-jwks.keystore</source>
<outputDirectory>/conf</outputDirectory>
</file>
<file>
<source>${project.basedir}/src/main/resources/swagger.yaml</source>
<outputDirectory>/conf</outputDirectory>
Expand Down
5 changes: 5 additions & 0 deletions oxd-server/src/main/assembly/windows-exe-src.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<useProjectArtifact>false</useProjectArtifact>
<includes>
<include>org.bouncycastle:bcprov-jdk15on</include>
<include>org.bouncycastle:bcpkix-jdk15on</include>
</includes>
<scope>runtime</scope>
</dependencySet>
Expand All @@ -27,6 +28,10 @@
<outputDirectory>/conf</outputDirectory>
<destName>oxd-server.yml</destName>
</file>
<file>
<source>${project.basedir}/src/main/resources/oxd-jwks.keystore</source>
<outputDirectory>/conf</outputDirectory>
</file>
<file>
<source>${project.build.directory}/commons-daemon-${commons-daemon.bin.version}-bin-windows/amd64/prunsrv.exe</source>
<outputDirectory>/bin</outputDirectory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ public IOpResponse execute(GetJwksParams params) {

}
}

0 comments on commit 87ef925

Please sign in to comment.