Re: Maven UIMA and import by name

2012-05-11 Thread Richard Eckart de Castilho
Hi Erik. you can configure Maven with an extra resources folder. http://maven.apache.org/pom.html#Resources We usually keep our descriptors under src/main/resources to have them on the classpath. But we do not care about being PEAR compatible. So adding desc as a resources folder in

Re: Maven UIMA and import by name

2012-05-11 Thread Tommaso Teofili
Hi Erik, I mostly edit XMLs by hand (also because I use IntelliJ IDEA) but I think you may tell Maven that desc is a resource folder: build ... resources resource directorysrc/main/resources/directory directorydesc/directory /resource ... /build HTH, Tommaso

Re: Maven UIMA and import by name

2012-05-11 Thread Thomas Ginter
We use maven for our UIMA-AS projects. Here is the build section from our standard POM entries: build resources resource directorysrc/main/desc//directory /resource resource directorysrc/main/resources//directory /resource /resources

Re: Maven UIMA and import by name

2012-05-11 Thread Erik Fäßler
Hey you all, thanks a lot for your answers. I had tried to add the desc/ directory as a maven resource. However, the UIMA component editor still wouldn't show me my descriptors to choose from. I have to remove the exclude: ** entry in the build path first. Then, the whole directory is copied