Skip to content

Commit

Permalink
signedrequest4j 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Jan 5, 2012
1 parent 8dd1690 commit f79c6d8
Show file tree
Hide file tree
Showing 12 changed files with 169 additions and 3 deletions.
Binary file not shown.
@@ -0,0 +1 @@
74b89570f1cc0f8eac906ffc783c16a5
@@ -0,0 +1 @@
5d0375773836770d20a168fd599bcaaf1778a9a3
Binary file not shown.
@@ -0,0 +1 @@
0ed0fbf7ef6fe842732115422720cb8a
@@ -0,0 +1 @@
a2ae5056056ed53ef6b6177671548e770fce2061
@@ -0,0 +1,159 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.github.seratch</groupId>
<artifactId>signedrequest4j</artifactId>
<version>2.13</version>
<packaging>jar</packaging>

<name>signedrequest4j</name>
<url>https://github.com/seratch/signedrequest4j</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jetty.version>7.5.1.v20110908</jetty.version>
</properties>

<repositories>
<repository>
<id>seratch.github.com releases</id>
<url>http://seratch.github.com/mvn-repo/releases</url>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>junithelper.org releases</id>
<url>http://junithelper.googlecode.com/svn/trunk/mvn-repo/releases</url>
</pluginRepository>
</pluginRepositories>

<distributionManagement>
<repository>
<id>repo</id>
<url>http://seratch.github.com/mvn-repo/releases</url>
</repository>
<snapshotRepository>
<id>snapshot-repo</id>
<url>http://seratch.github.com/mvn-repo/snapshots</url>
</snapshotRepository>
</distributionManagement>

<dependencies>

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>com.github.seratch</groupId>
<artifactId>httpilot</artifactId>
<version>0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.junithelper</groupId>
<artifactId>maven-junithelper-plugin</artifactId>
<configuration>
<mockObjectFramework>Mockito</mockObjectFramework>
<isExtensionEnabled>false</isExtensionEnabled>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>pertest</forkMode>
<argLine>-Xms64m -Xmx128m</argLine>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<inputEncoding>UTF-8</inputEncoding>
<outputEncoding>UTF-8</outputEncoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<goals>deploy,site-deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-idea-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<downloadSources>true</downloadSources>
</configuration>
</plugin>
</plugins>
</build>

</project>
@@ -0,0 +1 @@
eea03485f658770f03103fe6b2cd62ef
@@ -0,0 +1 @@
81f551776a87ee30db9abf65857a1b027494e774
Expand Up @@ -21,7 +21,8 @@
<version>2.10</version>
<version>2.11</version>
<version>2.12</version>
<version>2.13</version>
</versions>
<lastUpdated>20111208032201</lastUpdated>
<lastUpdated>20120105095809</lastUpdated>
</versioning>
</metadata>
@@ -1 +1 @@
1227eea7d66d558ebf286d914571a25c
68d699ba6194b32bce4c664a37cd660f
@@ -1 +1 @@
d0f0b64057c7bf6ec6bedd6e5209cc07b3771d85
63c30d1e4f5534aa51f42a231c11be3671a0dfe4

0 comments on commit f79c6d8

Please sign in to comment.