Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
236 views

Strange NullPointerException in maven-resources-plugin

About twice a day we get a NullPointerException in our build: [06:44:23]: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2.5:resources (default-resources) on project ...
2
votes
1answer
171 views

Keep permissions on files with Maven resources:testResources

Is it possible to keep permissions on file with Maven resources:testResources? My use case is a Selenium binary driver that I put in /src/test/resources that I would like to be able to use from my ...
2
votes
3answers
240 views

Maven: how to place resource file together with jar?

I have \src\main\resources\logback.xml file. When I run mvn package it is placed into the jar by default. How do I make Maven place it next to jar, not inside? So, well, I just want Maven to copy the ...
0
votes
2answers
46 views

maven resources plugin flat copy of resources

Given a folder 'database' containing JAR-connectors for different RDBMS. Each JAR is located in its own folder: +---database +---db2 +---db2.jar +---derby +---derby.jar ...
0
votes
1answer
43 views

maven copy bat file close to the jar

I am currently developing an maven based application. I want to make a bat file to run final jar. I've wrote bat file with call to java -jar... and put it into src/main/resources/runners folder. I ...
0
votes
1answer
54 views

maven resources plugin has issues with filtering if there are odd number of '@' present in the filtered file

The maven resources plugin has issues with handling '@' characters inside the files it needs to filter. Here is the JIRA related to the same http://jira.codehaus.org/browse/MRESOURCES-104 ...
0
votes
1answer
103 views

Generate SQL-scheme and copy it to include to WAR-file: problem with plugins' dependencies

Before running integration tests I need to setup database. This include generating SQL-scheme (based on JPA-annotations), save it to file and copy it with other resources to directory which later will ...