diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2008-07-06 03:29:43 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2008-07-06 03:29:43 +0000 |
commit | 7e38e5dd8ad1e59fc88f01b6118c1e6a298e0319 (patch) | |
tree | a10e0189d3825dd4709b155d4e4a2675677cbf39 /java/sca/modules | |
parent | 5036df2917e56dc8608889c5d4f1dbccf5d478e4 (diff) |
TUSCANY-2457 - Uploading script to deploy gdata to temp repo and updating gdata extension to use the new repo
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@674252 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/modules')
-rwxr-xr-x | java/sca/modules/binding-gdata-runtime/deployGdataToMaven.sh | 3 | ||||
-rw-r--r-- | java/sca/modules/binding-gdata-runtime/pom.xml | 34 |
2 files changed, 26 insertions, 11 deletions
diff --git a/java/sca/modules/binding-gdata-runtime/deployGdataToMaven.sh b/java/sca/modules/binding-gdata-runtime/deployGdataToMaven.sh new file mode 100755 index 0000000000..800e057978 --- /dev/null +++ b/java/sca/modules/binding-gdata-runtime/deployGdataToMaven.sh @@ -0,0 +1,3 @@ +mvn gpg:sign-and-deploy-file -DgroupId=com.google.gdata -DartifactId=gdata-core -Dversion=1.0 -Dpackaging=jar -Dfile=gdata-core-1.0.jar -DrepositoryId=apache.people -Durl=scp://people.apache.org/home/lresende/public_html/googoe-gdata/maven -Dkeyname=lresende + +mvn gpg:sign-and-deploy-file -DgroupId=com.google.gdata -DartifactId=gdata-client -Dversion=1.0 -Dpackaging=jar -Dfile=gdata-client-1.0.jar -DrepositoryId=apache.people -Durl=scp://people.apache.org/home/lresende/public_html/google-gdata/maven -Dkeyname=lresende diff --git a/java/sca/modules/binding-gdata-runtime/pom.xml b/java/sca/modules/binding-gdata-runtime/pom.xml index cf2a0aea63..9d6981a24b 100644 --- a/java/sca/modules/binding-gdata-runtime/pom.xml +++ b/java/sca/modules/binding-gdata-runtime/pom.xml @@ -28,6 +28,13 @@ <artifactId>tuscany-binding-gdata-runtime</artifactId> <name>Apache Tuscany SCA GData Binding Extension</name> + <repositories> + <repository> + <id>com.google.gdata</id> + <url>http://people.apache.org/~lresende/google-gdata/maven/</url> + </repository> + </repositories> + <dependencies> <dependency> <groupId>org.apache.tuscany.sca</groupId> @@ -104,15 +111,20 @@ <version>1.4-SNAPSHOT</version> <scope>test</scope> </dependency> - + <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.2</version> - <scope>test</scope> + <groupId>com.google.gdata</groupId> + <artifactId>gdata-core</artifactId> + <version>1.0</version> </dependency> <dependency> + <groupId>com.google.gdata</groupId> + <artifactId>gdata-client</artifactId> + <version>1.0</version> + </dependency> + + <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.3</version> @@ -138,15 +150,15 @@ <groupId>avalon-framework</groupId> </exclusion> </exclusions> - </dependency> + </dependency> <dependency> - <groupId>gdata-core</groupId> - <artifactId>gdata-core</artifactId> - <version>1.0</version> - <scope>compile</scope> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.2</version> + <scope>test</scope> </dependency> - + </dependencies> |