summaryrefslogtreecommitdiffstats
path: root/pom-template.xml
blob: 33e6be623e60283a678f05d253148891b8e7bf4d (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<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>
    <groupId>com.vaadin</groupId>
    <artifactId>${module.name}</artifactId>
    <version>${vaadin.maven.version}</version>
    <name>Vaadin</name>
    <organization>
        <name>Vaadin Ltd</name>
        <url>http://vaadin.com</url>
    </organization>
    <url>http://vaadin.com</url>
    <description>
        Vaadin is a web application framework for Rich Internet Applications (RIA).

        Vaadin enables easy development and maintenance of fast and
        secure rich web
        applications with a stunning look and feel and a wide browser support.
        It features a server-side architecture with the majority of the logic
        running
        on the server. Ajax technology is used at the browser-side to ensure a
        rich
        and interactive user experience.
    </description>
    <licenses>
        <license>
            <name>Apache License Version 2.0</name>
            <distribution>repo</distribution>
            <url>http://www.apache.org/licenses/LICENSE-2.0</url>
        </license>
    </licenses>
    <scm>
        <connection>scm:http:http://dev.vaadin.com/git/vaadin.git</connection>
        <developerConnection>scm:ssh:git@dev.vaadin.com/vaadin</developerConnection>
        <url>http://dev.vaadin.com/git/?p=vaadin.git</url>
    </scm>
    <developers>
        <developer>
            <id>artur</id>
            <name>Artur Signell</name>
            <email>artur.signell@vaadin.com</email>
            <url>http://vaadin.com/web/artur</url>
            <organization>Vaadin Ltd</organization>
            <organizationUrl>http://vaadin.com/</organizationUrl>
            <roles>
                <role>architect</role>
                <role>developer</role>
                <role>team manager</role>
            </roles>
            <timezone>2</timezone>
        </developer>
        <developer>
            <id>magi</id>
            <name>Marko Gronroos</name>
            <email>magi@vaadin.com</email>
            <url>http://vaadin.com/web/magi</url>
            <organization>Vaadin Ltd</organization>
            <organizationUrl>http://vaadin.com/</organizationUrl>
            <roles>
                <role>build manager</role>
            </roles>
            <timezone>2</timezone>
        </developer>
    </developers>
    <distributionManagement>
        <repository>
            <id>vaadin-releases</id>
            <name>Vaadin release repository</name>
            <url>http://oss.sonatype.org/content/repositories/vaadin-releases/</url>
        </repository>
        <snapshotRepository>
            <id>vaadin-snapshots</id>
            <name>Vaadin snapshot repository</name>
            <url>http://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
        </snapshotRepository>
    </distributionManagement>
    <repositories>
        <repository>
            <id>vaadin-snapshots</id>
            <url>http://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
        <repository>
            <id>vaadin-releases</id>
            <url>http://oss.sonatype.org/content/repositories/vaadin-releases/</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>
</project>