diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-03-01 16:21:01 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-03-01 16:21:01 +0000 |
commit | b0c1eaf9dcc4597282e1e2016c1e61fa1c14e36c (patch) | |
tree | 450472173e60373aae31403dcfaa854759203c0a /build/maven/pom-template.xml | |
parent | 6b3d7c1d61c43bf03c2cc99053eb393457e71df4 (diff) | |
download | vaadin-framework-b0c1eaf9dcc4597282e1e2016c1e61fa1c14e36c.tar.gz vaadin-framework-b0c1eaf9dcc4597282e1e2016c1e61fa1c14e36c.zip |
#3682 - Maven pom.xml should use the same version as all other build scripts
svn changeset:11568/svn branch:6.3
Diffstat (limited to 'build/maven/pom-template.xml')
-rw-r--r-- | build/maven/pom-template.xml | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/build/maven/pom-template.xml b/build/maven/pom-template.xml new file mode 100644 index 0000000000..5c2cb1a727 --- /dev/null +++ b/build/maven/pom-template.xml @@ -0,0 +1,63 @@ +<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>vaadin</artifactId>
+ <version>@VERSION-MAJOR.MINOR@-SNAPSHOT</version>
+ <name>Vaadin</name>
+ <organization>
+ <name>Oy IT Mill 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>
+ <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>
\ No newline at end of file |