2 ~ Licensed to the Apache Software Foundation (ASF) under one
3 ~ or more contributor license agreements. See the NOTICE file
4 ~ distributed with this work for additional information
5 ~ regarding copyright ownership. The ASF licenses this file
6 ~ to you under the Apache License, Version 2.0 (the
7 ~ "License"); you may not use this file except in compliance
8 ~ with the License. You may obtain a copy of the License at
10 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~ Unless required by applicable law or agreed to in writing,
13 ~ software distributed under the License is distributed on an
14 ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ~ KIND, either express or implied. See the License for the
16 ~ specific language governing permissions and limitations
20 <%@ page contentType="text/html; charset=UTF-8" %>
21 <%@ taglib prefix="s" uri="/struts-tags" %>
22 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
26 <title>Admin: Merge Staging Repository</title>
32 <h1>Admin: Merge Staging Repository</h1>
35 Are you sure you want to merge the repository?
39 <table class="infotable">
42 <c:when test="${empty (conflictSourceArtifacts)}">
43 <h1>No conflicting artifacts</h1>
45 <c:if test="${!repository.snapshots and repository.releases}">
46 <div class="warningbox">
48 <strong>WARNING: Repository "${repoid}" does not allow to merge snapshots</strong>
53 <s:form method="post" action="merge" namespace="/admin" validate="false" theme="simple">
54 <s:hidden name="repoid"/>
56 <s:submit value="Merge All" method="doMerge"/>
61 <div class="warningbox">
62 <c:if test="${!repository.snapshots and repository.releases}">
64 <strong>WARNING: Repository "${repoid}" does not allow to merge snapshots</strong>
68 <strong>WARNING: The following are the artifacts in conflict.</strong>
71 <c:forEach items="${conflictSourceArtifactsToBeDisplayed}" var="artifact">
73 <td>Artifact Id :</td>
74 <%--<td><code>${artifact.id}</code></td>--%>
75 <td align="left"> <code>${artifact.namespace} ${" "} ${artifact.project} ${" "} ${artifact.version}</code></td>
80 <s:form action="merge" method="post" namespace="/admin" validate="false">
81 <s:hidden name="repoid"/>
89 <s:submit value="Merge All" method="doMerge"/>
98 <s:submit value="Merge With Skip" method="mergeBySkippingConflicts"/>