I am working on a project that uses an XML file to pull in a number of attributes that dictate how my application will behave. The XML file can and will change over time because the attributes in the file help tune our application for certain cases. We would like to have Maven pull this versioned XML in and place it where we need it in our build. Is this possible?
|
|
This is just what the As for versioning, just use your standard version control that the rest of your project is using. |
|||||||||
|
|
This plugin is used to retrieve JARs of resources from remote repositories, process those resources, and incorporate them into JARs you build with Maven. A very common use-case is the need to package certain resources in a consistent way across your organization: at Apache it is required that every JAR produced contains a copy of the Apache license and a notice file that references all used software in a given project. Edit: 1) If the xml file locates in file system instead of another jar or aggregated source such as a zip file or something else you can simply use resource section at your pom. It can simply include this xml file in your project output as war or jar or etc.. 2) But I believe that this is the not good way you should prefer. If the file is not depending on file servers, use maven assembly plugin to create an aggregated resource and use maven remote resource plugin to fetch it. 3) If all of these strategies are not suitable for you, simply put these xml file in file system where your project is working and your project can use it from file system instead of your jar files. Whenever you need to change it, change it and reload your system. |
||||
|
|