OC.L10N.register( "workflowengine", { "Successfully saved" : "Úspešne uložené", "Saving failed:" : "Ukladanie neúspešné:", "File mime type" : "Mime typ súboru", "is" : "je", "is not" : "nie je", "matches" : "súhlasí", "does not match" : "nesúhlasí", "File size (upload)" : "Veľkosť súboru (upload)", "less" : "menej", "less or equals" : "menej alebo rovné", "greater or equals" : "viac alebo rovné", "greater" : "viac", "File system tag" : "Štítok súborového systému", "is tagged with" : "je označený", "is not tagged with" : "nie je označený", "Select tag…" : "Vyber štítok...", "Request remote address" : "Vyžiadať vzdialenú adresu", "matches IPv4" : "súhlasí s IPv4", "does not match IPv4" : "nesúhlasí s IPv4", "matches IPv6" : "súhlasí s IPv6", "does not match IPv6" : "nesúhlasí s IPv6", "between" : "medzi", "not between" : "nie je medzi", "Start" : "Začiatok", "End" : "Koniec", "Request URL" : "Vyžiadať URL", "Files WebDAV" : "WebDAV súbory", "Sync clients" : "Synchronizovať klientov", "Android client" : "Android klient", "iOS client" : "iOS klient", "Desktop client" : "Desktopový klient", "is member of" : "Je členom", "is not member of" : "Nie je členom", "The given file size is invalid" : "Zadaná veľkosť súboru je neplatná", "The given tag id is invalid" : "Zadaný identifikátor štítku je neplatný", "The given IP range is invalid" : "Zadaný rozsah IP je neplatný", "The given IP range is not valid for IPv4" : "Zadaný IP rozsah nie je platný pre IPv4", "The given IP range is not valid for IPv6" : "Zadaný IP rozsah nie je platný pre IPv6", "The given time span is invalid" : "Zadané časové rozpätie nie je platné", "The given start time is invalid" : "Zadaný čas začatia nie je platný", "The given end time is invalid" : "Zadaný čas ukončenia nie je platný", "The given group does not exist" : "Zadaná skupina neexistuje", "Operation #%s does not exist" : "Operácia #%s neexistuje", "Operation %s does not exist" : "Operácia %s neexistuje", "Operation %s is invalid" : "Operácia #%s nie je platná", "Open documentation" : "Otvoriť dokumentáciu", "Add rule group" : "Pridať skupinu pravidiel", "Short rule description" : "Zobraziť popis pravidla", "Add rule" : "Pridať pravidlo", "Reset" : "Vynulovať", "Save" : "Uložiť", "Saving…" : "Ukladá sa...", "Loading…" : "Načítava sa..." }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); hub_actions/master/actions/checkout-4 Apache Archiva Repository: https://github.com/apache/archivawww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/archiva-modules/metadata/metadata-repository-api/pom.xml
blob: f93c46365d6b3ef301ca2c3bd2493af522efbb03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Licensed to the Apache Software Foundation (ASF) under one
  ~ or more contributor license agreements.  See the NOTICE file
  ~ distributed with this work for additional information
  ~ regarding copyright ownership.  The ASF licenses this file
  ~ to you under the Apache License, Version 2.0 (the
  ~ "License"); you may not use this file except in compliance
  ~ with the License.  You may obtain a copy of the License at
  ~
  ~  http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing,
  ~ software distributed under the License is distributed on an
  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  ~ KIND, either express or implied.  See the License for the
  ~ specific language governing permissions and limitations
  ~ under the License.
  --><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <artifactId>metadata</artifactId>
    <groupId>org.apache.archiva</groupId>
    <version>1.4-SNAPSHOT</version>
  </parent>
  <artifactId>metadata-repository-api</artifactId>
  <name>Archiva Metadata Repository API</name>
  <dependencies>
    <dependency>
      <groupId>org.apache.archiva</groupId>
      <artifactId>metadata-model</artifactId>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.codehaus.redback.components</groupId>
      <artifactId>plexus-spring</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <id>test-jar</id>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>