forked from IBM/mdmce-environment-deployment-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
164 lines (151 loc) · 6.52 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright IBM Corp. 2007-2020 All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
-->
<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>com.ibm.mdmce</groupId>
<artifactId>mdmce-environment-deployment-toolkit</artifactId>
<version>1.1-SNAPSHOT</version>
<name>MDMCE Environment Deployment Toolkit</name>
<description>
Toolkit for automating the configuration of IBM Master Data Management Collaborative Edition environments
using a model-driven, revision-controllable approach.
</description>
<packaging>jar</packaging>
<scm>
<connection>scm:git:git://github.com/IBM/mdmce-environment-deployment-toolkit.git</connection>
<developerConnection>scm:git:ssh://github.com/IBM/mdmce-environment-deployment-toolkit.git</developerConnection>
<url>http://github.com/IBM/mdmce-environment-deployment-toolkit/tree/master</url>
</scm>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
<license>
<name>Creative Commons Attribution 4.0 International (CC BY 4.0)</name>
<url>https://creativecommons.org/licenses/by/4.0</url>
</license>
</licenses>
<organization>
<name>IBM</name>
<url>http://www.ibm.com</url>
</organization>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/IBM/mdmce-environment-deployment-toolkit/issues</url>
</issueManagement>
<inceptionYear>2007</inceptionYear>
<properties>
<!-- Level of Java -->
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!-- Platform encoding -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven-enforcer-plugin.version>3.0.0</maven-enforcer-plugin.version>
<maven-javadoc-plugin.version>3.3.1</maven-javadoc-plugin.version>
<maven-compiler.version>3.8.1</maven-compiler.version>
<maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
</properties>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven-enforcer-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
<!-- Default compiler options - enable additional lint checks -->
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>-Xlint:all</compilerArgument>
<failOnWarning>false</failOnWarning>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>display-info</id>
<goals>
<goal>display-info</goal>
</goals>
<phase>validate</phase>
</execution>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[3.5.0,)</version>
<message>** MAVEN VERSION ERROR ** Maven 3.5.0 or above is required. See
https://maven.apache.org/install.html
</message>
</requireMavenVersion>
<requireJavaVersion>
<level>ERROR</level>
<version>[1.8,)</version>
<message>** JAVA VERSION ERROR ** Java 8 (Update 151) or above is required.
</message>
</requireJavaVersion>
<banDuplicatePomDependencyVersions/>
<requireSameVersions/>
<reactorModuleConvergence/>
<requireUpperBoundDeps/>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<quiet>true</quiet>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>