Added:
trunk/maven-repo/jfireeagle/jfireeagle/20090523/
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.jar
(contents, props changed)
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.jar.md5
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.jar.sha1
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.pom
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.pom.md5
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.pom.sha1
Modified:
trunk/maven-repo/jfireeagle/jfireeagle/maven-metadata.xml
trunk/maven-repo/jfireeagle/jfireeagle/maven-metadata.xml.md5
trunk/maven-repo/jfireeagle/jfireeagle/maven-metadata.xml.sha1
Log:
new jfireeagle jar
Added:
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.jar
==============================================================================
Binary file. No diff available.
Added:
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.jar.md5
==============================================================================
--- (empty file)
+++
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.jar.md5
Sun May 24 07:25:31 2009
@@ -0,0 +1 @@
+1586282f437299808a01a1ad350c3bb8
\ No newline at end of file
Added:
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.jar.sha1
==============================================================================
--- (empty file)
+++
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.jar.sha1
Sun May 24 07:25:31 2009
@@ -0,0 +1 @@
+e813e22a6c73a7ff4758acf8d19b54e9052e3b25
\ No newline at end of file
Added:
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.pom
==============================================================================
--- (empty file)
+++ trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.pom
Sun May 24 07:25:31 2009
@@ -0,0 +1,132 @@
+<?xml version="1.0"?>
+<!-- $Header: $ -->
+<!-- ######################################################### -->
+<!-- -->
+<!-- This is a Maven project file. -->
+<!-- For more information, see http://maven.apache.org/ -->
+<!-- -->
+<!-- ######################################################### -->
+<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/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <name>jfireeagle</name>
+ <url>http://code.google.com/p/jfireeagle/</url>
+ <groupId>jfireeagle</groupId>
+ <artifactId>jfireeagle</artifactId>
+ <packaging>jar</packaging>
+ <version>20090523</version>
+ <description>Java client for FireEagle</description>
+ <organization>
+ <name>jfireeagle</name>
+ <url>http://code.google.com/p/jfireeagle/</url>
+ </organization>
+ <inceptionYear>2008</inceptionYear>
+
+ <issueManagement>
+ <url>http://code.google.com/p/jfireeagle/issues/list</url>
+ </issueManagement>
+
+ <distributionManagement>
+ <repository>
+ <id>repository.local</id>
+ <url>../jfireeagle-maven-repo</url>
+ </repository>
+ </distributionManagement>
+
+ <scm>
+ <url>http://jfireeagle.googlecode.com/svn/trunk</url>
+ </scm>
+
+ <mailingLists>
+ <mailingList>
+ <name>jfireeagle user list</name>
+ <subscribe>todo</subscribe>
+ <unsubscribe>todo</unsubscribe>
+ <archive>todo</archive>
+ </mailingList>
+ </mailingLists>
+
+ <developers>
+ <developer>
+ <name>Sean C. Sullivan</name>
+ <id>sean --*-- seansullivan --*-- com</id>
+ <email>sean --*-- seansullivan --*-- com</email>
+ <organization></organization>
+ </developer>
+ <developer>
+ <name>Jewel</name>
+ <id>tojewel</id>
+ <organization></organization>
+ </developer>
+ </developers>
+
+<repositories>
+ <repository>
+ <id>oauth-maven-repo</id>
+ <name>OAuth Maven repository</name>
+ <url>http://oauth.googlecode.com/svn/code/maven</url>
+ <layout>default</layout>
+ </repository>
+</repositories>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ <version>4.0-beta2</version>
+ </dependency>
+ <dependency>
+ <groupId>com.thoughtworks.xstream</groupId>
+ <artifactId>xstream</artifactId>
+ <version>1.3.1</version>
+ </dependency>
+ <dependency>
+ <groupId>net.oauth</groupId>
+ <artifactId>oauth-core</artifactId>
+ <version>20090408</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.6</version>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+
+ <build>
+ <sourceDirectory>${basedir}/src/main</sourceDirectory>
+ <testSourceDirectory>${basedir}/src/test</testSourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ <optimize>false</optimize>
+ <showDeprecations>true</showDeprecations>
+ </configuration>
+ </plugin>
+ </plugins>
+
+ </build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jxr-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </reporting>
+
+</project>
Added:
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.pom.md5
==============================================================================
--- (empty file)
+++
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.pom.md5
Sun May 24 07:25:31 2009
@@ -0,0 +1 @@
+cdb8d31a035bd1694361cf24f2bab8ec
\ No newline at end of file
Added:
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.pom.sha1
==============================================================================
--- (empty file)
+++
trunk/maven-repo/jfireeagle/jfireeagle/20090523/jfireeagle-20090523.pom.sha1
Sun May 24 07:25:31 2009
@@ -0,0 +1 @@
+2fbd303c9792a3d80031bfae6859b1fb8ac689cb
\ No newline at end of file
Modified: trunk/maven-repo/jfireeagle/jfireeagle/maven-metadata.xml
==============================================================================
--- trunk/maven-repo/jfireeagle/jfireeagle/maven-metadata.xml (original)
+++ trunk/maven-repo/jfireeagle/jfireeagle/maven-metadata.xml Sun May 24
07:25:31 2009
@@ -1,11 +1,12 @@
-<?xml version="1.0" encoding="UTF-8"?><metadata>
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
<groupId>jfireeagle</groupId>
<artifactId>jfireeagle</artifactId>
- <version>20081103</version>
+ <version>20090523</version>
<versioning>
<versions>
- <version>20081103</version>
+ <version>20090523</version>
</versions>
- <lastUpdated>20081103103819</lastUpdated>
+ <lastUpdated>20090524072737</lastUpdated>
</versioning>
-</metadata>
\ No newline at end of file
+</metadata>
Modified: trunk/maven-repo/jfireeagle/jfireeagle/maven-metadata.xml.md5
==============================================================================
--- trunk/maven-repo/jfireeagle/jfireeagle/maven-metadata.xml.md5 (original)
+++ trunk/maven-repo/jfireeagle/jfireeagle/maven-metadata.xml.md5 Sun May
24 07:25:31 2009
@@ -1 +1 @@
-76db720b7df534811d7de4f83210878e
\ No newline at end of file
+cc40a8666cebdbd57bcff399a9cb463a
\ No newline at end of file
Modified: trunk/maven-repo/jfireeagle/jfireeagle/maven-metadata.xml.sha1
==============================================================================
--- trunk/maven-repo/jfireeagle/jfireeagle/maven-metadata.xml.sha1
(original)
+++ trunk/maven-repo/jfireeagle/jfireeagle/maven-metadata.xml.sha1 Sun May
24 07:25:31 2009
@@ -1 +1 @@
-523272303def209c6003f7d087f9273f248830ee
\ No newline at end of file
+1196c512d40e1dbba9c8506d7d1753933f5ac977
\ No newline at end of file