Neat things
Another product from 37 Signals for chatting. Looks neat!
Campfire - Business ChatA Tag Library for displaying lists
DisplayTag TLD
Life, Liberty and the Pursuit of Good Programming
Another product from 37 Signals for chatting. Looks neat!
Campfire - Business ChatA Tag Library for displaying lists
DisplayTag TLD
Maven 2 has this really neat feature called "archtypes" useful for creating a skeleton directory structure for a project. It allows you to specify an "archetype type" that identifies the project as an api (default), webapp or other types.
mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app
my-app
|-- pom.xml
`-- src
|-- main
| `-- java
| `-- com
| `-- mycompany
| `-- app
| `-- App.java
`-- test
`-- java
`-- com
`-- mycompany
`-- app
`-- AppTest.java
mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-webapp -DarchetypeArtifactId=maven-archetype-webappThe only problem is that the Apache Maven group doesn't seem to realize that when users see this neat feature, the first questions are "Great! What types of archtypes are offered?" or "Where can I find in the documentation the list of available archetypes?". The result is that the documentation (well, "mini guides") show some examples of different archtypes used, describe an introduction to archetypes, and even show you how to create your own archetype. (Worse yet, is that "How to create archteypes" is listed before, "Introduction to Archteypes" ... duh!) . But programmers are lazy, and we want to know what archetypes have you created for us!!maven-archetype-marmalade-mojoAnother site pointed me to the SVN repository for Maven. Drilling down to the archetypes, it looks like there are a few more available:
maven-archetype-mojo
maven-archetype-quickstart
maven-archetype-site
maven-archetype-webapp
maven-archetype-j2eeThe directory structure that these archetypes actually create is up to you to try. I've used the default (i.e., don't specify one) API archetype and the web-app and am happy with the directory structure that it creates.
maven-archetype-mojo
maven-archetype-portlet
maven-archetype-profiles
maven-archetype-quickstart
maven-archetype-site
maven-archetype-webapp
Has anyone every tried installing the jcoverage plugin for eclipse? I tried but it doesn't seem to work. I followed this step to "Add jcoverage nature" and Eclipse does nothing. Doesn't move, no change, nada. Then it says to complete the license information screen. Umm. What license information screen? I can't do anything after this. The view opens, but that's it. No pretty jcoverage charts =( Anyone ever have any luck?
Ever upgrade eclipse? Seems to not be a smart move. When trying to use the jcoverage plugin for maven, I saw that jcoverage comes as an eclipse plugin! After going through the install guide, it didn't seem to work properly. I looked at teh compatible versions and I just had plain old 3.1, not 3.1 M2. Ok, let's upgrade.
I had not used Maven 1.X. I remember giving it a test drive, but a lot of it made me shiver. It seemed like a lot of learning and a lot of quirky behavior for something that was supposed to help me.
Ok, it has been a long time since my first post, but let's act like it never happened.