This repository has been archived by the owner on Oct 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
121 lines (108 loc) · 3.62 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
118
119
120
121
<?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>
<groupId>org.gwtproject.safecss</groupId>
<artifactId>gwt-safecss-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>GWT Safe CSS Parent</name>
<description>Parent POM containing the gwt-safecss module and the test modules (gwt2-tests and j2cl-tests)</description>
<url>https://github.com/gwtproject/gwt-safecss</url>
<organization>
<name>The GWT Authors</name>
<url>https://github.com/gwtproject</url>
</organization>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>The GWT Authors</name>
<organization>The GWT Project Authors</organization>
<url>https://github.com/gwtproject</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/gwtproject/gwt-safecss.git</connection>
<developerConnection>scm:git:ssh://github.com/gwtproject/gwt-safecss.git</developerConnection>
<url>https://github.com/gwtproject/gwt-safecss/tree/master</url>
</scm>
<inceptionYear>2019</inceptionYear>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.deploy.plugin>3.0.0-M1</maven.deploy.plugin>
<maven.fmt.plugin>2.5.1</maven.fmt.plugin>
</properties>
<modules>
<module>gwt-safecss</module>
<module>gwt-safecss-gwt2-tests</module>
<module>gwt-safecss-j2cl-tests</module>
</modules>
<dependencies>
<dependency>
<groupId>org.gwtproject.safecss</groupId>
<artifactId>gwt-safecss</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.coveo</groupId>
<artifactId>fmt-maven-plugin</artifactId>
<version>${maven.fmt.plugin}</version>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven.deploy.plugin}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${maven.licence.plugin}</version>
<configuration>
<header>LICENSE.header</header>
<encoding>${project.build.sourceEncoding}</encoding>
<skipExistingHeaders>true</skipExistingHeaders>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
<includes>
<include>sec/test/java</include>
</includes>
<properties>
<year>${project.inceptionYear}</year>
<name>${project.organization.name}</name>
</properties>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>