Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-dev] JettyConsole 1.57 released

Don't take this negatively, this is just a list of suggestions based on paying attention to your project since 2011.

Having this source on your own personal svn repository (which took me better part of 40 minutes to find) isn't doing you any favors.

You'll want to make the source easier to find.
You'll also want somewhere for people to track issues and submit patches.

There are people interested in it, here and there, off and on, since 2011.
But they often get frustrated at the lack of documentation or access to the source (in lieu of documentation).
There are even people on stackoverflow that have found bugs and issues, but no way to communicate them to you or the general community around your project.

I think its time you moved the project to github, that will make the project more exposed, easier to track, easier to file issues against, easier to submit patches against, etc.  You'll instantly have more of a community around your project just by doing that.


--
Joakim Erdfelt <joakim@xxxxxxxxxxx>
Expert advice, services and support from from the Jetty & CometD experts

On Tue, Mar 3, 2015 at 4:52 AM, Eirik Bjørsnøs <eirbjo@xxxxxxxxx> wrote:
Hi,

Following the recent HttpBuffer security release, I have released a
new version of the JettyConsole Maven Plugin to Maven Central.

The new release 1.57 is based on Jetty 9.2.9.v20150224.

Please upgrade to 1.57 if you are using the 1.56 version of JettyConsole.

---

About JettyConsole Maven Plugin:

JettyConsole is a Maven Plugin which takes a war as input and outputs
a java -jar runnable war file with command line options. It provides a
simple and convenient way of running Java Web Application.

Here's how to configure JettyConsole Maven plugin for your war
project, including JSP support and the ability to create Unix
start/stop scripts for you service:

<plugin>
    <groupId>org.simplericity.jettyconsole</groupId>
    <artifactId>jetty-console-maven-plugin</artifactId>
    <version>1.57</version>
    <executions>
        <execution>
            <goals>
                <goal>createconsole</goal>
            </goals>
            <configuration>
                <additionalDependencies>
                    <additionalDependency>
                        <artifactId>jetty-console-jsp-plugin</artifactId>
                    </additionalDependency>
                    <additionalDependency>
                        <artifactId>jetty-console-startstop-plugin</artifactId>
                    </additionalDependency>
                </additionalDependencies>
            </configuration>
        </execution>
    </executions>
</plugin>

Eirik.
_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-dev


Back to the top