-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpom.xml
More file actions
82 lines (78 loc) · 2.24 KB
/
Copy pathpom.xml
File metadata and controls
82 lines (78 loc) · 2.24 KB
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
<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.pow</groupId>
<artifactId>pow</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Powered by Reindeer parent</name>
<description>Powered by Reindeer is a high-level application framework integrating
Vaadin, Spring and Google AppEngine.</description>
<url>http://www.streamhead.com/vaadin-engine-security-release/</url>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://github.com/pbackx/PoweredByReindeer</url>
<connection>git@github.com:pbackx/PoweredByReindeer.git</connection>
</scm>
<developers>
<developer>
<id>pbackx</id>
<name>Peter Backx</name>
<email>peter.backx@gmail.com</email>
<url>http://www.streamhead.com</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
</developers>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>6</version>
</parent>
<properties>
<vaadin.version>6.8.2</vaadin.version>
<gae.version>1.7.0</gae.version>
</properties>
<modules>
<module>core</module>
<module>war</module>
<module>demo</module>
</modules>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>