pombreda / clamshell-cli

Automatically exported from code.google.com/p/clamshell-cli
Apache License 2.0
0 stars 0 forks source link

Getting RC 403 Forbidden from MavenRepo #21

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Specify Amazon repo + dependencies as specified.
2. Try compile maven / gradle
3.

What is the expected output? What do you see instead?
Dependencies downloaded, RC 403

What version of the product are you using? On what operating system?

Please provide any additional information below.

Original issue reported on code.google.com by torben.n...@gmail.com on 14 Sep 2012 at 10:15

GoogleCodeExporter commented 9 years ago
@torben
Were you trying to compile the project (clamshell-cli) and you got this error ? 
 Or did you get it while including it in your own project?

Original comment by vladimir...@gmail.com on 14 Sep 2012 at 4:12

GoogleCodeExporter commented 9 years ago
I was trying to use it in my own project by adding dependency reference to it 
in my gradle build file. Should be equal to maven as they both use same 
dependency logic.

Original comment by torben.n...@gmail.com on 14 Sep 2012 at 5:41

GoogleCodeExporter commented 9 years ago
@torben
I re-applied the "make public" setting to my S3 bucket for this project.  I 
just rebuilt jmx-cli (another project dependent on this) from a clean 
environment and worked fine.

Try to rebuild again.  Let me know your outcome.

Original comment by vladimir...@gmail.com on 14 Sep 2012 at 6:07

GoogleCodeExporter commented 9 years ago
Hi again, when I do:
http://s3.amazonaws.com/repo.clamshellcli.org/release/org/clamshellcli/clamshell
/0.5.2/clamshell-0.5.2.jar

I get

<Error>
<Code>AccessDenied</Code>
<Message>Access Denied</Message>
<RequestId>2995DF2F8341C318</RequestId>
<HostId>
F5HpsEwJTm1MYWjQvKgN0mWLAOi7KkRfv4+LHy8J5UT/Gy/1LkphZrUZXqEAcMXJ
</HostId>
</Error>

Original comment by torben.n...@gmail.com on 14 Sep 2012 at 6:23

GoogleCodeExporter commented 9 years ago
@torben,
Make sure you are pointing to the correct artifact and artifact-id.  The URL 
from your previous comment does not exist.  For the clamshell-api artifact, 
please fix your POM coordinate to the followings:

<dependency>
        <groupId>org.clamshellcli</groupId>
        <artifactId>clamshell-api</artifactId>
        <version>0.5.2</version>
</dependency>

So that your link to the artifact should be 
http://s3.amazonaws.com/repo.clamshellcli.org/release/org/clamshellcli/clamshell
-api/0.5.2/clamshell-api-0.5.2.jar

Original comment by vladimir...@gmail.com on 14 Sep 2012 at 6:52