Skip to content

Commit eb328ec

Browse files
author
Mark Adamcin
committed
added hmac to the osgi bundle
1 parent 5f8faa7 commit eb328ec

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

osgi/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
net.adamcin.httpsig.api,
7575
net.adamcin.httpsig.ssh.jce,
7676
net.adamcin.httpsig.ssh.bc,
77+
net.adamcin.httpsig.hmac,
7778
net.adamcin.httpsig.http.*
7879
</Export-Package>
7980
<Import-Package>
@@ -87,6 +88,7 @@
8788
httpsig-api;inline=true,
8889
httpsig-ssh-jce;inline=true,
8990
httpsig-ssh-bc;inline=true,
91+
httpsig-hmac;inline=true,
9092
httpsig-http-helpers;inline=true,
9193
bcpkix-jdk15on,
9294
bcprov-jdk15on
@@ -107,7 +109,7 @@
107109
<repositoryOwner>adamcin</repositoryOwner>
108110
<repositoryName>httpsig-java</repositoryName>
109111
<path>${project.artifactId}</path>
110-
<merge>true</merge>
112+
<merge>true</merge>
111113
</configuration>
112114
</plugin>
113115
</plugins>
@@ -156,6 +158,10 @@
156158
<groupId>net.adamcin.httpsig</groupId>
157159
<artifactId>httpsig-ssh-bc</artifactId>
158160
</dependency>
161+
<dependency>
162+
<groupId>net.adamcin.httpsig</groupId>
163+
<artifactId>httpsig-hmac</artifactId>
164+
</dependency>
159165
<dependency>
160166
<groupId>net.adamcin.httpsig</groupId>
161167
<artifactId>httpsig-http-helpers</artifactId>

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,12 @@
290290
<version>1.2.1-SNAPSHOT</version>
291291
<scope>provided</scope>
292292
</dependency>
293+
<dependency>
294+
<groupId>net.adamcin.httpsig</groupId>
295+
<artifactId>httpsig-hmac</artifactId>
296+
<version>1.2.1-SNAPSHOT</version>
297+
<scope>provided</scope>
298+
</dependency>
293299
<dependency>
294300
<groupId>net.adamcin.httpsig</groupId>
295301
<artifactId>httpsig-http-helpers</artifactId>

0 commit comments

Comments
 (0)