diff options
author | ToineSiebelink <toine.siebelink@est.tech> | 2022-04-01 09:00:44 +0100 |
---|---|---|
committer | ToineSiebelink <toine.siebelink@est.tech> | 2022-04-01 09:02:20 +0100 |
commit | 73f01b7f9141ddaf6ad4ed69599b2a454e4766fe (patch) | |
tree | b713482c767f23412932d1dc3e2c91398f8aa96e | |
parent | 169e5a8d73488882673df70574ac96e765f81568 (diff) |
Fix issue around duplicate build tag
Fixes failing build after merge of CPS-322.
Duplicate build tag found in checkstyle POM
Issue-ID: CPS-322
Change-Id: I099e4242e419d7b393e7787d3f75f9909dce52ac
Signed-off-by: DylanB95EST <dylan.byrne@est.tech>
Signed-off-by: ToineSiebelink <toine.siebelink@est.tech>
-rw-r--r-- | checkstyle/pom.xml | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/checkstyle/pom.xml b/checkstyle/pom.xml index a1aa4c95c4..bd343683b2 100644 --- a/checkstyle/pom.xml +++ b/checkstyle/pom.xml @@ -70,21 +70,6 @@ </plugin> </plugins> </pluginManagement> - </build> - - <distributionManagement> - <repository> - <id>ecomp-releases</id> - <name>ECOMP Release Repository</name> - <url>${nexusproxy}${releaseNexusPath}</url> - </repository> - <snapshotRepository> - <id>ecomp-snapshots</id> - <name>ECOMP Snapshot Repository</name> - <url>${nexusproxy}${snapshotNexusPath}</url> - </snapshotRepository> - </distributionManagement> - <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> @@ -112,4 +97,17 @@ </plugin> </plugins> </build> + + <distributionManagement> + <repository> + <id>ecomp-releases</id> + <name>ECOMP Release Repository</name> + <url>${nexusproxy}${releaseNexusPath}</url> + </repository> + <snapshotRepository> + <id>ecomp-snapshots</id> + <name>ECOMP Snapshot Repository</name> + <url>${nexusproxy}${snapshotNexusPath}</url> + </snapshotRepository> + </distributionManagement> </project>
\ No newline at end of file |