Open GoogleCodeExporter opened 9 years ago
Please make it available to maven central
Original comment by gustavon...@gmail.com
on 10 Oct 2011 at 4:40
Has any progress been made on this issue? Is anyone considering the
"third-party upload" option?
Original comment by dgly...@gmail.com
on 31 May 2012 at 10:23
Bump. Anyone maintaining this lib?
Original comment by j.bacho...@gmail.com
on 14 Aug 2012 at 7:50
Ok. I took some steps forward. I've created a mavenized branch where I've
changed the build system from Ant to Maven - pretty straightforward. Also, I've
created a ticket at sonatype to host cliche artifacts
(https://issues.sonatype.org/browse/OSSRH-4112) so once it is resolved I'll add
corresponding section to the projects pom.xml.
Original comment by j.bacho...@gmail.com
on 14 Aug 2012 at 6:11
The Sonatype hosted project has been created.
The snapshot artifacts are uploaded:
groupId: com.googlecode.cliche
artifactId: cliche
version: 1.0-SNAPSHOT
If you want to depend on cliche you will need to add the sontatype snapshots
repository definition into your pom -
<repository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
If anyone is still maintaining this project, please consider transplanting the
changes from my branch, performing maven release of cliche and closing this
issue.
Original comment by j.bacho...@gmail.com
on 16 Aug 2012 at 7:13
[deleted comment]
[deleted comment]
Thanks for doing this!
I just added this to my project with about 5 seconds worth of work. Just in
case it helps someone do this with 2 seconds of work, here is the dependency
XML to cut/paste, as well:
<dependency>
<groupId>com.googlecode.cliche</groupId>
<artifactId>cliche</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
Original comment by anotherg...@gmail.com
on 28 Aug 2012 at 5:21
Needs updating to the latest version
Original comment by william....@gmail.com
on 9 Jul 2014 at 1:12
can you please add a release version to the maven repo
Original comment by aneeshkj...@gmail.com
on 20 Oct 2014 at 6:49
@jbacho...@gmail.com :
Attached Maven project has the latest cliche source along with your pom file
(+added the nexus staging plugin)
Can you release it to the nexus staging repository
https://oss.sonatype.org/service/local/staging/deploy/maven2/ using the jira
account which you had created.
Trying further to persuade you to deploy ;-) ;-)
Maven Settings file entry
<servers>
<server>
<id>sonatype-nexus-snapshots</id>
<username>your-jira-id</username>
<password>your-jira-pwd</password>
</server>
<server>
<id>sonatype-nexus-staging</id>
<username>your-jira-id</username>
<password>your-jira-pwd</password>
</server>
</servers>
Deploy command
mvn clean deploy -DperformRelease=true
May be the version number 110413 should be used instead of 1.0 to make it match
with what's provided here?
Original comment by aneeshkj...@gmail.com
on 25 Oct 2014 at 3:19
Attachments:
I ended up pushing this to Central with a different groupId.In case it helps,
it's now available on Maven Central -
https://repo1.maven.org/maven2/com/googlecode/clichemaven/cliche/
<dependency>
<groupId>com.googlecode.clichemaven</groupId>
<artifactId>cliche</artifactId>
<version>110413</version>
</dependency>
Original comment by aneeshkj...@gmail.com
on 1 Dec 2014 at 7:10
Original issue reported on code.google.com by
joeym...@gmail.com
on 25 Apr 2011 at 1:37