-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add riffpie files to local repo, since it's only on http
Newer versions of maven don't like http
- Loading branch information
Showing
6 changed files
with
264 additions
and
4 deletions.
There are no files selected for viewing
Binary file added
BIN
+3.35 KB
...po/com/riffpie/common/testing/jersey-test-support/1.0/jersey-test-support-1.0-sources.jar
Binary file not shown.
Binary file added
BIN
+8.78 KB
...l-mvn-repo/com/riffpie/common/testing/jersey-test-support/1.0/jersey-test-support-1.0.jar
Binary file not shown.
148 changes: 148 additions & 0 deletions
148
...l-mvn-repo/com/riffpie/common/testing/jersey-test-support/1.0/jersey-test-support-1.0.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
<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> | ||
<parent> | ||
<groupId>com.riffpie.parent</groupId> | ||
<artifactId>riffpie-parent</artifactId> | ||
<version>1.2</version> | ||
</parent> | ||
|
||
<groupId>com.riffpie.common.testing</groupId> | ||
<artifactId>jersey-test-support</artifactId> | ||
<version>1.0</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>jersey-test-support</name> | ||
<url>http://maven.apache.org</url> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<jersey-version>1.3</jersey-version> | ||
<spring-version>2.5.6</spring-version> | ||
</properties> | ||
<scm> | ||
<connection>scm:svn:http://svn.riffpie.com/common/jersey-test-support/tags/jersey-test-support-1.0</connection> | ||
<developerConnection>scm:svn:http://svn.riffpie.com/common/jersey-test-support/tags/jersey-test-support-1.0</developerConnection> | ||
<url>scm:svn:http://svn.riffpie.com/common/jersey-test-support/tags/jersey-test-support-1.0</url> | ||
</scm> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.8.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sun.jersey</groupId> | ||
<artifactId>jersey-server</artifactId> | ||
<version>${jersey-version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sun.jersey</groupId> | ||
<artifactId>jersey-json</artifactId> | ||
<version>${jersey-version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sun.jersey</groupId> | ||
<artifactId>jersey-client</artifactId> | ||
<version>${jersey-version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sun.jersey.contribs</groupId> | ||
<artifactId>jersey-apache-client</artifactId> | ||
<version>${jersey-version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.servlet</groupId> | ||
<artifactId>jstl</artifactId> | ||
<version>1.1.2</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-core</artifactId> | ||
<version>${spring-version}</version> | ||
<type>jar</type> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-beans</artifactId> | ||
<version>${spring-version}</version> | ||
<type>jar</type> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context</artifactId> | ||
<version>${spring-version}</version> | ||
<type>jar</type> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.xbean</groupId> | ||
<artifactId>xbean-spring</artifactId> | ||
<version>3.7</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.osgi</groupId> | ||
<artifactId>org.osgi</artifactId> | ||
<version>3.0.0</version> | ||
<type>jar</type> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-httpclient</groupId> | ||
<artifactId>commons-httpclient</artifactId> | ||
<version>3.1</version> | ||
<type>jar</type> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sun.jersey.jersey-test-framework</groupId> | ||
<artifactId>jersey-test-framework-grizzly</artifactId> | ||
<version>1.3</version> | ||
<type>jar</type> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.sun.jersey.contribs</groupId> | ||
<artifactId>jersey-spring</artifactId> | ||
<version>1.1.1-ea</version> | ||
<type>jar</type> | ||
<scope>provided</scope> | ||
<exclusions> | ||
<exclusion> | ||
<artifactId>spring</artifactId> | ||
<groupId>org.springframework</groupId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-aop</artifactId> | ||
<version>${spring-version}</version> | ||
<type>jar</type> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-collections</groupId> | ||
<artifactId>commons-collections</artifactId> | ||
<version>3.1</version> | ||
<type>jar</type> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-all</artifactId> | ||
<version>1.8.5</version> | ||
<type>jar</type> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
112 changes: 112 additions & 0 deletions
112
tcwebhooks-core/local-mvn-repo/com/riffpie/parent/riffpie-parent/1.2/riffpie-parent-1.2.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
<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.riffpie.parent</groupId> | ||
<artifactId>riffpie-parent</artifactId> | ||
<version>1.2</version> | ||
<packaging>pom</packaging> | ||
<name>riffpie-parent</name> | ||
<description>This is a parent POM which defines some aspects common to all Riffpie projects.</description> | ||
<url>http://code.riffpie.com/docs/${project.name}/${project.version}</url> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
<inceptionYear>2010</inceptionYear> | ||
<licenses> | ||
<license> | ||
<name>Apache 2</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<issueManagement> | ||
<system>Trac</system> | ||
<url>http://issues.riffpie.com</url> | ||
</issueManagement> | ||
<ciManagement> | ||
<system>Built using Hudson</system> | ||
<url>http://hudson.dev.java.net</url> | ||
</ciManagement> | ||
<developers> | ||
<developer> | ||
<id>Georgemc</id> | ||
<name>George McIntosh</name> | ||
<email>[email protected]</email> | ||
<url>http://www.riffpie.com</url> | ||
</developer> | ||
</developers> | ||
<scm> | ||
<connection>scm:svn:http://svn.riffpie.com/parent/tags/riffpie-parent-1.2</connection> | ||
<developerConnection>scm:svn:http://svn.riffpie.com/parent/tags/riffpie-parent-1.2</developerConnection> | ||
<url>scm:svn:http://svn.riffpie.com/parent/tags/riffpie-parent-1.2</url> | ||
</scm> | ||
<organization> | ||
<name>Riffpie</name> | ||
<url>http://www.riffpie.com</url> | ||
</organization> | ||
<build> | ||
<extensions> | ||
<extension> | ||
<groupId>org.apache.maven.wagon</groupId> | ||
<artifactId>wagon-webdav-jackrabbit</artifactId> | ||
<version>1.0-beta-6</version> | ||
</extension> | ||
</extensions> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.3.1</version> | ||
<configuration> | ||
<source>1.5</source> | ||
<target>1.5</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.mycila.maven-license-plugin</groupId> | ||
<artifactId>maven-license-plugin</artifactId> | ||
<configuration> | ||
<header>src/etc/header.txt</header> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-site-plugin</artifactId> | ||
<version>2.1.1</version> | ||
<executions> | ||
<execution> | ||
<phase>site</phase> | ||
<goals> | ||
<goal>site</goal> | ||
<goal>deploy</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.maven.wagon</groupId> | ||
<artifactId>wagon-webdav-jackrabbit</artifactId> | ||
<version>1.0-beta-6</version> | ||
</dependency> | ||
</dependencies> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<distributionManagement> | ||
<repository> | ||
<id>riffpie-releases</id> | ||
<name>Riffpie release repo</name> | ||
<url>dav:http://maven.riffpie.com/releases</url> | ||
</repository> | ||
<snapshotRepository> | ||
<id>riffpie-snapshots</id> | ||
<name>Riffpie snapshot repo</name> | ||
<url>dav:http://maven.riffpie.com/snapshots</url> | ||
</snapshotRepository> | ||
<site> | ||
<url>dav:http://code.riffpie.com/docs/${project.name}/${project.version}</url> | ||
<id>riffpie-site</id> | ||
<name>site</name> | ||
</site> | ||
</distributionManagement> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters