-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#58 Fix a bug when attempting to migrate pom files with no build sect…
…ion. Signed-off-by: Peter McClonski <[email protected]>
- Loading branch information
1 parent
a2d6bdd
commit 3499bee
Showing
5 changed files
with
66 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
...ushuBuildCacheMigration/migration/add-dir-and-build-when-build-tag-does-not-exist/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
#%L | ||
aiSSEMBLE::Foundation::Upgrade | ||
%% | ||
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>test-machine-learning-model</artifactId> | ||
<version>1.7.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>aissemble-machine-learning-training</artifactId> | ||
<packaging>habushu</packaging> | ||
|
||
<name>aiSSEMBLE::Test::MDA::Machine Learning::Machine Learning Training</name> | ||
<description>${step.description}</description> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>aissemble-foundation-core-python</artifactId> | ||
<version>${project.version}</version> | ||
<type>habushu</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>aissemble-foundation-pdp-client-python</artifactId> | ||
<version>${project.version}</version> | ||
<type>habushu</type> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
File renamed without changes.