This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
/
pom.xml
91 lines (83 loc) · 3.52 KB
/
pom.xml
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
<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>
<groupId>org.vaadin.addons.lazyquerycontainer</groupId>
<artifactId>vaadin-lazyquerycontainer-root</artifactId>
<version>7.6.1.4-SNAPSHOT</version>
<packaging>pom</packaging>
<scm>
<url>https://github.com/tlaukkan/vaadin-lazyquerycontainer.git</url>
<connection>scm:git:git://github.com:tlaukkan/vaadin-lazyquerycontainer.git</connection>
<developerConnection>scm:git:[email protected]:tlaukkan/vaadin-lazyquerycontainer.git</developerConnection>
<tag>HEAD</tag>
</scm>
<!-- Deploy releases and snapshots to the CloudBees maven repositories -->
<distributionManagement>
<downloadUrl>http://repository-bubblecloud.forge.cloudbees.com/snapshot/</downloadUrl>
<repository>
<id>bubblecloud-cloudbees-release</id>
<name>bubblecloud-cloudbees-release</name>
<url>dav:https://repository-bubblecloud.forge.cloudbees.com/release/</url>
</repository>
<snapshotRepository>
<id>bubblecloud-cloudbees-snapshot</id>
<name>bubblecloud-cloudbees-snapshot</name>
<url>dav:https://repository-bubblecloud.forge.cloudbees.com/snapshot/</url>
</snapshotRepository>
</distributionManagement>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav-jackrabbit</artifactId>
<version>1.0-beta-7</version>
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.9.4</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.9.1</version>
</plugin>
</plugins>
</build>
<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>EclipseLink Repo</id>
<url>http://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/rt/eclipselink/maven.repo</url>
</repository>
</repositories>
<modules>
<module>vaadin-lazyquerycontainer</module>
<module>vaadin-lazyquerycontainer-jpa-example</module>
<module>vaadin-lazyquerycontainer-mock-example</module>
</modules>
</project>