Skip to content

Commit

Permalink
Use Base64 from Java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
simon04 committed Mar 7, 2020
1 parent 6a43cc7 commit 9cd4256
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 18 deletions.
6 changes: 0 additions & 6 deletions docs/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,6 @@ The snapshots are kindly hosted by [Sonatype](http://oss.sonatype.org).

# Setting up Signpost

If you downloaded the JARs manually, you must also have the following libraries in your project's build path if you want to use Signpost:

* [Apache Commons Codec 1.3](http://commons.apache.org/codec/) (or newer)

If you built Signpost using Maven in the previous step, then you do not need to manually install dependencies, since Maven will do that for you.

By default, Signpost supports signing HTTP requests of type java.net.HttpURLConnection. If you only need that, then you're good to go and you can skip to the next section. If you want to use a different HTTP messaging system, you must download an adapter module that supports adapting request objects of that library for Signpost being able to sign them. The adapter module must be added to your project's build path.

For a list of available adapter modules, refer to [SupportedHttpLibraries](SupportedHttpLibraries.md).
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
Expand Down
10 changes: 0 additions & 10 deletions signpost-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,6 @@
<artifactId>signpost-core</artifactId>
<name>signpost-core</name>

<!-- dependencies -->
<dependencies>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.3</version>
<scope>compile</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
Expand Down

0 comments on commit 9cd4256

Please sign in to comment.