diff options
-rw-r--r-- | pom.xml | 1 | ||||
-rw-r--r-- | src/it/settings.xml | 36 |
2 files changed, 37 insertions, 0 deletions
@@ -210,6 +210,7 @@ <pomExclude>it-parent/**</pomExclude> </pomExcludes> <localRepositoryPath>${project.build.directory}/it-repo</localRepositoryPath> + <settingsFile>src/it/settings.xml</settingsFile> <goals> <goal>clean</goal> <goal>install</goal> diff --git a/src/it/settings.xml b/src/it/settings.xml new file mode 100644 index 0000000..4e70be9 --- /dev/null +++ b/src/it/settings.xml @@ -0,0 +1,36 @@ +<?xml version="1.0"?> +<settings> + <profiles> + <profile> + <id>it-repo</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <repositories> + <repository> + <id>local.central</id> + <url>@localRepositoryUrl@</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>true</enabled> + </snapshots> + </repository> + </repositories> + <pluginRepositories> + <pluginRepository> + <id>local.central</id> + <url>@localRepositoryUrl@</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>true</enabled> + </snapshots> + </pluginRepository> + </pluginRepositories> + </profile> + </profiles> +</settings> + |