Giter Club home page Giter Club logo

releasecat-maven-plugin's Introduction

releasecat-maven-plugin icon

EO principles respected here codecov Build Status Maven Central PDD status License

Don't panic! This is just a maven plugin that uploads/creates GitHub releases for your project. :) It is based on the excellent jcabi-github API, go check it out!

Why another GitHub-releases plugin?

  • Travis doesn't provide adequate support for release descriptions (aka changelog), see 1, 2, 3, 4
  • Ability to specify parameters from the command line or settings.xml. This allows dynamic deployments, free from the static configuration of your project's POM.
  • Project activity (there are very few projects and they're basically dead)

Feedback

Please direct any questions, feature requests or bugs to the issue tracker.

How to contribute?

See CONTRIBUTING.

License

releasecat-maven-plugin is licensed under the Apache License, Version 2.0. A copy of the license has been included in LICENSE.


Icon made by Freepik from www.flaticon.com is licensed by CC BY 3.0

releasecat-maven-plugin's People

Contributors

llorllale avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

releasecat-maven-plugin's Issues

Upload.java:38-39: Add description to releases. This will...

The puzzle 1-fc28441b from #1 has to be resolved:

* @todo #1:30min Add description to releases. This will be useful for displaying changelogs
* directly in the release. Right now we just have the tag and the name.

The puzzle was created by George Aristy on 12-Mar-18.

Estimate: 30 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

UploadTest.java:125-128: jcabi-github should not be...

The puzzle 3-ac554e9c from #3 has to be resolved:

* @todo #3:30min jcabi-github should not be prepopulating optional attributes of fake
* releases with default values like this. That's why this test is checking for
* 'Description of the release'. I've opened https://github.com/jcabi/jcabi-github/issues/1362
* for this issue. When that is fixed, come back here and refactor this test.

The puzzle was created by George Aristy on 13-Mar-18.

Estimate: 30 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

UploadTest.java:147-150: jcabi-github has a bug...

The puzzle 4-f67780db from #4 has to be resolved:

* @todo #4:15min jcabi-github has a bug
* (https://github.com/jcabi/jcabi-github/issues/1363) that makes it impossible to mark
* a MkRelease as prerelease. When that is fixed, come back here and change 'assertFalse'
* for 'assertTrue' and make sure it works.

The puzzle was created by George Aristy on 13-Mar-18.

Estimate: 15 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

Upload.java:47-48: 'name' should be optional. If not...

The puzzle 14-d25c375b from #14 has to be resolved:

* @todo #14:30min 'name' should be optional. If not specified then it's simply not set. Currently
* we're always setting the release's name whether we have it or not.

The puzzle was created by George Aristy on 16-Mar-18.

Estimate: 30 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

Upload.java:42-43: Add ability to upload artifacts to...

The puzzle 1-3284a5e8 from #1 has to be resolved:

* @todo #1:30min Add ability to upload artifacts to releases. This will be useful when
* someone wants to include sources and / or binaries.

The puzzle was created by George Aristy on 12-Mar-18.

Estimate: 30 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

UploadTest.java:351-352: Impediment on jcabi github:...

The puzzle 17-edd1ac20 from #17 has to be resolved:

* @todo #17:30min Impediment on jcabi github: https://github.com/jcabi/jcabi-github/issues/1362.
* Come back and change the test to nullValue() this test when that issue is fixed.

The puzzle was created by George Aristy on 19-Mar-18.

Estimate: 30 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

Upload.java:45-47: The following configurations must be...

The puzzle 5-b8c640d1 from #5 has to be resolved:

* @todo #5:15min The following configurations must be marked as required: token, user, repo, tag.
* 'Token' is used to authenticate against GitHub'; 'user' is the user to whom the project belongs
* to; 'repo' is the name of the project; 'tag' is the name of the tag to apply to the release.

The puzzle was created by George Aristy on 16-Mar-18.

Estimate: 15 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

UploadTest.java:309-311: jcabi-github has a bug in how...

The puzzle 5-9ad4d149 from #5 has to be resolved:

* @todo #5:30min jcabi-github has a bug in how the MkReleaseAssets and MkReleaseAsset handle
* the contents of the asset - see bug https://github.com/jcabi/jcabi-github/issues/1366.
* After the bug is fixed, come back and unignore this test.

The puzzle was created by George Aristy on 16-Mar-18.

Estimate: 30 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

Upload.java:45-46: Replace 'user' with 'org'. The...

The puzzle 14-1a55f214 from #14 has to be resolved:

* @todo #14:30min Replace 'user' with 'org'. The username can already be obtained via jcabi-github
* using the token. 'org' must be optional: if specified then it is used as the "user".

The puzzle was created by George Aristy on 16-Mar-18.

Estimate: 30 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

Upload.java:40-41: Add ability to specify whether it's a...

The puzzle 1-fdf75b0d from #1 has to be resolved:

* @todo #1:30min Add ability to specify whether it's a prerelease or a full release. This
* would be useful when uploading release candidates.

The puzzle was created by George Aristy on 12-Mar-18.

Estimate: 30 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

Upload.java:39-41: Add ability to read the contents of a...

The puzzle 1-da96b270 from #1 has to be resolved:

* @todo #1:30min Add ability to read the contents of a text file and use that
* the description of a release. This will be useful for chaining the output
* of changelog plugins (usually to a file) into this plugin.

The puzzle was created by George Aristy on 13-Mar-18.

Estimate: 30 minutes, role: DEV.

If you have any technical questions, don't ask me, submit new tickets instead. The task will be "done" when the problem is fixed and the text of the puzzle is removed from the source code. Here is more about PDD and about me.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.