{ "translations": { "Server to server sharing is not enabled on this server" : "La compartición sirvidor a sirvidor nun ta habilitada nesti sirvidor", "The mountpoint name contains invalid characters." : "El puntu de montax contien caracteres non válidos", "Invalid or untrusted SSL certificate" : "Certificáu SSL inválidu o ensín validar", "Couldn't add remote share" : "Nun pudo amestase una compartición remota", "Shared with you" : "Compartíos contigo", "Shared with others" : "Compartíos con otros", "Shared by link" : "Compartíos per enllaz", "Do you want to add the remote share {name} from {owner}@{remote}?" : "Quies amestar compartición remota {name} de {owner}@{remote}?", "Remote share" : "Compartición remota", "Remote share password" : "Contraseña de compartición remota", "Cancel" : "Encaboxar", "Add remote share" : "Amestar compartición remota", "No ownCloud installation (7 or higher) found at {remote}" : "Nun s'atopó nenguna instalación ownCloud (7 o cimera) en { } remotu", "Invalid ownCloud url" : "Url ownCloud inválida", "Shared by" : "Compartíos por", "Sharing" : "Compartiendo", "A file or folder has been shared" : "Compartióse un ficheru o direutoriu", "You shared %1$s with %2$s" : "Compartisti %1$s con %2$s", "You shared %1$s with group %2$s" : "Compartisti %1$s col grupu %2$s", "You shared %1$s via link" : "Compartisti %1$s per enllaz", "%2$s shared %1$s with you" : "%2$s compartió %1$s contigo", "Shares" : "Comparticiones", "This share is password-protected" : "Esta compartición tien contraseña protexida", "The password is wrong. Try again." : "La contraseña ye incorreuta. Inténtalo otra vegada.", "Password" : "Contraseña", "No entries found in this folder" : "Nenguna entrada en esta carpeta", "Name" : "Nome", "Share time" : "Compartir hora", "Sorry, this link doesn’t seem to work anymore." : "Sentímoslo, esti enllaz paez que yá nun furrula.", "Reasons might be:" : "Les razones pueden ser: ", "the item was removed" : "desanicióse l'elementu", "the link expired" : "l'enllaz caducó", "sharing is disabled" : "la compartición ta deshabilitada", "For more info, please ask the person who sent this link." : "Pa más información, entrúga-y a la persona qu'unvió esti enllaz", "Add to your ownCloud" : "Amestar al to ownCloud", "Download" : "Baxar", "Download %s" : "Descargar %s", "Direct link" : "Enllaz direutu" },"pluralForm" :"nplurals=2; plural=(n != 1);" }bot/maven/org.eclipse.jetty-jetty-webapp-9.4.44.v20210927'>dependabot/maven/org.eclipse.jetty-jetty-webapp-9.4.44.v20210927 Vaadin 6, 7, 8 is a Java framework for modern Java web applications: https://github.com/vaadin/frameworkwww-data
summaryrefslogtreecommitdiffstats
path: root/compatibility-server-gae/pom.xml
blob: 218cb5313ad61a62cc90c56775cd5b5b11c37cc0 (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
60
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.vaadin</groupId>
        <artifactId>vaadin-root</artifactId>
        <version>8.2-SNAPSHOT</version>
    </parent>
    <artifactId>vaadin-compatibility-server-gae</artifactId>
    <name>vaadin-compatibility-server-gae</name>
    <packaging>jar</packaging>

    <url>https://vaadin.com/</url>
    <description>Vaadin 7 GAE Servlet</description>

    <properties>
        <sonar.skip>true</sonar.skip>
    </properties>
    <dependencies>
        <!-- Project modules -->
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>vaadin-server</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <!-- Google App Engine -->
        <dependency>
            <groupId>com.google.appengine</groupId>
            <artifactId>appengine-api-1.0-sdk</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-checkstyle-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>checkstyle</goal>
                        </goals>
                        <phase>process-sources</phase>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>