-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
213 lines (213 loc) · 8.34 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<?xml version="1.0" encoding="UTF-8"?><!--
#%L
AIOps Foundation::Archetype::Project
%%
Copyright (C) 2021 Booz Allen
%%
This software package is licensed under the Booz Allen Public License. All Rights Reserved.
#L%
--><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>com.boozallen.aissemble</groupId>
<artifactId>build-parent</artifactId>
<version>1.11.0-SNAPSHOT</version>
</parent>
<groupId>org.test</groupId>
<artifactId>verify-invocation-service</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>TestPipelineInvocation</name>
<description>Project that contains aiSSEMBLE compliant pipeline(s)</description>
<modules>
<module>verify-invocation-service-pipeline-models</module>
<module>verify-invocation-service-pipelines</module>
<module>verify-invocation-service-shared</module>
<module>verify-invocation-service-docker</module>
<module>verify-invocation-service-deploy</module>
<module>verify-invocation-service-infrastructure</module>
<module>verify-invocation-service-tests</module>
</modules>
<properties>
<maven.repo.id>maven-releases</maven.repo.id>
<maven.repo.url>https://release-PLACEHOLDER/repository/maven-releases</maven.repo.url>
<maven.snapshot.repo.id>maven-snapshots</maven.snapshot.repo.id>
<maven.snapshot.repo.url>https://snapshot-PLACEHOLDER/repository/maven-snapshots</maven.snapshot.repo.url>
<pypi.project.repository.url>https://pypi-PLACEHOLDER/repository/</pypi.project.repository.url>
<helm.publishing.repository.url>https://helm-PLACEHOLDER/repository</helm.publishing.repository.url>
<helm.publishing.repository.name>PLACEHOLDER-helm</helm.publishing.repository.name>
<docker.project.repository.url>docker-registry-PLACEHOLDER/repository/</docker.project.repository.url>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.boozallen.aissemble</groupId>
<artifactId>bom-instantiation</artifactId>
<version>${version.aissemble}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- START: workaround to get maven build cache invalidation on new SNAPSHOTS of commonly updated plugins -->
<dependency>
<groupId>com.boozallen.aissemble</groupId>
<artifactId>artifacts-maven-plugin</artifactId>
<version>1.11.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.boozallen.aissemble</groupId>
<artifactId>foundation-model-plugin</artifactId>
<version>1.11.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.boozallen.aissemble</groupId>
<artifactId>mda-maven-plugin</artifactId>
<version>1.11.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- END: workaround to get maven build cache invalidation on new SNAPSHOTS of commonly updated plugins -->
<!-- START: workaround to get maven build cache invalidation on new SNAPSHOTS of plugin dependencies -->
<dependency>
<groupId>com.boozallen.aissemble</groupId>
<artifactId>foundation-mda</artifactId>
<version>1.11.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.boozallen.aissemble</groupId>
<artifactId>foundation-upgrade</artifactId>
<version>1.11.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- END: workaround to get maven build cache invalidation on new SNAPSHOTS of plugin dependencies -->
</dependencies>
<scm>
<connection>scm:git:https://github.com/carter-cundiff/verify-invocation-service.git.git</connection>
<developerConnection>scm:git:https://github.com/carter-cundiff/verify-invocation-service.git.git</developerConnection>
<url>https://github.com/carter-cundiff/verify-invocation-service.git</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<!-- The repositories that the maven artifacts will be deployed
to. The credentials for the repository must be provided in the Maven
settings.xml file. The repository/snapshotRepository id below should
match the serverId in the settings.xml -->
<repository>
<id>${maven.repo.id}</id>
<url>${maven.repo.url}</url>
</repository>
<snapshotRepository>
<id>${maven.snapshot.repo.id}</id>
<url>${maven.snapshot.repo.url}</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>sonatype-oss-snapshots</id>
<url>https://oss.sonatype.org/content/repositories</url>
<snapshots>
<enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
</repository>
<repository>
<id>${maven.repo.id}</id>
<url>${maven.repo.url}</url>
<releases>
<enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy>
</releases>
</repository>
<repository>
<id>${maven.snapshot.repo.id}</id>
<url>${maven.snapshot.repo.url}</url>
<snapshots>
<enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
</repository>
</repositories>
<build>
<extensions>
<extension>
<groupId>com.boozallen.aissemble</groupId>
<artifactId>foundation-mda</artifactId>
<version>${version.aissemble}</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.technologybrewery.fermenter</groupId>
<artifactId>fermenter-mda</artifactId>
<dependencies>
<dependency>
<groupId>com.boozallen.aissemble</groupId>
<artifactId>foundation-mda</artifactId>
<version>${version.aissemble}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.technologybrewery.baton</groupId>
<artifactId>baton-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>com.boozallen.aissemble</groupId>
<artifactId>foundation-upgrade</artifactId>
<version>${version.aissemble}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.technologybrewery.fermenter</groupId>
<artifactId>fermenter-mda</artifactId>
<inherited>false</inherited>
<configuration>
<basePackage>${project.groupId}</basePackage>
<profile>aissemble-project-root</profile>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${version.license.plugin}</version>
<configuration>
<licenseName>closed-source-license</licenseName>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>set-habushu-dist-artifact-version</id>
<goals>
<goal>regex-property</goal>
</goals>
<configuration>
<!-- Captures the version of Habushu distribution artifacts to facilitate
retrieval of artifacts between modules, specifically when the multiple
sdist or wheels may be found in Habushu's dist folder as the result of
publishing developmental/SNAPSHOT releases during the build.
For example, if the current project version is 1.1.0-SNAPSHOT,
${version.habushu.dist.artifact} will be 1.1.0.dev0 -->
<name>version.habushu.dist.artifact</name>
<value>${project.version}</value>
<regex>-SNAPSHOT</regex>
<replacement>.dev0</replacement>
<failIfNoMatch>false</failIfNoMatch>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>