-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
100 lines (100 loc) · 3.11 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
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="UTF-8"?>
<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>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>org.entando.entando</groupId>
<artifactId>entando-archetype-portal-generic</artifactId>
<version>4.0.0</version>
<packaging>maven-archetype</packaging>
<name>Entando: Archetype for Generic Portal</name>
<description>Generic Portal Archetype for Entando: an agile, modern and user-centric open source portal-like platform.</description>
<url>http://www.entando.com/</url>
<licenses>
<license>
<name>GNU GENERAL PUBLIC LICENSE, Version 2, June 1991</name>
<url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/entando/entando-archetype-portal-generic.git</connection>
<developerConnection>scm:git:[email protected]:entando/entando-archetype-portal-generic.git</developerConnection>
<url>https://github.com/entando/entando-archetype-portal-generic</url>
<tag>v4.0.0</tag>
</scm>
<developers>
<developer>
<id>e.santoboni</id>
<name>Eugenio Santoboni</name>
<email>[email protected]</email>
</developer>
<developer>
<id>w.ghelfi</id>
<name>William Ghelfi</name>
<email>[email protected]</email>
</developer>
</developers>
<organization>
<name>Entando S.r.l.</name>
<url>http://www.entando.com/</url>
</organization>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>2.0</version>
</extension>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav-jackrabbit</artifactId>
<version>1.0</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
</configuration>
</plugin>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
<version>2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.0-beta-1</version>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>2.2.1</version>
</requireMavenVersion>
<requireJavaVersion>
<version>1.6</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>