diff options
author | Henri Sara <hesara@vaadin.com> | 2015-03-19 15:36:36 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-03-26 09:38:36 +0000 |
commit | 640ac265babd0c31c3572e8080dff4f9a9be2ab6 (patch) | |
tree | 1e954809d900f1870779f8a3dfe5e8c6eb8d475c /bom/vaadin-bom.pom | |
parent | f38697786931944177c86498939d6b5993b1588d (diff) | |
download | vaadin-framework-640ac265babd0c31c3572e8080dff4f9a9be2ab6.tar.gz vaadin-framework-640ac265babd0c31c3572e8080dff4f9a9be2ab6.zip |
Build Maven BOM for Vaadin (#17025)
Change-Id: I842a5f1551012744354371e1c099f6ca2360029c
Diffstat (limited to 'bom/vaadin-bom.pom')
-rw-r--r-- | bom/vaadin-bom.pom | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/bom/vaadin-bom.pom b/bom/vaadin-bom.pom new file mode 100644 index 0000000000..f2b482ad9b --- /dev/null +++ b/bom/vaadin-bom.pom @@ -0,0 +1,103 @@ +<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-parent</artifactId> + <version>1.0.0</version> + </parent> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-bom</artifactId> + <version>@vaadin.version@</version> + <packaging>pom</packaging> + <name>Vaadin Framework (Bill of Materials)</name> + <description>Vaadin Framework (Bill of Materials)</description> + <organization> + <name>Vaadin Ltd</name> + <url>http://vaadin.com</url> + </organization> + <url>http://vaadin.com</url> + <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:https:https://github.com/vaadin/vaadin.git</connection> + <developerConnection>scm:https:https://github.com/vaadin/vaadin.git</developerConnection> + <url>https://github.com/vaadin/vaadin</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>hesara</id> + <name>Henri Sara</name> + <email>hesara@vaadin.com</email> + <organization>Vaadin Ltd</organization> + <organizationUrl>http://vaadin.com/</organizationUrl> + <roles> + <role>developer</role> + </roles> + <timezone>2</timezone> + </developer> + </developers> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-shared</artifactId> + <version>@vaadin.version@</version> + </dependency> + <dependency> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-server</artifactId> + <version>@vaadin.version@</version> + </dependency> + <dependency> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-push</artifactId> + <version>@vaadin.version@</version> + </dependency> + <dependency> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-widgets</artifactId> + <version>@vaadin.version@</version> + </dependency> + <dependency> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-client</artifactId> + <version>@vaadin.version@</version> + </dependency> + <dependency> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-client-compiler</artifactId> + <version>@vaadin.version@</version> + </dependency> + <dependency> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-client-compiled</artifactId> + <version>@vaadin.version@</version> + </dependency> + <dependency> + <groupId>com.vaadin</groupId> + <artifactId>vaadin-themes</artifactId> + <version>@vaadin.version@</version> + </dependency> + </dependencies> + </dependencyManagement> +</project> |