This repository has been archived by the owner on Jul 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpom.xml
117 lines (114 loc) · 4.55 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2012-2017 Red Hat, Inc.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Red Hat, Inc. - initial API and implementation
-->
<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>
<parent>
<artifactId>maven-depmgt-pom</artifactId>
<groupId>org.eclipse.che.depmgt</groupId>
<version>5.23.0-SNAPSHOT</version>
</parent>
<groupId>org.eclipse.che.archetype</groupId>
<artifactId>eclipse-che-archetype-parent</artifactId>
<version>5.23.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Che Archetype :: Parent pom</name>
<url>https://www.eclipse.org/che/</url>
<licenses>
<license>
<name>Eclipse Public License v1.0</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>che-archetype-resources</module>
<module>plugin-menu-archetype</module>
<module>plugin-embedjs-archetype</module>
<module>plugin-wizard-archetype</module>
<module>plugin-serverservice-archetype</module>
<module>plugin-json-archetype</module>
<module>agent-archetype</module>
<module>stacks-archetype</module>
</modules>
<scm>
<connection>scm:git:[email protected]:eclipse/che-archetypes.git</connection>
<developerConnection>scm:git:[email protected]:eclipse/che-archetypes.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/eclipse/che-archetypes</url>
</scm>
<properties>
<che.version>5.23.0-SNAPSHOT</che.version>
<codenvy.version>5.23.0-SNAPSHOT</codenvy.version>
<version.archetype.plugin>2.4</version.archetype.plugin>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.eclipse.che.archetype</groupId>
<artifactId>che-archetype-resources</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<id>codenvy-public-repo</id>
<name>codenvy public</name>
<url>https://maven.codenvycorp.com/content/groups/public/</url>
</repository>
<repository>
<id>codenvy-public-snapshots-repo</id>
<name>codenvy public snapshots</name>
<url>https://maven.codenvycorp.com/content/repositories/codenvy-public-snapshots/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>codenvy-public-repo</id>
<name>codenvy public</name>
<url>https://maven.codenvycorp.com/content/groups/public/</url>
</pluginRepository>
<pluginRepository>
<id>codenvy-public-snapshots-repo</id>
<name>codenvy public snapshots</name>
<url>https://maven.codenvycorp.com/content/repositories/codenvy-public-snapshots/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xml-maven-plugin</artifactId>
<executions>
<execution>
<id>validate-xml-files</id>
<goals>
<goal>validate</goal>
</goals>
</execution>
</executions>
<configuration>
<validationSets>
<validationSet>
<dir>src/main/resources</dir>
<includes>
<include>**/*.xml</include>
</includes>
<excludes>
<exclude>**/archetype-resources/**/*.xml</exclude>
</excludes>
</validationSet>
</validationSets>
</configuration>
</plugin>
</plugins>
</build>
</project>