This repository has been archived by the owner on May 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
72 lines (67 loc) · 2.06 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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.zanata</groupId>
<artifactId>force-victims-update</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Force victi.ms update</name>
<description>This project just forces the victi.ms database to be updated on every run, for use by other builds</description>
<licenses>
<license>
<name>GNU Lesser General Public License v2.1</name>
<url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Zanata Project</name>
<url>http://zanata.org/</url>
</organization>
<developers>
<developer>
<id>[email protected]</id>
<name>Sean Flanigan</name>
<email>[email protected]</email>
<organization>Red Hat</organization>
<organizationUrl>http://www.redhat.com/</organizationUrl>
<timezone>10</timezone>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.4.1</version>
<dependencies>
<dependency>
<groupId>com.redhat.victims</groupId>
<artifactId>enforce-victims-rule</artifactId>
<version>1.3.4</version>
<type>jar</type>
</dependency>
</dependencies>
<configuration>
<rules>
<rule implementation="com.redhat.victims.VictimsRule">
<metadata>disabled</metadata>
<fingerprint>disabled</fingerprint>
<!--
auto : Automatically update the database entries on each build.
-->
<updates>auto</updates>
</rule>
</rules>
</configuration>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>